:root {
  --black: #000;
  --white: #fff;
  --color-1: #000;
  --gutter: 2rem;
  /* this value is going to be changed by javascript */
  --replace-offset: 50%;
  --replace-offset-2: calc((100% - var(--replace-offset)) * -1);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
  font-family: "metropolis-regular", "HelveticaNeue-Light",
    "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande",
    sans-serif;
  -moz-osx-font-smoothing: grayscale;
}

nav {
  position: fixed;
  top: 6vh;
  right: 5vw;
  color: black;
  font-weight: bold;
  z-index: 10000;
  font-size: calc(13px + 0.2vw);
}
nav .logo {
  display: inline-block;
  border: 4px solid black;
  padding: 10px;
  background-color: var(--white);
}
nav .logo:hover {
  cursor: pointer;
  background-color: black;
  color: white;
}

a {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.global-container {
  height: 100vh;
  overflow-x: hidden;
}

section:not(.splash),
footer {
  z-index: 5;
  margin: 0;
  padding: 18rem 0 10rem;
  background-attachment: scroll;
  background-clip: border-box;
  background-color: #fff;
  background-image: none;
  background-origin: padding-box;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  color: #555;
  display: block;
  font-size: 17px;
  line-height: 30px;
  position: relative;
  word-wrap: break-word;
  min-height: 100vh;
}
@media only screen and (min-device-width: 320px) and (max-width: 1790px) {
  section:not(.splash),
  footer {
    padding: 9vh 0 5vh;
  }
}
section:not(.splash).light-gray,
footer.light-gray {
  background-color: #f1f1f1;
  background-color: #f5f6f6;
  background-color: #f8f9fa;
}
section:not(.splash) div.row,
footer div.row {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  max-width: 75vw;
}
section:not(.splash) div.privacy p,
footer div.privacy p {
  margin-left: 30%;
}

h1 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
  font-family: "domine-bold", sans-serif;
  font-size: calc(1em + 3.58vw);
  font-variant: common-ligatures;
  -webkit-font-variant-ligatures: common-ligatures;
  font-variant-ligatures: common-ligatures;
  font-weight: 400;
  letter-spacing: calc(-1 * (1px + 0.1vw));
  line-height: 1.1;
  margin: 0 0 4.8rem;
  padding: 0;
  text-rendering: optimizelegibility;
  word-wrap: break-word;
}

h1.light {
  color: #fff;
}

h3 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #f84525;
  font-family: "metropolis-semibold", sans-serif;
  font-size: calc(1em + 0.56vw);
  font-variant: common-ligatures;
  -webkit-font-variant-ligatures: common-ligatures;
  font-variant-ligatures: common-ligatures;
  font-weight: 400;
  letter-spacing: calc(3px + 0.18vw);
  line-height: 1.3125;
  margin: 0 0 2.1rem;
  padding: 0;
  text-rendering: optimizelegibility;
  text-transform: uppercase;
  word-wrap: break-word;
}

p {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: rgba(85, 85, 85, 0.95);
  font-family: "metropolis-regular", sans-serif;
  font-size: 2.1rem;
  font-size: calc(15px + 1.125vw);
  line-height: 1.5;
  margin: 0 0 3.6rem;
  padding: 0;
  word-wrap: break-word;
}

footer {
  background-color: #111;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  font-family: "metropolis-regular", sans-serif;
  font-size: 17px;
  line-height: 30px;
  padding-bottom: 5rem;
  padding-top: 21rem;
  position: relative;
  word-wrap: break-word;
  min-height: 100vh;
}
@media only screen and (min-device-width: 320px) and (max-width: 512px) {
  footer {
    padding-bottom: 5rem;
    padding-top: 17rem;
  }
}
footer div.row {
  max-width: 80vw;
}
footer a {
  text-decoration: none;
  color: white;
}
footer a:hover {
  color: #ff3029;
}
footer .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
footer .bottom div:first-child {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
footer .bottom div:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: 0;
  padding-left: 0;
  margin: 0;
}
footer .bottom p {
  margin: 0;
}
footer .bottom .privacy p {
  margin: 0;
  padding: 0;
}
@media (max-width: 767.98px) {
  footer .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer .bottom .privacy p {
    margin-left: 0;
    font-size: 13px !important;
    margin-top: 10px;
  }
}
footer .bottom span {
  font-weight: bold;
}
footer h1 {
  color: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  min-height: 40vh;
  grid-gap: 80px;
}
@media only screen and (min-device-width: 320px) and (max-width: 512px) {
  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    grid-gap: 20px;
  }
}
@media only screen and (min-device-width: 513px) and (max-width: 1390px) {
  .why-grid {
    margin-right: 4vw;
    grid-gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  }
}
.why-grid .grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.why-grid .grid-item .grid-item__icon {
  margin-right: calc(15px + 0.5vw);
}
.why-grid .grid-item .grid-item__icon svg {
  height: calc(64px + 0.5vw);
  fill: #991b05;
  stroke-width: 0.4;
}
.why-grid .grid-item .grid-item__icon svg path.global {
  stroke: none;
  fill: #f84525;
}
.why-grid .grid-item .grid-item__icon svg path.stroke-global {
  stroke: #f84525;
}
.why-grid .grid-item .grid-item__icon svg path.gray {
  opacity: 0.6;
}
.why-grid .grid-item .grid-item__icon svg path.robot {
  fill: none;
  stroke: #f84525;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.4;
}
.why-grid .grid-item .grid-item__icon svg polyline.global,
.why-grid .grid-item .grid-item__icon svg circle.global,
.why-grid .grid-item .grid-item__icon svg line.global,
.why-grid .grid-item .grid-item__icon svg rect.global {
  stroke: #f84525;
}
.why-grid .grid-item .grid-item__icon svg.aw {
  height: calc(64px + 0.5vw);
}
.why-grid .grid-item .grid-item__icon svg.aw path {
  stroke: transparent;
  stroke-width: 0.01;
  fill: #991b05;
}
.why-grid .grid-item .grid-item__icon svg.aw path.global {
  stroke: none;
  fill: #f84525;
}
.why-grid .grid-item .grid-item__icon svg.aw path.gray {
  opacity: 0.6;
}
.why-grid .grid-item .grid-item__content h2 {
  font-weight: 700;
  font-size: calc(15px + 0.5vw);
  margin-bottom: calc(5px + 1.5vh);
  width: 30ch;
}
.why-grid .grid-item .grid-item__content p {
  font-weight: 200;
  font-size: calc(13px + 0.3vw);
  opacity: 0.5;
  width: 40ch;
  max-width: 40ch;
}
@media (max-width: 1024.72px) {
  .why-grid .grid-item .grid-item__content p {
    width: 55ch;
    max-width: 55ch;
  }
}
@media (max-width: 767.98px) {
  .why-grid .grid-item .grid-item__content p {
    width: 45ch;
    max-width: 45ch;
  }
}
@media (max-width: 512px) {
  .why-grid .grid-item .grid-item__content p {
    width: 40ch;
    max-width: 40ch;
  }
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 40px;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media only screen and (min-device-width: 320px) and (max-width: 1790px) {
  .how__grid {
    grid-gap: 45px;
  }
}
.how__grid div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-right: 15px;
}
.how__grid div h2 {
  font-size: 1.8rem;
  font-weight: 400;
  height: 3rem;
}
.how__grid div p {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
}
@media only screen and (min-device-width: 320px) and (max-width: 1790px) {
  .how__grid div p {
    font-size: 1.2rem;
  }
}

.things__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.things__grid h2 {
  font-size: 1.8rem;
  font-weight: bold;
  height: 5rem;
}
.things__grid ul {
  font-size: 1.2rem;
  font-weight: 300;
}
@media only screen and (min-device-width: 320px) and (max-width: 1790px) {
  .things__grid h2 {
    font-size: 1.6rem;
  }
  .things__grid ul {
    font-size: 1rem;
  }
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 40px;
  background-color: #f3f3f3;
  background-color: #f8f9fa;
  background-color: #212529;
  background-color: #f1f3f5;
  background-color: transparent;
  padding-left: calc((100vw - 850px) / 6 + 15px);
  padding-right: calc((100vw - 850px) / 6 + 15px);
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .industries__grid {
    grid-gap: 0px;
    padding: 0;
  }
  .industries__grid > div {
    border-bottom: 2px solid #fff;
  }
}
@media (max-width: 1024px) {
  .industries__grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    margin-right: 2vw;
    margin-left: 2vw;
    grid-gap: 40px;
  }
}
@media (max-width: 575.98px) {
  .industries__grid {
    grid-template-columns: repeat(auto-fit, minmax(90%, 1fr));
    margin-right: 3vw;
    margin-left: 3vw;
    grid-gap: 40px;
  }
}
.industries__grid > div {
  padding: 60px 60px;
  color: #6e6e73;
  background-color: #fd7e14;
  background-color: #ffe8cc;
  background-color: #9e9e9e;
  background-color: #f4f5f4;
  border-radius: 40px;
  /*
  &:first-child {
    background-color: #e5dbff;
    h1 {
      color: #5f3dc4;
    }
  }

  &:nth-child(2) {
    background-color: #fff3bf;
    h1 {
      color: #e67700;
    }
  }

  &:nth-child(3) {
    background-color: #e7f5ff;
    h1 {
      color: #1864ab;
    }
  }

  &:nth-child(4) {
    background-color: #f4fce3;
    h1 {
      color: #5c940d;
    }
  }
  */
}
.industries__grid > div h1 {
  color: #1d1d1f;
  color: #e03131;
  color: #fff;
  color: #212a23;
  color: #041c2c;
  font-size: calc(28px + 1vw);
  letter-spacing: -1px;
  height: 5ch;
  white-space: pre-wrap;
}
@media (max-width: 1024px) {
  .industries__grid > div h1 {
    height: 3ch;
  }
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20vw, 1fr));
  grid-gap: 30px;
  grid-row-gap: 60px;
  margin-top: 120px;
  margin-bottom: 100px;
  max-width: 90vw !important;
  width: 100%;
}
@media (max-width: 1024px) {
  .clients__grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
.clients__grid li {
  position: relative;
  height: 100px;
}
.clients__grid li img {
  position: absolute;
  top: 50%;
  left: 30%;
  -webkit-transform: translate(-50%, -30%);
  transform: translate(-50%, -30%);
}
.clients__grid li img.sumol {
  -webkit-transform: translate(-50%, 15%);
  transform: translate(-50%, 15%);
}
.clients__grid svg,
.clients__grid img {
  max-height: 220px !important;
  max-width: 220px !important;
  margin-left: 60px;
  margin-right: 60px;
  opacity: 0.7;
}

.bignav {
  position: fixed;
  top: 0;
  right: 0;
  width: 33vw;
  height: 100vh;
  background-color: #343a40;
  background-color: #212529;
  z-index: 10001;
  -webkit-transition: all 450ms ease-in-out;
  transition: all 450ms ease-in-out;
  -webkit-box-shadow: -2px 10px 23px -1px rgba(0, 0, 0, 0.75);
  box-shadow: -2px 10px 23px -1px rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.bignav.hidden {
  -webkit-transform: translateX(33vw);
  transform: translateX(33vw);
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media only screen and (min-device-width: 320px) and (max-width: 512px) {
  .bignav {
    width: 100vw;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
  }
  .bignav.hidden {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.bignav .close-nav {
  position: fixed;
  top: calc(6.8vh - 7.2px);
  right: 5vw;
  color: white;
  cursor: pointer;
  background-color: transparent;
  font-weight: bold;
  font-size: calc(13px + 0.2vw);
  border: 4px solid white;
  padding: 10px;
  text-decoration: none;
}
.bignav .close-nav:hover {
  cursor: pointer;
  background-color: white;
  color: black;
}
.bignav .main-nav {
  margin-top: 20vh;
  color: white;
  font-size: calc(16px + 1.5vw);
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
@media only screen and (min-device-width: 320px) and (max-width: 512px) {
  .bignav .main-nav {
    font-size: 5vh;
  }
}
.bignav .main-nav li {
  text-align: center;
  margin-bottom: 2.5vh;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.bignav .main-nav li:hover {
  cursor: pointer;
  color: #f84525;
}
.bignav .nav-logo {
  margin-bottom: 4vh;
  margin-left: auto;
  margin-right: auto;
  padding: 1.4vh;
  background: none;
}
.bignav .nav-logo svg {
  width: 128px;
  height: 128px;
}
.bignav .nav-logo svg path {
  fill: #f84525;
}
@media only screen and (min-device-width: 320px) and (max-width: 512px) {
  .bignav .nav-logo {
    margin-bottom: 6vh;
  }
  .bignav .nav-logo svg {
    width: 20vw;
    height: 20vw;
  }
}

#what {
  background-color: #f84525;
  color: white !important;
}
#what h1,
#what h3,
#what h2,
#what p {
  color: white;
}

.fixed {
  top: 6vh !important;
  left: calc(90vw - 50px) !important;
}
@media (max-width: 767.98px) {
  .fixed {
    left: calc(90vw - 60px) !important;
  }
}

.midnightHeader.white .header__logo .logo {
  background: transparent;
  color: white;
  border-color: white;
  stroke-width: 4px;
}
.midnightHeader.white:hover .header__logo .logo {
  background: white;
  color: black;
  border-color: white;
}

.overlay-menu {
  background-color: #f84525;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 500000;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: white;
  padding-left: calc(6.1vw + 3px);
}
@media (max-width: 767.98px) {
  .overlay-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}
.overlay-menu.hide {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.overlay-menu.under {
  z-index: -2;
}
.overlay-menu .logo {
  display: inline-block;
  margin: 0;
  position: absolute;
  left: calc(6.1vw + 3px);
  top: calc(6vh + 11px);
  padding: 15px;
}
@media (max-width: 767.98px) {
  .overlay-menu .logo {
    left: 7.1vw;
    top: 6.8vh;
  }
}
.overlay-menu .logo svg {
  width: 55px;
}
.overlay-menu .logo svg path {
  fill: white;
}
.overlay-menu .close-nav {
  text-decoration: none;
  border: 4px solid white;
  padding: 10px;
  color: white;
  position: absolute;
  top: calc(6.8vh - 7.2px);
  left: calc(90vw - 70px) !important;
  font-weight: bold;
  font-size: calc(13px + 0.2vw);
}
@media (min-width: 1100.72px) {
  .overlay-menu .close-nav {
    top: calc(6.8vh - 8.7px);
    left: calc(90vw - 59px) !important;
  }
}
.overlay-menu .close-nav:hover {
  cursor: pointer;
  background-color: white;
  color: #f84525;
}
.overlay-menu .overlay-menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  min-width: 1024px;
  max-width: 1600px;
  margin-bottom: 10vh;
}
@media (max-width: 767.98px) {
  .overlay-menu .overlay-menu-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-top: 20vh;
  }
}
.overlay-menu .overlay-menu-content > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.overlay-menu .overlay-menu-content .left-column {
  margin-right: 6vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Landscape */
}
.overlay-menu .overlay-menu-content .left-column a {
  color: white;
  text-decoration: none;
}
.overlay-menu .overlay-menu-content .left-column a:hover {
  color: black;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  cursor: pointer;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .overlay-menu .overlay-menu-content .left-column {
    max-width: 30vw !important;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .overlay-menu .overlay-menu-content .left-column {
    max-width: 20vw !important;
  }
}
@media (max-width: 767.98px) {
  .overlay-menu .overlay-menu-content .left-column {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 8vh;
    margin-right: auto;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    width: 85vw;
  }
}
.overlay-menu .overlay-menu-content .left-column .contacts {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .overlay-menu .overlay-menu-content .left-column .contacts {
    /*width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;*/
    display: none;
  }
}
.overlay-menu .overlay-menu-content .left-column .contacts .contact {
  margin-bottom: 2vh;
  font-size: 1.3em;
  /* Landscape */
}
@media (max-width: 767.98px) {
  .overlay-menu .overlay-menu-content .left-column .contacts .contact {
    font-size: 0.8em;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 8962px) and (orientation: landscape) {
  .overlay-menu .overlay-menu-content .left-column .contacts .contact {
    font-size: 1em;
  }
}
.overlay-menu .overlay-menu-content .left-column .contacts .contact h3 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8em;
  margin: 0;
  font-weight: bold;
  letter-spacing: 0;
}
@media (max-width: 767.98px) {
  .overlay-menu .overlay-menu-content .left-column .contacts .contact h3 {
    font-size: 0.7em;
  }
}
.overlay-menu .overlay-menu-content .left-column .slogan {
  font-weight: 700;
  margin-bottom: 5px;
}
@media (max-width: 767.98px) {
  .overlay-menu .overlay-menu-content .left-column .slogan {
    font-size: 0.7em;
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .overlay-menu .overlay-menu-content .left-column .copyright,
  .overlay-menu .overlay-menu-content .left-column .vat {
    font-size: 0.7em;
  }
}
.overlay-menu .overlay-menu-content ul.menu-options {
  font-size: calc(3em + 1.8vw);
  font-variant: common-ligatures;
  -webkit-font-variant-ligatures: common-ligatures;
  font-variant-ligatures: common-ligatures;
  font-weight: 600;
  letter-spacing: -0.05em;
  margin: 0;
  padding: 0;
  /* Landscape */
}
@media (max-width: 767.98px) {
  .overlay-menu .overlay-menu-content ul.menu-options {
    font-size: 40px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 896px) and (orientation: landscape) {
  .overlay-menu .overlay-menu-content ul.menu-options {
    font-size: calc(1.3em + 1.2vw);
  }
}
.overlay-menu .overlay-menu-content ul.menu-options li,
.overlay-menu .overlay-menu-content ul.menu-options a {
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  margin: 0;
  padding: 0;
  line-height: 0.9em;
  text-decoration: none;
  color: white;
}
.overlay-menu .overlay-menu-content ul.menu-options li:hover,
.overlay-menu .overlay-menu-content ul.menu-options a:hover {
  color: black;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .overlay-menu .overlay-menu-content ul.menu-options li,
  .overlay-menu .overlay-menu-content ul.menu-options a {
    line-height: 1.1em;
  }
}
.overlay-menu .overlay-menu-content ul.menu-secondary {
  margin-top: 4vh;
  font-size: 1.3em;
}
.overlay-menu .overlay-menu-content ul.menu-secondary a {
  text-decoration: none;
  color: white;
}
.overlay-menu .overlay-menu-content ul.menu-secondary a:hover {
  color: black;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .overlay-menu .overlay-menu-content ul.menu-secondary {
    max-width: 400px;
    font-size: 0.85em;
  }
}

.splash {
  background-image: none;
  background-color: #1f1e1d;
  background-image: url(../assets/images/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff !important;
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.splash .splash-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: white !important;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 10vh;
  padding-left: 11vw;
  padding-right: 5vw;
}
@media (min-width: 570.98px) and (max-width: 896px) and (orientation: landscape) {
  .splash .splash-message {
    padding-bottom: 1vh;
  }
}
.splash .splash-message h1 {
  font-size: calc(8em + 3.58vw);
  letter-spacing: calc(-1 * (5px + 0.1vw));
  line-height: 0.7em;
  font-weight: 700;
  color: white;
}
@media (max-width: 769px) {
  .splash .splash-message h1 {
    font-size: calc(6em + 3.58vw);
    line-height: 0.75em;
    letter-spacing: calc(-1 * (4px + 0.1vw));
  }
}
@media (min-width: 769px) and (max-width: 1366px) and (orientation: landscape) {
  .splash .splash-message h1 {
    font-size: calc(5em + 3.58vw);
    line-height: 0.75em;
    letter-spacing: calc(-1 * (4px + 0.1vw));
  }
}
@media (max-width: 570.98px) {
  .splash .splash-message h1 {
    font-size: calc(3em + 3.58vw);
    line-height: 0.75em;
    letter-spacing: calc(-1 * (4px + 0.1vw));
  }
}
@media (min-width: 570.98px) and (max-width: 896px) and (orientation: landscape) {
  .splash .splash-message h1 {
    font-size: calc(2em + 3.58vw);
    letter-spacing: calc(-1 * (4px + 0.1vw));
  }
}
.splash .splash-message h2 {
  max-width: 97ch;
  font-weight: 400;
  font-size: calc(1em + 0.58vw);
}
.splash .splash-message h2 .weare {
  color: #f84525;
  font-weight: 600;
}
@media (max-width: 570.98px) {
  .splash .splash-message h2 {
    max-width: 31ch;
  }
}
.splash .header {
  z-index: 500;
  width: 100%;
  height: 96px;
  background-color: transparent;
  position: absolute;
  top: 6vh;
}
.splash .header .logo_container {
  position: relative;
  background-color: transparent;
}
.splash .header .logo {
  z-index: 501;
  display: inline-block;
  margin: 0;
  position: absolute;
  left: 6.5vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #f84525;
  background-color: black;
  background-color: #ff3029;
  padding: 15px;
}
.splash .header .logo svg path {
  fill: white;
}
@media only screen and (min-device-width: 320px) and (max-width: 512px) {
  .splash .header .logo {
    left: 9vw;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .splash .header .logo {
    left: 12vw;
  }
}
.splash .lang {
  position: absolute;
  top: 6vh;
  left: calc(87vw - 38px);
  /*@media (max-width: 1024.72px) {
    left: calc(87vw - 100px) !important;
  }
  @media (max-width: 767.98px) {
    left: calc(87vw - 91px) !important;
  }*/
  color: #f84525;
  display: inline-block;
  border: 4px solid #f84525;
  color: #f84525;
  padding: 10px;
  z-index: 5000;
  font-weight: bold;
  font-size: calc(13px + 0.2vw);
}
.splash .lang:hover {
  background-color: #f84525;
  color: white;
  cursor: pointer;
}

.privacy {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5vh;
  margin-bottom: 5vh;
  font-size: calc(9px + 0.5vw);
  min-width: 40ch;
}
@media only screen and (min-device-width: 320px) and (max-width: 512px) {
  .privacy {
    padding-left: 0;
  }
}
.privacy .logo {
  background-color: #f84525;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.privacy .logo svg path {
  fill: white;
}
.privacy h1 {
  margin-top: 2vh;
}
.privacy h2 {
  color: #f84525;
}
.privacy p {
  font-size: 1em;
  color: inherit;
  margin-bottom: 1em;
}

.ai {
  background-color: #007bff !important; /* Light grey */
  color: white !important;
}
.ai h3 {
  color: #0056b3 !important;
}

.ai h1 {
  color: white !important;
}

.ai p {
  color: #65aefc !important; /* Vibrant blue */
}
