@charset "UTF-8";
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  src: url("https://static.lc-group.ru/fonts/Outfit/Outfit-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.lc-group.ru/fonts/Outfit/Outfit-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 700;
  src: url("https://static.lc-group.ru/fonts/Outfit/Outfit-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.lc-group.ru/fonts/Inter/Inter-Regular.ttf") format("truetype");
}
html {
  height: 100%;
}

body,
html {
  color: #FFFFFF;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: normal;
  background-color: #120301;
}

body {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100%;
}

main {
  margin-bottom: auto;
}

h1, .h1 {
  font-size: 24px;
  line-height: 141.667%;
  text-transform: uppercase;
}

h2, .h2 {
  font-size: 35px;
  text-transform: uppercase;
}

.upcase {
  text-transform: uppercase;
}

a {
  color: #FFFFFF;
}

.wrapper {
  width: 1408px;
  max-width: calc(100% - 60px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

section {
  margin: 120px 0 0;
  position: relative;
}

.button {
  display: inline-block;
  border-radius: 68px;
  color: #FFFFFF;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  font-size: 16px;
  padding: 22px 50px;
}
.button span {
  background: url("https://static.quanticoelectronics.ae/static/img/arrow.svg") no-repeat center right;
  padding-right: 20px;
  background-size: auto;
  background-position: 100% 30%;
  letter-spacing: 0.32px;
  white-space: nowrap;
}
.button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #D89371;
  border-radius: 10rem;
  z-index: -2;
}
.button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #DD6931;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
  opacity: 0;
}
.button:hover {
  color: #fff;
}
.button:hover:before {
  width: 100%;
  opacity: 1;
}

.header {
  border-bottom: 1px solid #454545;
}

header nav,
footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header ul,
footer ul {
  grid-gap: 60px;
  gap: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  header ul,
  footer ul {
    grid-gap: 30px;
    gap: 30px;
  }
}
header ul li a,
footer ul li a {
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
  padding: 16px 0;
  display: inline-block;
}
@media (max-width: 991px) {
  header ul li a,
  footer ul li a {
    font-size: 14px;
  }
}
header ul li a:before,
footer ul li a:before {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  left: 0;
  bottom: 13px;
  z-index: 0;
  position: absolute;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header ul li a:hover:before,
footer ul li a:hover:before {
  width: 100%;
}
header .logo,
footer .logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 134px;
  height: 53px;
  background: url(https://static.quanticoelectronics.ae/static/img/logo.svg) center center no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  header .logo,
  footer .logo {
    width: 101px;
    height: 40px;
  }
}
header .burger_menu,
footer .burger_menu {
  display: none;
}
@media (max-width: 768px) {
  header .burger_menu,
  footer .burger_menu {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(https://static.quanticoelectronics.ae/static/img/menu.svg);
  }
}

@-webkit-keyframes anim {
  0% {
    margin-left: 100%;
  }
  100% {
    margin-left: 0;
  }
}

@keyframes anim {
  0% {
    margin-left: 100%;
  }
  100% {
    margin-left: 0;
  }
}
.menu_active {
  position: fixed;
}
.menu_active .wrapper {
  position: inherit;
}
.menu_active .burger_menu {
  background-image: url(https://static.quanticoelectronics.ae/static/img/menu_close.svg);
  position: fixed;
  top: 18px;
  right: 30px;
}
.menu_active header nav ul {
  position: fixed;
  top: 69px;
  padding-top: 85px;
  left: 0;
  z-index: 3;
  background-color: #120301;
  width: 100%;
  height: 100%;
  overflow: hidden;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 40px;
  gap: 40px;
  -webkit-animation: anim 0.3s;
          animation: anim 0.3s;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu_active header nav ul a {
  font-size: 16px;
  padding: 0;
}
.menu_active header nav ul a::before {
  bottom: -3px;
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 120px 0 60px;
  grid-gap: 32px;
  gap: 32px;
}
.title h1 {
  -ms-flex-preferred-size: 33.3%;
      flex-basis: 33.3%;
}
.title h2 {
  -ms-flex-preferred-size: 66.6%;
      flex-basis: 66.6%;
}

.footer {
  margin-top: 120px;
  background: -o-linear-gradient(bottom, #2D1F1B 0%, #2D1F1B 100%), #2D1F1B;
  background: -webkit-gradient(linear, left bottom, left top, from(#2D1F1B), to(#2D1F1B)), #2D1F1B;
  background: linear-gradient(0deg, #2D1F1B 0%, #2D1F1B 100%), #2D1F1B;
  overflow: hidden;
}
.footer nav {
  padding: 40px 0;
}
.footer .copy {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  text-align: center;
  margin: 25px auto;
  color: #F5F5F5;
}

@-webkit-keyframes fadeIn { /* Сама анимация */
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.2;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn { /* Сама анимация */
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.2;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
#modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 4;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.84);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s; /* Время работы анимации */
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; /* Поведение анимации */
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn; /* Имя анимации */
}

.partner_form {
  top: 10%;
  max-width: 555px;
  padding: 60px;
  background-color: #FFFFFF;
  position: relative;
}
.partner_form .close_btn {
  display: block;
  position: absolute;
  right: 60px;
  top: 20px;
  width: 24px;
  height: 24px;
  background-image: url(https://static.quanticoelectronics.ae/static/img/popup_close.svg);
}
.partner_form .form_title {
  color: #D89371;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}
.partner_form .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 24px;
  gap: 24px;
  margin: 22px 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #120301;
}
.partner_form .form > div {
  width: 100%;
}
.partner_form .form .inp {
  width: 100%;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid #858585;
  background: rgba(239, 239, 239, 0.06);
  font-size: 16px;
}
.partner_form .form .inp.error {
  border: 2px solid #858585;
}
.partner_form .form label {
  color: #120301;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.partner_form .form label input {
  margin-right: 10px;
  margin-top: 3px;
}
.partner_form .form .button {
  width: 100%;
}

.info_div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 32px;
  gap: 32px;
}
.info_div .col33 {
  -ms-flex-preferred-size: 33.3%;
      flex-basis: 33.3%;
}
.info_div .col66 {
  -ms-flex-preferred-size: 66.6%;
      flex-basis: 66.6%;
}
.info_div.vendor {
  padding-bottom: 150px;
}
.info_div p {
  text-transform: uppercase;
  margin: 30px 0 0;
}
.info_div .button {
  margin-top: 40px;
}

.img_full_width {
  width: 100%;
  height: 446px;
}
.img_full_width.vendor {
  background: url(https://static.quanticoelectronics.ae/static/img/vendors_main.jpg) lightgray 50%/cover no-repeat;
}
.img_full_width.team {
  background: -o-linear-gradient(bottom, rgba(184, 96, 16, 0.11) 0%, rgba(184, 96, 16, 0.11) 100%), url(https://static.quanticoelectronics.ae/static/img/team.jpg) lightgray 50%/cover no-repeat;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(184, 96, 16, 0.11)), to(rgba(184, 96, 16, 0.11))), url(https://static.quanticoelectronics.ae/static/img/team.jpg) lightgray 50%/cover no-repeat;
  background: linear-gradient(0deg, rgba(184, 96, 16, 0.11) 0%, rgba(184, 96, 16, 0.11) 100%), url(https://static.quanticoelectronics.ae/static/img/team.jpg) lightgray 50%/cover no-repeat;
}
.img_full_width.about {
  background: url(https://static.quanticoelectronics.ae/static/img/about.jpg) lightgray 50%/cover no-repeat;
}

.img_half_width {
  width: 100%;
  height: 446px;
}
.img_half_width.vendor {
  background: url(https://static.quanticoelectronics.ae/static/img/partnership.jpg) lightgray 50%/cover no-repeat;
}
.img_half_width.about_team {
  background: url(https://static.quanticoelectronics.ae/static/img/about_team.jpg) lightgray 50%/cover no-repeat;
}
.img_half_width.about_prof {
  background: url(https://static.quanticoelectronics.ae/static/img/about_prof.jpg) lightgray 50%/cover no-repeat;
}
.img_half_width.map {
  background: url(https://static.quanticoelectronics.ae/static/img/map.jpg) lightgray 50%/cover no-repeat;
}
.img_half_width.partner {
  background: -o-linear-gradient(bottom, rgba(184, 96, 16, 0.04) 0%, rgba(184, 96, 16, 0.04) 100%), url(https://static.quanticoelectronics.ae/static/img/partner.jpg) lightgray 50%/cover no-repeat;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(184, 96, 16, 0.04)), to(rgba(184, 96, 16, 0.04))), url(https://static.quanticoelectronics.ae/static/img/partner.jpg) lightgray 50%/cover no-repeat;
  background: linear-gradient(0deg, rgba(184, 96, 16, 0.04) 0%, rgba(184, 96, 16, 0.04) 100%), url(https://static.quanticoelectronics.ae/static/img/partner.jpg) lightgray 50%/cover no-repeat;
}

dl {
  text-transform: uppercase;
}
dl dt {
  margin-top: 63px;
  color: #D89371;
  text-transform: uppercase;
}
dl dd {
  margin-top: 10px;
}

.contactsMap {
  height: 420px;
  width: 100%;
}
.contactsMap iframe {
  width: 100%;
  height: 100%;
}

.contactsMap_mobile {
  display: none;
}

.p404 {
  text-align: center;
}
.p404 .error {
  font-size: 132.962px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.p404 p {
  color: #FFF;
  font-size: 35px;
  line-height: 117%; /* 40.95px */
}
.p404 a.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 22px 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 68px;
  border: 1px solid #FFFFFF;
  margin-top: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.p404 a.btn svg {
  margin-left: 10px;
}
.p404 a.btn svg path {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.p404 a.btn:hover {
  border: 1px solid #DD6931;
  color: #DD6931;
}
.p404 a.btn:hover svg path {
  fill: #DD6931;
}

@media (max-width: 1400px) {
  .img_full_width,
  .img_half_width {
    height: 32vw;
  }
}
@media (max-width: 991px) {
  .img_full_width,
  .img_half_width {
    height: 300px;
  }
  h1, .h1 {
    font-size: 22px;
    line-height: 133%;
    text-transform: uppercase;
  }
  h2, .h2 {
    font-size: 22px;
    text-transform: uppercase;
  }
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 18px;
    line-height: normal;
  }
  h2, .h2 {
    font-size: 22px;
    line-height: normal;
  }
  section {
    margin: 40px 0 0;
    position: relative;
  }
  .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 40px 0;
  }
  .title h1 {
    -ms-flex-preferred-size: 33.3%;
        flex-basis: 33.3%;
  }
  .title h2 {
    -ms-flex-preferred-size: 66.6%;
        flex-basis: 66.6%;
  }
  .header nav ul {
    display: none;
  }
  .footer {
    padding: 62px 0;
  }
  .footer nav {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 20px;
    gap: 20px;
    margin: 38px 0 33px;
  }
  .footer nav ul li a {
    padding: 0;
    font-size: 16px;
  }
  .footer nav ul li a::before {
    bottom: -3px;
  }
  .footer .copy {
    text-align: left;
    max-width: calc(100% - 60px);
    margin: 0 auto;
  }
  .info_div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 0;
    grid-gap: 32px;
    gap: 32px;
  }
  .info_div h2 {
    font-size: 18px;
    line-height: normal;
  }
  .info_div p {
    font-size: 14px;
    line-height: 24px;
  }
  .info_div .xs-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .info_div .xs-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .info_div .xs-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  dl {
    font-size: 14px;
  }
  dl dt {
    margin-top: 40px;
  }
  dl dd {
    margin-top: 10px;
  }
  .contactsMap_mobile {
    display: block;
    margin: 20px 0 -40px;
  }
  .contactsMap_mobile iframe {
    width: 100%;
    height: 416px;
  }
  .contactsMap {
    display: none;
  }
}
@media (max-width: 480px) {
  .img_half_width.vendor {
    background: -o-linear-gradient(bottom, rgba(184, 96, 16, 0.11) 0%, rgba(184, 96, 16, 0.11) 100%), url(https://static.quanticoelectronics.ae/static/img/partnership_mobile.jpg) lightgray 50%/cover no-repeat;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(184, 96, 16, 0.11)), to(rgba(184, 96, 16, 0.11))), url(https://static.quanticoelectronics.ae/static/img/partnership_mobile.jpg) lightgray 50%/cover no-repeat;
    background: linear-gradient(0deg, rgba(184, 96, 16, 0.11) 0%, rgba(184, 96, 16, 0.11) 100%), url(https://static.quanticoelectronics.ae/static/img/partnership_mobile.jpg) lightgray 50%/cover no-repeat;
  }
  .img_half_width.partner {
    height: 200px;
  }
  .img_half_width.about_team {
    background: url(https://static.quanticoelectronics.ae/static/img/about_team_mobile.jpg) lightgray 90%/cover no-repeat;
  }
  .img_half_width.about_prof {
    background: url(https://static.quanticoelectronics.ae/static/img/about_prof_mobile.jpg) lightgray 100%/cover no-repeat;
  }
  .img_full_width.about {
    background: url(https://static.quanticoelectronics.ae/static/img/about_mobile.jpg) lightgray 100%/cover no-repeat;
  }
  .img_full_width.team {
    background: url(https://static.quanticoelectronics.ae/static/img/team_mobile.jpg) lightgray 95%/cover no-repeat;
  }
  .img_full_width.vendor {
    background: url(https://static.quanticoelectronics.ae/static/img/vendors_main_mobile.jpg) lightgray 100%/cover no-repeat;
  }
  .partner_form {
    padding: 60px 28.5px;
    top: 0;
    height: 100%;
  }
  .partner_form .close_btn {
    right: 28.5px;
  }
  .partner_form .inp {
    padding: 15px 20px;
  }
}
