/* # fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* # variables */
:root {
  /*--hue0: 56;
  --saturation0: 45%;
  --lightness0: 45%;*/
  --hue0: 45;
  --saturation0: 40%;
  --lightness0: 45%;

  --hue: 210;
  --saturation: 80%;
  --lightness: 43%;
  --main-color: hsl(var(--hue0), var(--saturation0), var(--lightness0));

  /* text colors */
  --text-white: hsl(0, 0%, 100%);
  --text-light-gray: hsl(0, 0%, 96%);
  --text-x-dark-gray: hsl(0, 0%, 10%);
  --text-dark-gray: hsl(0, 0%, 20%);

  /* bg colors */
  --body-bg-color: hsl(var(--hue), 40%, 98%); /*bg primary */
  --bg-color: hsl(var(--hue), 50%, 97%); /*bg secondary*/
  --bg-color-dark: hsl(var(--hue), 15%, 87%); /* bg third */
  --bg-white: hsl(0, 0%, 100%);

  /* border color */
  --border-color: hsl(var(--hue), 23%, 80%);

  /* shadow */
  --shadow: 0 0 10px hsla(var(--hue), 57%, 63%, 0.3);
  --focus-shadow: 0 0 10px hsla(var(--hue), 57%, 63%, 0.6);

  /* font size */
  --fs-4xl: 50px;
  --fs-3xl: 35px;
  --fs-2xl: 26px;
  --fs-xl: 20px;
  --fs-lg: 18px;
  --fs-md: 16px;
  --fs-sm: 14px;
}

body.t-dark {
  /* text colors */
  --text-white: hsl(0, 0%, 100%);
  --text-light-gray: hsl(0, 0%, 96%);
  --text-x-dark-gray: hsl(0, 0%, 74%);
  --text-dark-gray: hsl(0, 0%, 80%);

  /* bg colors */
  --body-bg-color: hsl(var(--hue), 10%, 10%);
  --bg-color: hsl(var(--hue), 13%, 12%);
  --bg-color-dark: hsl(var(--hue), 10%, 9%);

  /* border color */
  --border-color: hsl(var(--hue), 15%, 30%);

  /* shadow */
  --shadow: 0 0 10px hsla(var(--hue), 19%, 7%, 0.9);
}

/* # base */
html {
  scroll-behavior: smooth;
  /*scroll-snap-type: y mandatory;*/
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::before,
::after {
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--text-dark-gray);
  background-color: var(--body-bg-color);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent; /**/
}
a {
  color: var(--main-color);
  text-decoration: none;
}
.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}
.anchor-plus {
  top: -130px;
}
ul {
  list-style: none;
}
h1,h2,h3,h4,h5,h6 {
  color: var(--text-x-dark-gray);
  line-height: 1.3;
}
p {
  margin-bottom: 15px;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
::selection {
  color: var(--text-white);
  background-color: var(--main-color);
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background-color: var(--body-bg-color);
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

/* # page wrapper */
.page-wrapper {
  overflow: hidden;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.without-footer {
  flex-grow: 1;
}

/* # container */
.container {
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

/* # grid */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

/* # section */
/*section {
  scroll-snap-align: start;
}*/
.section-padding {
  padding: 60px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 45px;
}
.section-title .title {
  display: inline-block;
  font-size: var(--fs-lg);
  font-weight: 400;
  /*text-transform: capitalize;*/
  color: var(--main-color);
  margin: 0 0 12px;
  padding: 0 40px;
  position: relative;
}
.section-title .title::before,
.section-title .title::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 34px;
  background-color: var(--main-color);
  top: 50%;
  transform: translateY(-50%);
}
.section-title .title::before {
  left: 0;
}
.section-title .title::after {
  right: 0;
}
.section-title .sub-title {
  font-size: var(--fs-3xl);
  /*text-transform: capitalize;*/
}

/* # buttons */
button {
  cursor: pointer;
}
.btn {
  display: inline-block;
  padding: 10px 28px;
  background-color: var(--main-color);
  color: var(--text-white);
  font-weight: 500;
  font-size: var(--fs-md);
  text-transform: capitalize;
  line-height: 1.5;
  font-family: inherit;
  border: 2px solid transparent;
  border-radius: 6px;/*30px;*/
  vertical-align: middle;
  user-select: none;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: transparent;
  color: var(--main-color);
  border-color: var(--main-color);
}

/* # forms */
.input-box {
  margin-bottom: 20px;
}
::placeholder {
  color: var(--text-dark-gray);
  opacity: 1;
}
.input-control {
  width: 100%;
  height: 50px;
  border-radius: 10px;/*25px;*/
  border: 1px solid var(--border-color);
  background-color: transparent;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: var(--text-x-dark-gray);
  padding: 0 20px;
}
/*.input-control:focus {
  outline: 1px solid var(--border-color);
}*/
textarea.input-control {
  display: block;
  height: 150px;
  padding-top: 15px;
  resize: none;
}

/* # preloader */
/* # header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
  padding: 10px 0;
}
.header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  z-index: -1;
  transform: translateY(calc(-100% - 10px));
  transition: transform 0.5s ease;
}
.header.bg-reveal::before {
  transform: translateY(0);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo a {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  transform: scaleY(0.9);
  letter-spacing: 2px;
}
.header .logo span {
  font-size: 12;
  display: block;
  font-weight: 400;
  color: var(--text-x-dark-gray);
  letter-spacing: 1px;
}
.header .logo img {
  width: 300px;
}
.nav li {
  display: inline-block;
  margin-left: 35px;
}
.nav a {
  /*text-transform: capitalize;*/
  font-size: var(--fs-md);
  color: var(--text-white);
  font-weight: 400;
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease;
}
.header.bg-reveal .nav a {
  color: var(--text-x-dark-gray);
}
.nav a:hover, .header.bg-reveal .nav a:hover {
  color: var(--main-color);
  /*color: red;*/
}
.nav-toggler {
  display: none;
}

/* # home */
.home {
  padding: 100px 0 60px;

  min-height: 20vh;
  /*background: linear-gradient(to bottom, rgba(8,8,8,0.4), rgba(8,8,8,1.0)), url(../images/background.jpg);*/
  /*--body-bg-color: hsl(var(--hue), 10%, 10%);
  --bg-color: hsl(var(--hue), 13%, 12%);
  --bg-color-dark: hsl(var(--hue), 10%, 9%)*/
  background: linear-gradient(to bottom, rgba(8,8,8,0.4), hsl(var(--hue), 10%, 9%)), url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  text-align: center;
}
.home-text,
.home-img {
  grid-column: span 6;
  align-self: center;
}
.home-text h1 {
  font-size: var(--fs-4xl);
  margin: 0 0 20px;
  text-transform: capitalize;

  color: var(--text-white);
}
.home-text p {
  margin: 0 0 30px;
}
.home-img {
  position: relative;
}
.home-img img {
  max-width: 600px;/*400px;*/
  display: block;
  margin: auto;
}

/* # about */
.about .grid {
  row-gap: 0;
}
.about .section-title {
  text-align: left;
  margin: 0 0 15px;
}
.about-img,
.about-text {
  grid-column: span 6;
  /*grid-column: span 12;*/
  align-self: center;

  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-spacing: -0.05em;
  /*text-justify: distribute;
  word-break: break-all*/;
}
.about-text2 {
  grid-column: span 12;

  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-spacing: -0.05em;
}
.about-img .img-box {
  max-width: 400px;
  margin: auto;
  padding: 3px;
  border-radius: 10px; /*50%*/
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
}
.about-img .img-box img {
  border-radius: 10px; /*50%*/
}
/* TEST */
.about-tiles {
  grid-column: span 6;
  align-self: center;

  display: grid;
  grid-template-columns: repeat(12, 1fr);
  /*gap: 30px;*/
  margin-bottom: 25px;
}
.about-tile {
  grid-column: span 6;
  margin: 0 10px;
  padding: 30px 10px 10px 10px;
  background-color: var(--bg-color);
  text-align: center;
  border-radius: 6px/*20px*/;
  box-shadow: var(--shadow);
}
.about-tile .about-fa {
  font-size: 55px;
}
.about-tile p {
  margin-top: 30px;
  font-size: var(--fs-xl);
}








/* # services */
.services .section-title {
  margin-bottom: 10px;
}
.services-item {
  grid-column: span 3;
  text-align: center;

  background-color: var(--bg-color);/*var(--bg-color-dark);*/
  padding: /*20px*/ 0 0 20px 0;
  border-radius: 6px/*20px*/;

  /*padding: 3px;
  border-radius: 8px;
  background-color: var(--bg-color);*/
  box-shadow: var(--shadow);

  position: relative;
}
.services-item > a > span {
  position: absolute; 
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  
  z-index: 1;
}
.services-item .img-box {
  /*height: 180px;*/
  width: 100%/*180px*/;
  /*border-radius: 6px;*/ /*50%*/
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
  background-color: var(--bg-color);
  /*padding: 3px;*/
  overflow: hidden;
}
.services-item .img-box img {
  width: 100%;
  /*border-radius: 6px;*/ /*50%*/
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  transition: transform 0.5s ease;
}
.services-item:hover .img-box img {
  transform: scale(1.1);
}
.services-item h3 {
  font-size: var(--fs-xl);
  font-weight: 500;
  transition: color 0.5s ease;
}
.services-item:hover h3 {
  color: var(--main-color);
}

.services h4 {
  padding-bottom: 15px;
}
/*.services-text-container {
  display: flex;
  justify-content: space-around;
  padding-top: 50px;
}*/
.services-text {
  margin: auto;
  margin-bottom: 45px;

  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-spacing: -0.05em;
}

/* # career */
.career .section-title {
  text-align: left;
  margin: 0 0 15px;
}
.career-text {
  grid-column: span 8;
  /*grid-column: span 12;*/
  /*align-self: center;
  width: 100%;*/
}
.career-text > p {
  width: 90%;
}
.career-text .grid {
  margin-bottom: 30px;
}
.career-requirement {
  grid-column: span 6;
}
.career-requirement p {
  margin: 0;
}
.career hr {
  border: 0;
  border-bottom: 1px solid var(--border-color);
  margin: 20px auto;
}

.career-img {
  grid-column: span 4;
  align-self: center;
  text-align: center;
}
/* temp */
.career-img img {
  /*margin-left: 100px;*/
  /*max-width: 200px;*/
  max-width: 80%;
  /*margin: auto;*/
}
/*.career-img .img-box {
  max-width: 300px;
  margin: auto;
  padding: 3px;
  border-radius: 8px;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
}
.career-img .img-box img {
  border-radius: 8px;
}*/
.career h4 {
  padding-top: 20px;
  padding-bottom: 8px;
}
/*.career-text-container {
  display: flex;
  justify-content: space-around;
}
.career-text {
  width: 60%;
  text-align: center;
}*/

/* # contact */
.contact-grid {
  max-width: 1000px;
  margin: auto;
}
.contact-info {
  grid-column: span 5;
}
.contact-form {
  grid-column: span 7;
}
.contact-info-item {
  position: relative;
  padding: 20px 0 20px 70px;
}
.contact-info-item + .contact-info-item {
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
}
.contact-info-item i {
  height: 50px;
  width: 50px;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 20px;
}
.contact-info-item h3 {
  margin: 0 0 10px;
  font-size: var(--fs-xl);
  font-weight: 500;
  text-transform: capitalize;
}
.contact-info-item p:last-child {
  margin: 0;
}







.input-box {
  position: relative;
  /*margin: 1rem 0;*/
}

.input-control {
  /*width: 100%;*/
  outline: none;
  /*border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;*/
  transition: 0.3s;
}

textarea.input-control {
  /*padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;*/
  overflow-y: auto;
}

.input-box label {
  /* ??????? */
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  /*color: var(--bg-color);*/
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 3;
  transition: 0.5s;
}

.input-box.textarea label {
  /* ??????? */
  top: 1rem;
  transform: translateY(0);
}

.input-box span {
  /* ?????? */
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 2;

}

.input-box span::before,
.input-box span::after {
  /* ?????? */
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: var(--body-bg-color);
  top: 50%;
  transform: translateY(-50%);
}

.input-box span::before {
  left: 50%;
}

.input-box span::after {
  right: 50%;
}

.input-box.focus label {
  /* ?????? */
  top: 0;
  transform: translateY(-50%)/* scale(0.8)*/;
  left: 25px;
  font-size: 0.8rem;
}

.input-box.focus span::before,
.input-box.focus span::after {
  /* ?????? */
  width: 50%;
  opacity: 1;
}








/*.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #1abc9c;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span::before,
.input-container span::after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1abc9c;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span::before {
  left: 50%;
}

.input-container span::after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span::before,
.input-container.focus span::after {
  width: 50%;
  opacity: 1;
}*/





/* # contact-us */
.contact-us {
  background-color: var(--bg-color-dark);
}
/*.contact-us h2 {
  color: var(--main-color);
}*/

































/* # footer */
/*.footer {
  padding: 50px 0;
  background-color: var(--main-color);
  text-align: center;
}
.footer h3 {
  color: var(--text-white);
  font-size: var(--fs-2xl);
  margin: 0 0 15px;
  font-weight: 500;
}
.footer .social-links a {
  height: 40px;
  width: 40px;
  display: inline-flex;
  background-color: var(--bg-white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}
.footer .social-links a:hover {
  background-color: transparent;
  color: var(--text-white);
  border-color: initial;
}*/
/* # footer */
.footer {
  width: 100%;
  padding: 50px 0;
  background-color: var(--bg-color); /*var(--bg-white);*/
  text-align: center;
}
.footer-item {
  grid-column: span 3;
}
.footer-item-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.footer h3 {
  font-size: var(--fs-2xl);
  margin: 0 0 15px;
  font-weight: 500;
}
.footer-logo-image {
  margin-top: -5px;
  /*margin-top: 15px;*/
}
.footer .social-links {
  margin-top: 10px;
}
.footer .social-links a {
  height: 40px;
  width: 40px;
  display: inline-flex;
  background-color: var(--main-color);
  color: var(--text-white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.footer .social-links a:hover {
  background-color: transparent;
  color: var(--main-color);
  border-color: var(--main-color);
}
.footer hr {
  width: 90%;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  margin: 20px auto;
}


















/* # all services */
/*test*/
/*.all-services .grid {
  background-color: red;
}

.all-services .container {
  max-width: none;
  padding: 0 50px;
}*/

.all-services .container {
  max-width: 1370px;
}
.all-services-item {
  background-color: var(--bg-color);
  /*padding: 30px 30px;*/
  border-radius: 6px/*20px*/;
  grid-column: span 3;
  box-shadow: var(--shadow);
}
.all-services-item .img-box {
  /*height: 200px;*/
  width: 100%/*200px*/;
  /*border-radius: 6px;*/ /*50%*/
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
  background-color: var(--bg-color);
  /*padding: 3px;*/
}
.all-services-item .img-box img {
  width: 100%;
  /*border-radius: 6px;*/ /*50%*/
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  /*transition: transform 0.5s ease;*/
}
.all-services-item-text {
  /*text-align: justify;
  text-justify: distribute;
  word-break: break-all;*/
  /*text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;*/
  /*word-spacing: -0.05em;*/

  font-size: var(--fs-sm);
  /*margin: 20px 15px;*/
  margin: 0px 15px 0px 15px;
}
.all-services-item h3 {
  text-align: center;
  font-size: var(--fs-xl);
  font-weight: 500;
  padding-bottom: 15px;
}
/*.services h4 {
  padding-bottom: 15px;
}
.services-text-container {
  display: flex;
  justify-content: space-around;
  padding-top: 50px;
}
.services-text {
  width: 60%;
  text-align: center;
}*/


















/* # responsive */
@media screen and (max-width: 1399px) {
  .all-services-item {
    grid-column: span 4;
  }
}

@media screen and (max-width: 1199px) {
  .section-padding {
    padding: 50px 0;
  }
  /* # about */
  .about .grid {
    max-width: 900px;
    margin: auto;
  }
  /* # services */
  .services .grid {
    max-width: 900px;
    margin: auto;
  }
  .services-item {
    grid-column: span 6;
    /*text-align: left;*/
  }
  .services-text {
    max-width: 900px;
  }
  /* # career */
  .career .grid {
    max-width: 900px;
    margin: auto;
  }
  /* # all services */
  .all-services .container {
    max-width: 800px;
  }
  .all-services-item {
    grid-column: span 6;
  }
}

@media screen and (max-width: 991px) {
  /* # variables */
  :root {
    --fs-4xl: 42px;
    --fs-3xl: 31px;
    --fs-2xl: 24px;
  }
  /* # header */
  .nav-toggler {
    display: block;
    height: 34px;
    width: 40px;
    border: none;
    z-index: 4;
    background-color: transparent;
  }
  .nav-toggler span {
    display: block;
    height: 2px;
    width: 24px;
    background-color: var(--main-color);
    margin: auto;
    position: relative;
    transition: background-color 0.3s ease;
  }
  .nav-toggler.active span {
    background-color: transparent;
  }
  .nav-toggler span::before,
  .nav-toggler span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    transition: transform 0.3s ease;
  }
  .nav-toggler span::before {
    transform: translateY(-7px);
  }
  .nav-toggler.active span::before {
    transform: rotate(45deg);
  }
  .nav-toggler span::after {
    transform: translateY(7px);
  }
  .nav-toggler.active span::after {
    transform: rotate(-45deg);
  }
  .nav {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 260px;
    background-color: var(--bg-color);
    padding: 60px 30px 30px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: all 0.3s ease;
  }
  .nav.open {
    transform: translateX(0);
    box-shadow: var(--shadow);
  }
  .nav li {
    display: block;
    margin: 0;
  }
  .nav a {
    font-size: var(--fs-lg);
    color: var(--text-x-dark-gray);
  }
  .nav li + li {
    border-top: 1px solid var(--border-color);
  }
  /* # home */
  .home-img img {
    /*max-width: 250px;*/
    max-width: 60vh;
  }
  /* # services */
  /*.services-item .img-box {
    height: 120px;
    width: 120px;
  }*/
  .section-padding {
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  /* # variables */
  :root {
    --fs-4xl: 35px;
    --fs-3xl: 26px;
    --fs-2xl: 22px;
    --fs-xl: 18px;
  }
  
  /* # home */
  .home-text,
  .home-img {
    grid-column: span 12;
  }
  .home-img {
    order: -1;
    margin-bottom: 20px;
  }
  /* # about */
  .about-text,
  .about-img,
  .about-tiles {
    grid-column: span 12;
  }
  .about-text {
    order: -1;
  }
  .about-img .box {
    height: 115px;
    width: 115px;
  }
  /* # services */
  /*.services-item {
    grid-column: span 6;
  }*/
  /* # career */
  .career-text {
    grid-column: span 12;

  }
  .career-img {
    display: none;
    /*grid-column: span 4;*/
  }
  /* # contact */
  .contact-info,
  .contact-form {
    grid-column: span 12;
  }
  .contact-info {
    margin-bottom: 30px;
  }
  /* # footer */
  .footer-item {
    grid-column: span 6;
  }
  /* # all services */
  .all-services .container {
    max-width: 400px;
  }
  .all-services-item {
    grid-column: span 12;
  }
}

@media screen and (max-width: 575px) {
  /* # grid */
  .grid {
    gap: 30px;
  }
  /* # home */
  .home-img img {
    /*max-width: 200px;*/
    max-width: 80vw;
  }
  /* # services */
  /* # services */
  .services .grid {
    max-width: 350px;
  }
  /*.services-item .img-box {
    height: 140px;
    width: 140px;
  }*/
  /*.services .grid {
    max-width: 600px;
    margin: auto;
  }*/
  .services-item {
    grid-column: span 12;
  }
}




/* # preload */
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/* # anti-spam */
.protection {
  display: none;
}
