@font-face {
  font-family: Montserrat;
  src: url("../fonts/Montserrat-Regular.otf") format("opentype"); }
@font-face {
  font-family: Montserrat;
  src: url("../fonts/Montserrat-Thin.otf") format("opentype");
  font-weight: 100; }
@font-face {
  font-family: Montserrat;
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 700; }
@font-face {
  font-family: Montserrat;
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 800; }
@font-face {
  font-family: Montserrat;
  src: url("../fonts/Montserrat-ExtraBold.otf") format("opentype");
  font-weight: 900; }
@keyframes scale {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.2); }
  100% {
    transform: scale(1); } }
.trigger {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1px; }

@keyframes trans {
  0% {
    -webkit-box-shadow: -2px 8px 20px 6px rgba(0, 0, 0, 0);
    -moz-box-shadow: -2px 8px 20px 6px rgba(0, 0, 0, 0);
    box-shadow: -2px 8px 20px 6px rgba(0, 0, 0, 0); }
  100% {
    -webkit-box-shadow: -2px 8px 20px 6px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: -2px 8px 20px 6px rgba(0, 0, 0, 0.18);
    box-shadow: -2px 8px 20px 6px rgba(0, 0, 0, 0.18); } }
* {
  margin: 0;
  padding: 0; }

body {
  font-family: Montserrat, sans-serif;
  overflow: auto; }
  body.no-scroll {
    overflow: hidden; }

.site-header {
  position: fixed;
  top: 25px;
  left: 0;
  width: 100%;
  z-index: 100; }
  .site-header .container .box {
    z-index: 0;
    margin-left: auto;
    float: right;
    width: auto;
    display: inline-flex;
    align-items: stretch;
    justify-content: flex-end;
    position: relative; }
    .site-header .container .box .bg {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden; }
      .site-header .container .box .bg:after {
        position: absolute;
        left: 0;
        top: 0;
        transform: translateY(-100%);
        height: 100%;
        width: 100%;
        background: #fff;
        transition: all .5s ease;
        content: '';
        z-index: -1; }
    .site-header .container .box .enter {
      position: relative; }
      .site-header .container .box .enter:after {
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        height: 30px;
        width: 2px;
        background: #fff;
        transition: all .3s ease;
        content: ''; }
      .site-header .container .box .enter a {
        display: flex;
        height: 100%;
        align-items: center;
        text-transform: uppercase;
        color: #fff;
        padding: 0 30px;
        font-size: 16px;
        font-weight: 900;
        text-decoration: none; }
    .site-header .container .box .question {
      position: relative; }
      .site-header .container .box .question a {
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        color: #fff;
        padding: 0 20px;
        font-size: 16px;
        font-weight: 900;
        text-decoration: none; }
        .site-header .container .box .question a span {
          border: 2px solid #ff911d;
          border-radius: 50%;
          width: 26px;
          height: 26px;
          text-align: center; }
    .site-header .container .box .lang {
      position: relative; }
      .site-header .container .box .lang:after {
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        height: 30px;
        width: 2px;
        background: #fff;
        transition: all .3s ease;
        content: ''; }
      .site-header .container .box .lang .current {
        position: relative;
        text-transform: uppercase;
        color: #fff;
        font-size: 16px;
        font-weight: 900;
        text-decoration: none;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0 40px 0 24px;
        cursor: pointer; }
        .site-header .container .box .lang .current:after {
          position: absolute;
          right: 24px;
          top: 50%;
          transform: translateY(-50%);
          width: 0;
          height: 0;
          border-left: 5px solid transparent;
          border-right: 5px solid transparent;
          border-top: 6px solid #ff911d;
          content: ''; }
      .site-header .container .box .lang a {
        text-transform: uppercase;
        color: #fff;
        font-size: 16px;
        font-weight: 900;
        text-decoration: none;
        padding-left: 24px; }
      .site-header .container .box .lang .hidden-lang {
        opacity: 0;
        visibility: hidden;
        width: 100%;
        position: absolute;
        top: 100%;
        height: 50px;
        transition: all .3s ease; }
        .site-header .container .box .lang .hidden-lang a {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          height: 100%;
          width: 100%; }
      .site-header .container .box .lang.active .hidden-lang {
        opacity: 1;
        visibility: visible; }
  .site-header:not(.active) .container .box {
    box-shadow: none !important; }
  .site-header.active .container .box {
    animation: trans .5s ease; }
    .site-header.active .container .box .bg:after {
      transform: translateY(0); }
    .site-header.active .container .box .enter:after {
      background: #637aaf; }
    .site-header.active .container .box .enter a {
      color: #304d94; }
    .site-header.active .container .box a {
      color: #304d94; }
    .site-header.active .container .box .lang:after {
      background: #637aaf; }
    .site-header.active .container .box .lang .current {
      color: #304d94; }
    .site-header.active .container .box .lang.active .hidden-lang a {
      background: #ffffff;
      color: #304d94; }
  .site-header.open .container .box {
    box-shadow: none !important; }
  .site-header.open .container .box .enter a {
    color: #fff; }
  .site-header.open .container .box .enter:after {
    background: #fff; }
  .site-header.open .container .box .bg:after {
    opacity: 0; }
  .site-header.open .container .box .lang .current {
    color: #fff; }
  .site-header.open .container .box .lang.active .hidden-lang a {
    background: transparent;
    color: #fff; }
  .site-header.open .box {
    box-shadow: none; }
  .site-header.open .container .box .question a {
    color: #fff !important; }

button:hover, button:focus, .button:hover, .button:focus {
  background-color: transparent; }

.btn {
  cursor: pointer;
  outline: none;
  border: none;
  display: inline-flex; }
  .btn--primary {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    background: #ff911d;
    padding: 12px 20px;
    border-radius: 3px;
    transition: background .3s ease; }
    .btn--primary:hover {
      background: #e07402; }
    .btn--primary:focus {
      background: #e07402; }
  .btn--green {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    background: #6caf0f;
    padding: 12px 40px;
    border-radius: 3px;
    transition: background .3s ease; }
    .btn--green:hover {
      background: #518805; }
    .btn--green:focus {
      background: #518805; }

a.btn {
  display: inline-flex; }
  a.btn--primary {
    color: #fff; }
    a.btn--primary:hover {
      color: #fff; }
    a.btn--primary:focus {
      color: #fff; }
  a.btn--green {
    color: #fff; }
    a.btn--green:hover {
      color: #fff; }
    a.btn--green:focus {
      color: #fff; }

.main-banner {
  overflow: hidden;
  text-align: center;
  min-height: 100vh;
  padding: 100px 15px;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #314e9a; }
  .main-banner .img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1; }
    .main-banner .img img {
      animation: 20s scale infinite linear;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .main-banner .logo {
    text-align: center; }
    .main-banner .logo img {
      margin: 0 auto;
      max-height: 180px;
      max-width: 100%; }
    .main-banner .logo svg {
      margin: 0 auto;
      max-height: 180px;
      max-width: 100%; }
  .main-banner .description {
    color: #fff;
    width: 860px;
    max-width: 100%;
    font-size: 28px;
    font-weight: 900;
    margin: 25px auto 0; }
  .main-banner .btn {
    margin-top: 25px; }

.toggle-hamburger {
  color: #ccc;
  right: -1px;
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 66px;
  height: 66px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  background: transparent;
  border: 1px solid #ee8c1e; }
  .toggle-hamburger:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ee8c1e;
    left: 0;
    top: 0;
    content: '';
    transition: all .6s ease; }
  .toggle-hamburger:focus {
    outline: none; }
  .toggle-hamburger span {
    display: block;
    position: absolute;
    top: 31px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: #ffffff; }
    .toggle-hamburger span::before {
      position: absolute;
      display: block;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: #ffffff;
      content: "";
      top: -6px; }
    .toggle-hamburger span::after {
      position: absolute;
      display: block;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: #ffffff;
      content: "";
      bottom: -6px; }
  .toggle-hamburger.toggle-hamburger__animx span {
    -webkit-transition: background 0s 0.3s;
    transition: background 0s 0.3s; }
    .toggle-hamburger.toggle-hamburger__animx span::before {
      -webkit-transition-duration: 0.3s, 0.3s;
      transition-duration: 0.3s, 0.3s;
      -webkit-transition-delay: 0.3s, 0s;
      transition-delay: 0.3s, 0s;
      -webkit-transition-property: top, transform;
      transition-property: top, transform; }
    .toggle-hamburger.toggle-hamburger__animx span::after {
      -webkit-transition-duration: 0.3s, 0.3s;
      transition-duration: 0.3s, 0.3s;
      -webkit-transition-delay: 0.3s, 0s;
      transition-delay: 0.3s, 0s;
      -webkit-transition-property: bottom, transform;
      transition-property: bottom, transform; }
  .toggle-hamburger.toggle-hamburger__animx.is-active {
    border: 1px solid #fff; }
    .toggle-hamburger.toggle-hamburger__animx.is-active:before {
      transform: translateY(-100%); }
    .toggle-hamburger.toggle-hamburger__animx.is-active span {
      background: none; }
      .toggle-hamburger.toggle-hamburger__animx.is-active span::before {
        background-color: #fff;
        -webkit-transition-delay: 0s, 0.3s;
        transition-delay: 0s, 0.3s;
        top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg); }
      .toggle-hamburger.toggle-hamburger__animx.is-active span::after {
        background-color: #fff;
        -webkit-transition-delay: 0s, 0.3s;
        transition-delay: 0s, 0.3s;
        bottom: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); }

.production-section {
  overflow: hidden;
  background: #e1e1e1;
  padding: 85px 0 165px; }
  .production-section .sec_title {
    color: #304d94;
    font-size: 72px;
    font-weight: 100;
    margin-bottom: 16px; }
  .production-section .logo-prod {
    max-width: 254px;
    max-height: 180px;
    margin: 120px auto 0; }
    .production-section .logo-prod img {
      max-width: 100%; }
  .production-section .product:not(:last-child) {
    margin-bottom: 30px; }
  .production-section .product--left a.box {
    width: 100%;
    text-decoration: none;
    color: #19171a;
    display: flex;
    align-items: center; }
    .production-section .product--left a.box .img {
      padding-right: 15px;
      max-width: 50%; }
      .production-section .product--left a.box .img img.product-img-desc {
        max-width: 100%; }
      .production-section .product--left a.box .img img.product-img-mobi {
        max-width: 100%;
        display: none; }
    .production-section .product--left a.box .text {
      padding-left: 15px;
      max-width: 50%;
      color: #19171a;
      font-size: 20px;
      font-weight: 700; }
  .production-section .product--bottom a.box {
    width: 100%;
    text-decoration: none;
    color: #19171a; }
    .production-section .product--bottom a.box .img {
      max-width: 100%; }
      .production-section .product--bottom a.box .img img.product-img-desc {
        max-width: 100%; }
      .production-section .product--bottom a.box .img img.product-img-mobi {
        max-width: 100%;
        display: none; }
    .production-section .product--bottom a.box .text {
      max-width: 100%;
      color: #19171a;
      font-size: 20px;
      font-weight: 700; }
  .production-section .box-1 .product--left {
    margin-left: 100px;
    margin-right: -310px; }
  .production-section .box-3 .product--left {
    margin-top: -70px;
    margin-left: -97px;
    margin-right: -98px; }

.mobile-menu {
  z-index: 90;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(0%, 100%) matrix(1, 0, 0, 1, 0, 0);
  transition: all .5s ease;
  opacity: 0;
  visibility: hidden; }
  .mobile-menu:before {
    content: '';
    transform: scale(1.3);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("../img/mobile-bg.jpg") no-repeat 50% 50%/cover;
    transition: all 1.5s linear; }
  .mobile-menu .img img {
    max-width: 100%;
    opacity: 0;
    transition: all .5s ease .6s; }
  .mobile-menu .main-menu {
    color: #fff;
    font-size: 36px;
    font-weight: 900; }
    .mobile-menu .main-menu ul {
      margin: 0;
      padding-left: 100px; }
      .mobile-menu .main-menu ul li {
        opacity: 0;
        transform: translateY(100%);
        list-style: none;
        margin-bottom: 40px;
        padding-left: 0; }
        .mobile-menu .main-menu ul li:nth-child(1) {
          transition: all .5s ease .2s; }
        .mobile-menu .main-menu ul li:nth-child(2) {
          transition: all .5s ease .4s; }
        .mobile-menu .main-menu ul li:nth-child(3) {
          transition: all .5s ease .6s; }
        .mobile-menu .main-menu ul li:nth-child(4) {
          transition: all .5s ease .8s; }
        .mobile-menu .main-menu ul li:nth-child(5) {
          transition: all .5s ease 1s; }
        .mobile-menu .main-menu ul li:nth-child(6) {
          transition: all .5s ease 1.2s; }
        .mobile-menu .main-menu ul li:nth-child(7) {
          transition: all .5s ease 1.4s; }
        .mobile-menu .main-menu ul li:nth-child(8) {
          transition: all .5s ease 1.6s; }
        .mobile-menu .main-menu ul li a {
          color: #fff;
          text-transform: uppercase;
          font-size: 36px;
          font-weight: 800; }
  .mobile-menu .box {
    overflow: auto;
    height: 100%; }
    .mobile-menu .box > .container {
      height: 100%; }
      .mobile-menu .box > .container > .row {
        padding-top: 100px;
        padding-bottom: 100px;
        min-height: 100%; }
  .mobile-menu.active {
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    visibility: visible;
    transition: all .5s ease; }
    .mobile-menu.active:before {
      transform: scale(1); }
    .mobile-menu.active .main-menu ul li {
      opacity: 1;
      transform: translateY(0); }
    .mobile-menu.active .img img {
      opacity: 1; }

.popup {
  z-index: 120;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(0%, 100%) matrix(1, 0, 0, 1, 0, 0);
  transition: all .5s ease; }
  .popup .title {
    margin-bottom: 30px;
    color: #304d99;
    font-size: 72px;
    font-weight: 100;
    background: none;
    opacity: 0;
    transform: translateY(100%);
    transition: all .5s ease .3s; }
  .popup .popup-inner {
    overflow: auto;
    height: 100%;
    z-index: -1;
    position: relative; }
  .popup h2 {
    margin-top: 45px;
    color: #304d99;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 100;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: all .7s ease .5s; }
  .popup p {
    color: #19171a;
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(100%);
    transition: all .7s ease .8s; }
  .popup .btn {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .7s ease .8s, transform .7s ease .8s,  background .3s ease; }
  .popup ul {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(100%);
    transition: all .7s ease .8s; }
    .popup ul li {
      margin-bottom: 14px;
      padding-left: 22px;
      list-style: none;
      position: relative; }
      .popup ul li:before {
        position: absolute;
        left: 0;
        width: 17px;
        height: 24px;
        top: 0;
        background: url("../img/arrow_min.svg") no-repeat 0 50%/auto 17px;
        content: ''; }
  .popup .img {
    position: sticky;
    text-align: center;
    opacity: 0;
    transition: all .7s ease .3s; }
    .popup .img img {
      margin: 0 auto; }
  .popup .close-box {
    max-width: 100%;
    margin: 0 auto;
    width: 1180px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); }
  .popup .box {
    margin: 0 auto;
    padding: 145px 15px 94px;
    width: 1180px;
    max-width: 100%; }
  .popup .close-icon {
    width: 97px;
    height: 97px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    float: right;
    position: relative;
    background: #e5e5e5 url("../img/close-icon.png") no-repeat 50% 50%/32px auto;
    cursor: pointer;
    transition: all .3s ease; }
    .popup .close-icon:hover {
      background-color: #d8d8d8; }
  .popup .popup-inner a.btn {
    color: #fff; }
    .popup .popup-inner a.btn:hover {
      color: #fff; }
    .popup .popup-inner a.btn:focus {
      color: #fff; }
  .popup.active {
    transform: matrix(1, 0, 0, 1, 0, 0); }
    .popup.active .title {
      opacity: 1;
      transform: translateY(0); }
    .popup.active h2 {
      opacity: 1;
      transform: translateY(0); }
    .popup.active p {
      opacity: 1;
      transform: translateY(0); }
    .popup.active ul {
      opacity: 1;
      transform: translateY(0); }
    .popup.active .btn {
      opacity: 1;
      transform: translateY(0); }
    .popup.active .img {
      opacity: 1; }

.present-section {
  background: #304e95;
  padding: 69px 0 240px; }
  .present-section .sec_title {
    position: relative;
    margin-right: -190px;
    color: #fff;
    font-weight: 600;
    font-size: 92px;
    text-align: center;
    z-index: 0; }
    .present-section .sec_title small {
      color: #fff;
      font-size: 74px;
      font-weight: 900;
      display: block; }
    .present-section .sec_title span.space {
      display: inline-block;
      height: 20px;
      width: 100px; }
    .present-section .sec_title:before {
      content: '';
      width: 590px;
      height: 590px;
      position: absolute;
      border-radius: 50%;
      left: 50%;
      transform: translateX(-50%);
      top: -146px;
      z-index: -1;
      background: #ee8c1e;
      background: linear-gradient(21deg, #e5591e 0%, #ea781e 16%, #ee8c1e 23%, #ee8c1e 69%); }
    .present-section .sec_title .girl {
      position: absolute;
      top: calc(100% - 132px);
      left: 50%;
      transform: translateX(-50%);
      width: 440px;
      height: 553px;
      max-width: 80%; }
  .present-section .text {
    margin-top: 310px; }
    .present-section .text .title_t {
      color: #fff;
      font-size: 24px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 40px; }
    .present-section .text .numbers-list {
      margin-bottom: 40px; }
      .present-section .text .numbers-list .item {
        display: flex;
        align-items: center; }
        .present-section .text .numbers-list .item:not(:last-child) {
          margin-bottom: 30px; }
        .present-section .text .numbers-list .item .numb {
          font-weight: 100;
          width: 138px;
          flex: none;
          color: #ed8c1e;
          font-size: 72px;
          padding-right: 38px;
          position: relative; }
          .present-section .text .numbers-list .item .numb:after {
            content: '';
            position: absolute;
            left: 100px;
            top: 50%;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            background: url("../img/arrow_mid.svg") no-repeat 0 50%/contain; }
        .present-section .text .numbers-list .item .cont {
          color: #fff;
          font-size: 20px; }
    .present-section .text ul li {
      margin-bottom: 14px;
      padding-left: 22px;
      list-style: none;
      position: relative;
      font-size: 20px;
      color: #fff; }
      .present-section .text ul li:before {
        position: absolute;
        left: 0;
        width: 24px;
        height: 31px;
        top: 0;
        background: url("../img/arrow_min.svg") no-repeat 0 50%/auto 20px;
        content: ''; }

.large_title_promo {
  position: relative;
  margin-top: -1px;
  z-index: 0;
  background: #304e95; }
  .large_title_promo:before {
    z-index: -2;
    content: '';
    width: 1922px;
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/promo_bg.jpg) no-repeat 50% 0/100% auto; }
  .large_title_promo img.main-img {
    display: block;
    width: 1924px;
    max-width: 100%;
    margin: 0 auto -1px; }
  .large_title_promo img.main-img--mob {
    display: none;
    width: 100%;
    max-width: 100%;
    margin: 0 auto -1px; }
  .large_title_promo .box {
    margin-top: -198px;
    text-transform: uppercase;
    z-index: -1;
    position: absolute;
    white-space: nowrap;
    top: 50%;
    left: 0;
    color: #fff;
    font-size: 131px;
    font-weight: 900;
    width: 100%;
    text-align: center; }
    .large_title_promo .box span.space {
      display: inline-block;
      height: 20px;
      width: 80px; }

.promo-section {
  background: #008acc;
  position: relative; }
  .promo-section .sec_title {
    color: #fff;
    font-size: 72px;
    font-weight: 100;
    margin-bottom: 114px; }
  .promo-section .promo.owl-carousel {
    overflow: hidden;
    position: relative;
    max-width: 1980px;
    margin: 0 auto;
    z-index: 0; }
    .promo-section .promo.owl-carousel:before {
      z-index: -1;
      content: '';
      width: 500px;
      height: 500px;
      background: radial-gradient(circle 375px, #31c6ffdb 0%, #3ab3e2 3%, #3cc2f7b0 9%, #10bdffdb 24%, #03aeffa6 39%, #00a1ffd6 41%, #3c81a200 62%, #128ac3eb 100%);
      right: 50%;
      top: 0;
      position: absolute; }
    .promo-section .promo.owl-carousel .item .box {
      display: flex;
      align-items: flex-end; }
      .promo-section .promo.owl-carousel .item .box .img {
        width: 50%;
        text-align: center; }
        .promo-section .promo.owl-carousel .item .box .img img {
          width: auto !important;
          max-width: 100%;
          margin: 0 auto; }
      .promo-section .promo.owl-carousel .item .box .text {
        width: 50%;
        padding-bottom: 100px; }
        .promo-section .promo.owl-carousel .item .box .text .title_t {
          margin-bottom: 20px;
          color: #fff;
          font-size: 24px;
          font-weight: 900; }
          .promo-section .promo.owl-carousel .item .box .text .title_t span.str {
            display: inline-block;
            width: 17px;
            height: 17px;
            background: url("../img/arrow_min.svg") no-repeat 50% 50%/contain; }
        .promo-section .promo.owl-carousel .item .box .text p {
          color: #fff;
          font-size: 20px; }
        .promo-section .promo.owl-carousel .item .box .text small {
          font-size: 16px;
          color: #80c7e5; }
        .promo-section .promo.owl-carousel .item .box .text .numb-list__item {
          margin-bottom: 14px;
          display: flex; }
          .promo-section .promo.owl-carousel .item .box .text .numb-list__item .numb {
            flex: none;
            color: #de8826;
            font-size: 20px;
            font-weight: 900;
            margin-right: 10px; }
          .promo-section .promo.owl-carousel .item .box .text .numb-list__item .cont {
            flex: auto;
            color: #fff;
            font-size: 20px; }
        .promo-section .promo.owl-carousel .item .box .text .low-opacity ul li {
          margin-bottom: 14px;
          padding-left: 22px;
          list-style: none;
          position: relative;
          color: #ffffff; }
          .promo-section .promo.owl-carousel .item .box .text .low-opacity ul li:before {
            position: absolute;
            left: 0;
            width: 17px;
            height: 24px;
            top: 0;
            background: url("../img/arrow_min.svg") no-repeat 0 50%/auto 17px;
            content: ''; }
    .promo-section .promo.owl-carousel .item .owl-dots {
      margin-bottom: 35px;
      margin-top: 20px; }
      .promo-section .promo.owl-carousel .item .owl-dots .owl-dot {
        outline: none;
        width: 32px;
        height: 32px;
        border: 2px solid transparent;
        border-radius: 50%;
        display: inline-block;
        margin-right: 13px;
        position: relative; }
        .promo-section .promo.owl-carousel .item .owl-dots .owl-dot:before {
          content: '';
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translateX(-50%) translateY(-50%);
          width: 14px;
          height: 14px;
          border-radius: 50%;
          background: #fff; }
        .promo-section .promo.owl-carousel .item .owl-dots .owl-dot.active {
          border: 2px solid #eb891e; }
          .promo-section .promo.owl-carousel .item .owl-dots .owl-dot.active:before {
            background: #eb891e; }
    .promo-section .promo.owl-carousel .owl-nav button {
      outline: none;
      position: absolute;
      top: 70px;
      background: url("../img/arrow_big.svg") no-repeat 50% 50%/contain;
      width: 73px;
      height: 73px; }
      .promo-section .promo.owl-carousel .owl-nav button.owl-prev {
        left: 0;
        transform: rotate(180deg); }
      .promo-section .promo.owl-carousel .owl-nav button.owl-next {
        right: 0; }
      .promo-section .promo.owl-carousel .owl-nav button span {
        display: none; }

.reviews-section {
  background: #e2e2e2;
  position: relative; }
  .reviews-section .sec_title {
    white-space: nowrap;
    position: relative;
    margin-left: -83px;
    text-align: center;
    z-index: 0;
    color: #fff;
    font-size: 92px;
    font-weight: 900;
    width: 620px;
    height: 620px;
    margin-top: -80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px; }
    .reviews-section .sec_title span.space {
      height: 20px;
      width: 100px;
      display: none; }
    .reviews-section .sec_title:before {
      content: '';
      width: 620px;
      height: 620px;
      position: absolute;
      background: #ee8c1e;
      border-radius: 50%;
      left: 0;
      top: 0;
      z-index: -1;
      background: linear-gradient(21deg, #e5591e 0%, #ea781e 16%, #ee8c1e 23%, #ee8c1e 69%); }
    .reviews-section .sec_title .girl {
      position: absolute;
      top: calc(50% - 140px);
      left: 50%;
      transform: translateX(-50%);
      width: 429px;
      height: 518px;
      max-width: 80%; }
  .reviews-section .reviews {
    padding-right: 55px;
    margin-top: 175px; }
    .reviews-section .reviews__item .top-part {
      margin-bottom: 20px;
      display: flex;
      align-items: center; }
      .reviews-section .reviews__item .top-part .img {
        flex: none;
        margin-right: 30px;
        width: 166px;
        height: 166px;
        overflow: hidden;
        border-radius: 50%; }
        .reviews-section .reviews__item .top-part .img img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .reviews-section .reviews__item .top-part .name {
        display: table-caption;
        color: #000;
        font-size: 20px; }
    .reviews-section .reviews__item .text {
      position: relative;
      padding-left: 100px;
      color: #1a171b;
      font-size: 16px; }
      .reviews-section .reviews__item .text p {
        font-size: 16px;
        color: #1a171b;
        line-height: 1.35;
        margin-top: 0;
        margin-bottom: 0; }
      .reviews-section .reviews__item .text:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 90px;
        height: 90px;
        background: url("../img/quote.svg") no-repeat 50% 50%/contain; }
      .reviews-section .reviews__item .text .date {
        color: #878a8b;
        font-size: 16px;
        margin-top: 20px; }
      .reviews-section .reviews__item .text .btn {
        margin-top: 30px;
        padding: 10px 30px; }
    .reviews-section .reviews .owl-dots {
      margin-top: 50px; }
      .reviews-section .reviews .owl-dots .owl-dot {
        outline: none;
        width: 32px;
        height: 32px;
        border: 2px solid transparent;
        border-radius: 50%;
        display: inline-block;
        margin-right: 13px;
        position: relative; }
        .reviews-section .reviews .owl-dots .owl-dot:before {
          content: '';
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translateX(-50%) translateY(-50%);
          width: 14px;
          height: 14px;
          border-radius: 50%;
          background: #c5c6c7; }
        .reviews-section .reviews .owl-dots .owl-dot.active {
          border: 2px solid #ee8c1e; }
          .reviews-section .reviews .owl-dots .owl-dot.active:before {
            background: #eb891e; }

.about_section {
  overflow: hidden;
  background: #304e95;
  position: relative; }
  .about_section .large_title {
    align-items: center;
    position: relative;
    display: flex;
    margin-top: -1px;
    justify-content: center; }
    .about_section .large_title .box {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      padding-left: 15px;
      padding-right: 15px;
      transform: translateY(-50%);
      color: #fff;
      font-size: 131px;
      font-weight: 900;
      text-align: center; }
    .about_section .large_title .main-img {
      width: 1980px;
      max-width: 100%; }
  .about_section .sec_title {
    color: #fff;
    font-size: 72px;
    font-weight: 100; }
  .about_section .owl-box {
    margin: 60px auto 0;
    width: 1610px;
    max-width: 100%;
    overflow: hidden; }
  .about_section .history {
    padding-right: calc(100% / 2);
    max-width: 100%;
    padding-bottom: 90px;
    position: relative; }
    .about_section .history__item {
      padding-left: 205px; }
      .about_section .history__item .year {
        color: #ed8c1e;
        font-size: 72px;
        font-weight: 700; }
      .about_section .history__item .title_t {
        color: #fff;
        font-size: 24px;
        font-weight: 700; }
      .about_section .history__item p {
        color: #fff;
        font-size: 20px; }
    .about_section .history.owl-carousel .owl-stage-outer {
      overflow: visible; }
    .about_section .history.owl-carousel .owl-item {
      padding-right: 40px;
      overflow: visible;
      position: relative;
      opacity: .5;
      z-index: 0; }
      .about_section .history.owl-carousel .owl-item:before {
        position: absolute;
        content: '';
        left: 410px;
        top: 180px;
        width: calc(100% - 410px);
        height: 2px;
        background: #ee8c1e;
        transform: translateX(-100%);
        transition: 0s linear;
        z-index: -1; }
      .about_section .history.owl-carousel .owl-item:after {
        z-index: -2;
        content: '';
        position: absolute;
        top: 0;
        left: 100px;
        width: 500px;
        height: 500px;
        background: #304e95;
        background: radial-gradient(circle 400px, #2aa0e0 0%, #2b99da 3%, #2b90d2 9%, #2c85c7 24%, #2e6db1 39%, #2e6aaf 41%, #304e95 62%, #304e95 100%);
        transition: 1.5s ease 1s;
        opacity: 0; }
      .about_section .history.owl-carousel .owl-item .history__item {
        position: relative;
        padding-top: 145px;
        min-height: 480px;
        z-index: 0; }
        .about_section .history.owl-carousel .owl-item .history__item:before {
          z-index: -1;
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 412px;
          height: 412px;
          border: 1px solid #ee8c1e;
          background: #304e95;
          border-radius: 50%;
          overflow: hidden; }
        .about_section .history.owl-carousel .owl-item .history__item:after {
          z-index: -1;
          opacity: 0;
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 412px;
          height: 412px;
          background: url("../img/orange.png") no-repeat 50% 50%/contain;
          border-radius: 50%;
          overflow: hidden;
          transition: all 1s ease; }
      .about_section .history.owl-carousel .owl-item.active {
        opacity: 1; }
        .about_section .history.owl-carousel .owl-item.active:before {
          transform: translateX(0);
          transition: 6s linear; }
        .about_section .history.owl-carousel .owl-item.active:after {
          opacity: .8; }
        .about_section .history.owl-carousel .owl-item.active .history__item .year {
          color: #304d94; }
        .about_section .history.owl-carousel .owl-item.active .history__item:after {
          opacity: 1; }
    .about_section .history.owl-carousel .owl-dots {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      padding-left: 205px;
      padding-right: 205px;
      max-width: 100%;
      width: 100%;
      margin: 40px auto 0; }
      .about_section .history.owl-carousel .owl-dots .owl-dot {
        outline: none;
        width: 32px;
        height: 32px;
        border: 2px solid transparent;
        border-radius: 50%;
        display: inline-block;
        margin-right: 13px;
        position: relative; }
        .about_section .history.owl-carousel .owl-dots .owl-dot:before {
          content: '';
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translateX(-50%) translateY(-50%);
          width: 14px;
          height: 14px;
          border-radius: 50%;
          background: #ee8c1e; }
        .about_section .history.owl-carousel .owl-dots .owl-dot.active {
          border: 2px solid #ee8c1e; }

.founder-section {
  background: #304e95;
  padding-top: 120px; }
  .founder-section .img-box {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; }
  .founder-section .img {
    position: sticky;
    bottom: 0;
    align-self: flex-end;
    z-index: 1; }
    .founder-section .img:before {
      z-index: -1;
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 0;
      width: 700px;
      height: 100%;
      background: radial-gradient(circle 500px, #2aa0e0 0%, #2b99da 3%, #2b90d2 9%, #2c85c7 24%, #2e6db1 39%, #2e6aaf 41%, #304e95 62%, #304e95 100%);
      opacity: 0;
      transition: all .4s ease .5s; }
    .founder-section .img.revealator-within:before {
      opacity: 1; }
    .founder-section .img img {
      position: relative;
      z-index: 5; }
  .founder-section .text-box {
    position: relative;
    z-index: 3; }
  .founder-section .sec_title {
    color: #fff;
    font-size: 72px;
    font-weight: 100;
    margin-right: -24px;
    margin-bottom: 45px; }
  .founder-section .sub_title {
    color: #ee8c1e;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px; }
  .founder-section p {
    color: #fff;
    font-size: 20px;
    font-weight: 700; }
  .founder-section .chronology-box {
    margin-top: 35px;
    position: relative; }
  .founder-section .chronology {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    margin-left: 0;
    padding-bottom: 50px; }
    .founder-section .chronology li {
      list-style: none;
      padding-left: 70px;
      padding-bottom: 30px;
      margin-bottom: 0;
      color: #fff;
      font-size: 20px;
      position: relative;
      cursor: default; }
      .founder-section .chronology li .dot {
        width: 34px;
        height: 34px;
        border: 2px solid #ee8c1e;
        border-radius: 50%;
        left: 0;
        top: 0;
        position: absolute;
        background: #304e95;
        content: '';
        display: flex;
        align-items: center;
        justify-content: center; }
        .founder-section .chronology li .dot:before {
          width: 12px;
          height: 12px;
          background: #ee8c1e;
          border-radius: 50%;
          content: '';
          display: inline-block;
          z-index: 2;
          opacity: 0;
          transition: all .3s ease; }
      .founder-section .chronology li.active .dot:before {
        opacity: 1; }
      .founder-section .chronology li:not(:last-child):after {
        position: absolute;
        left: 16px;
        height: calc(100% - 34px);
        width: 2px;
        background: #ee8c1e;
        top: 34px;
        content: ''; }

.contacts-section {
  background: #003a86;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
  z-index: 0; }
  .contacts-section .sec_title {
    color: #fff;
    font-size: 72px;
    margin-bottom: 40px;
    font-weight: 700;
    margin-right: -100px;
    z-index: 4;
    position: relative; }
  .contacts-section .contacts__item {
    color: #fff;
    font-size: 20px; }
    .contacts-section .contacts__item:not(:last-child) {
      margin-bottom: 40px; }
    .contacts-section .contacts__item a {
      color: #fff; }
    .contacts-section .contacts__item .title_t {
      font-weight: 900;
      margin-bottom: 20px; }
  .contacts-section .contacts .social-links ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    margin-top: 15px;
    padding: 0; }
    .contacts-section .contacts .social-links ul li {
      padding: 0;
      margin: 0;
      margin-right: 8px;
      list-style: none; }
      .contacts-section .contacts .social-links ul li a.social {
        width: 44px;
        height: 44px;
        display: inline-block;
        transition: all .3s ease;
        opacity: 1; }
        .contacts-section .contacts .social-links ul li a.social--you {
          background: url("../img/youtube_icon.svg") no-repeat 50% 50%/contain; }
        .contacts-section .contacts .social-links ul li a.social--ins {
          background: url("../img/instagram_icon.svg") no-repeat 50% 50%/contain; }
        .contacts-section .contacts .social-links ul li a.social--vk {
          background: url("../img/vk_icon.svg") no-repeat 50% 50%/contain; }
        .contacts-section .contacts .social-links ul li a.social--fb {
          background: url("../img/fb_icon.svg") no-repeat 50% 50%/contain; }
        .contacts-section .contacts .social-links ul li a.social:hover {
          opacity: .85; }

.map-container {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%; }
  .map-container #map {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%; }

.site-footer {
  background: #1a171b;
  padding: 30px 0; }
  .site-footer .copyright {
    color: #fff;
    font-size: 16px; }
  .site-footer .footer-links ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap; }
    .site-footer .footer-links ul li {
      margin: 0;
      padding: 0;
      list-style: none;
      margin-left: 30px; }
      .site-footer .footer-links ul li a {
        color: #707172;
        font-size: 16px;
        text-decoration: none; }
        .site-footer .footer-links ul li a:hover {
          text-decoration: underline; }

.row {
  margin: 0 -15px;
  max-width: none;
  width: auto; }

.animate {
  opacity: 0;
  transform: translateY(100%);
  transition: all .6s ease .5s; }
  .animate.animate-show {
    opacity: 1;
    transform: translateY(0); }

@media (max-width: 1199px) {
  .site-header {
    position: static; }
    .site-header .container .box {
      z-index: 100;
      position: fixed;
      right: 15px;
      top: 15px; }

  .reviews-section .sec_title {
    width: 560px;
    height: 560px; }

  .reviews-section .sec_title:before {
    width: 560px;
    height: 560px; }

  .large_title_promo .box {
    margin-top: -100px;
    font-size: 70px; }

  .large_title_promo .box span.space {
    width: 57px; }

  .about_section .large_title .box {
    font-size: 70px; }

  .production-section .product--left a.box {
    display: block; }

  .production-section .box-3 .product--left {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0; }

  .production-section .product--left a.box .img {
    padding-right: 0;
    max-width: 100%; }

  .production-section .box-1 .product--left {
    margin-left: 0;
    margin-right: 0; }

  .production-section .product--left a.box .text {
    padding-left: 0;
    max-width: 100%;
    margin-top: 25px; }

  .present-section .sec_title {
    font-size: 56px;
    margin-right: 0; }

  .present-section .sec_title:before {
    width: 460px;
    height: 460px; }

  .present-section .sec_title small {
    font-size: 56px; }

  .present-section .sec_title .girl {
    top: calc(100% - 58px);
    left: 52%;
    max-width: 100%;
    width: 185px;
    height: 232px; }

  .present-section {
    padding: 69px 0 10px; }

  .present-section .sec_title span.space {
    width: 40px; }

  .about_section .history__item {
    padding-left: 64px; }

  .about_section .history.owl-carousel .owl-dots {
    padding-left: 64px;
    padding-right: 64px; }

  .founder-section .img:before {
    width: 100%;
    background: radial-gradient(circle 350px, #2aa0e0 0%, #2b99da 3%, #2b90d2 9%, #2c85c7 24%, #2e6db1 39%, #2e6aaf 41%, #304e95 62%, #304e95 100%); } }
@media (max-width: 991px) {
  .popup .title {
    text-align: center;
    font-size: 32px; }
  .popup .img {
    margin-bottom: 20px; }
  .popup p {
    font-size: 14px; }
  .popup .box {
    margin: 0 auto;
    padding: 75px 15px 75px;
    width: 700px;
    max-width: 100%; }
  .popup .close-box {
    position: static;
    top: 0;
    left: 0;
    transform: translateX(0); }
  .popup .close-icon {
    width: 54px;
    height: 54px;
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e5e5e5 url(../img/close-icon.png) no-repeat 50% 50%/20px auto; }
  .popup h2 {
    margin-top: 40px;
    font-size: 18px; }
  .popup .btn {
    display: inline-flex;
    margin: 0 auto;
    align-self: center; }

  .mobile-menu .main-menu ul {
    padding-left: 0; }
    .mobile-menu .main-menu ul li {
      margin-bottom: 35px;
      text-align: center; }
      .mobile-menu .main-menu ul li a {
        font-size: 22px; }

  .promo-section .promo.owl-carousel .item .container {
    max-width: 100% !important; }

  .promo-section .promo.owl-carousel:before {
    display: none; }

  .promo-section .promo.owl-carousel .item .box .img {
    position: relative;
    z-index: 0; }

  .promo-section .promo.owl-carousel .item .box .img:before {
    z-index: -1;
    content: '';
    width: 320px;
    height: 320px;
    background: radial-gradient(circle 250px, #31c6ffdb 0%, #3ab3e2 3%, #3cc2f7b0 9%, #10bdffdb 24%, #03aeffa6 39%, #00a1ffd6 41%, #3c81a200 62%, #128ac3eb 100%);
    right: 50%;
    transform: translateX(50%);
    top: 0;
    position: absolute; }

  .toggle-hamburger {
    width: 52px;
    height: 52px; }
    .toggle-hamburger span {
      top: 25px;
      left: 10px;
      right: 10px;
      height: 2px; }
      .toggle-hamburger span::before {
        height: 2px; }
      .toggle-hamburger span::after {
        height: 2px; }

  .site-header .container .box .enter a {
    padding: 0 26px;
    font-size: 14px; }

  .site-header .container .box .lang .current {
    font-size: 14px; }

  .site-header .container .box .lang a {
    font-size: 14px; }

  .site-header .container .box .enter:after {
    height: 24px;
    width: 1px; }

  .site-header .container .box .lang:after {
    height: 24px;
    width: 1px; }

  .large_title_promo .box {
    margin-top: -70px;
    font-size: 50px; }

  .main-banner {
    padding: 120px 15px 70px; }
    .main-banner .logo {
      text-align: center;
      max-width: 183px; }
    .main-banner .description {
      width: 530px;
      font-size: 16px;
      margin: 25px auto 0; }
    .main-banner .btn {
      margin-top: 35px; }

  .founder-section .img:before {
    width: 300px;
    top: 60px;
    bottom: 0;
    height: auto;
    background: radial-gradient(circle 220px, #2aa0e0 0%, #2b99da 3%, #2b90d2 9%, #2c85c7 24%, #2e6db1 39%, #2e6aaf 41%, #304e95 62%, #304e95 100%); }

  .present-section .text {
    margin-top: 0; }

  .btn--primary {
    font-size: 14px;
    padding: 12px 30px; }

  .production-section {
    padding: 60px 0; }

  .production-section .sec_title {
    color: #304d94;
    font-size: 32px;
    font-weight: 100;
    text-align: center;
    margin-bottom: 30px; }

  .production-section .logo-prod {
    max-width: 210px;
    max-height: 180px;
    margin: 0 auto 60px;
    text-align: center; }

  .production-section .product {
    text-align: center;
    max-width: 263px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to top, #f8f8f8 0%, #e1e1e1 90%);
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 13px;
    padding-bottom: 15px; }
    .production-section .product .img img {
      max-width: 100%; }

  .production-section .box-1 .product--left {
    margin-left: auto;
    margin-right: auto; }

  .production-section .product--bottom a.box .text {
    font-size: 16px; }

  .production-section .product--left a.box .text {
    font-size: 16px; }

  .production-section .box-3 .product--left {
    margin-left: auto;
    margin-right: auto; }

  .present-section {
    padding: 0 0 30px; }

  .present-section .sec_title:before {
    width: 400px;
    height: 400px;
    top: 0; }

  .present-section .sec_title {
    margin-top: -22px;
    padding-top: 90px;
    font-size: 48px;
    margin-bottom: 200px; }

  .present-section .sec_title small {
    font-size: 40px; }

  .present-section .text .title_t {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center; }

  .present-section .text .numbers-list .item .numb {
    width: 78px;
    font-size: 42px;
    padding-right: 23px;
    line-height: 1; }

  .present-section .text .numbers-list .item .numb:after {
    left: 55px;
    width: 11px;
    height: 21px; }

  .present-section .text .numbers-list .item .cont {
    font-size: 14px; }

  .present-section .text ul li {
    color: #fff;
    font-size: 14px; }

  .present-section .text ul li:before {
    width: 11px;
    height: 20px; }

  .promo-section .promo.owl-carousel {
    background: #007bc6; }

  .promo-section .large_title .box {
    margin-top: -100px;
    font-size: 37px; }

  .promo-section .large_title .box {
    margin-top: -40px;
    font-size: 53px; }

  .promo-section .sec_title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 30px;
    background: #008acc; }

  .promo-section .promo.owl-carousel .item .box {
    display: block;
    align-items: flex-end;
    margin-right: -15px;
    margin-left: -15px; }

  .promo-section .promo.owl-carousel .item .box .img {
    width: 100%;
    margin-bottom: 0;
    display: flex;
    height: 280px;
    align-items: flex-end;
    padding-left: 15px;
    padding-right: 15px;
    background: #008acc;
    position: relative; }
    .promo-section .promo.owl-carousel .item .box .img:after {
      z-index: -1;
      content: '';
      height: 30px;
      width: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
      position: absolute;
      left: 0;
      bottom: 0; }

  .promo-section .promo.owl-carousel .item .box .text {
    width: 100%;
    padding-bottom: 70px;
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    background: #007bc6;
    position: relative; }

  .promo-section {
    padding-bottom: 0; }

  .promo-section .promo.owl-carousel .item .owl-dots {
    margin-bottom: 25px;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }

  .promo-section .promo.owl-carousel .item .box .img img {
    max-height: 280px; }

  .reviews-section .sec_title {
    font-size: 53px;
    width: 400px;
    height: 400px;
    margin-top: -40px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
    align-items: flex-start; }

  .reviews-section .reviews {
    margin-top: 50px;
    padding-right: 0; }

  .reviews-section {
    padding-right: 0; }

  .reviews-section .sec_title span.space {
    width: 0; }

  .reviews-section .sec_title:before {
    width: 400px;
    height: 400px; }

  .reviews-section .sec_title .girl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: auto;
    max-width: 80%; }

  .reviews-section .reviews .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; }

  .about_section .sec_title {
    font-size: 32px;
    text-align: center; }

  .about_section .history {
    padding-right: 0;
    padding-bottom: 90px; }

  .about_section .large_title .box {
    font-size: 54px; }

  .about_section .history.owl-carousel .owl-dots {
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-left: 15px;
    padding-right: 15px; }

  .founder-section {
    padding-top: 40px;
    overflow: hidden; }

  .founder-section .img-box {
    margin-bottom: 0;
    position: relative;
    z-index: 0; }
    .founder-section .img-box:after {
      content: '';
      height: 30px;
      width: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: -1; }
    .founder-section .img-box:before {
      width: 300px;
      top: 60px;
      bottom: 0;
      height: auto;
      background: radial-gradient(circle 220px, #2aa0e0 0%, #2b99da 3%, #2b90d2 9%, #2c85c7 24%, #2e6db1 39%, #2e6aaf 41%, #304e95 62%, #304e95 100%);
      z-index: -2;
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      transition: all .4s ease .5s;
      opacity: 1; }

  .founder-section .img:before {
    display: none !important; }

  .founder-section .img img {
    max-height: 300px; }

  .founder-section .sub_title {
    font-size: 18px;
    margin-bottom: 26px;
    text-align: center; }

  .founder-section p {
    font-size: 14px;
    text-align: center; }

  .founder-section .text-box {
    margin-left: -15px;
    position: relative;
    margin-right: -15px;
    background: #31438c;
    padding-bottom: 0;
    padding-top: 26px; }

  .founder-section .container {
    max-width: 100%; }

  .founder-section .chronology {
    margin-top: 0;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px; }

  .founder-section .chronology-box {
    margin-top: 0;
    position: relative; }

  .founder-section .chronology li .dot {
    width: 22px;
    height: 22px;
    left: 9px; }

  .founder-section .chronology li {
    margin-top: 0;
    padding-left: 54px;
    padding-bottom: 35px;
    margin-bottom: 0;
    font-size: 14px; }

  .founder-section .sec_title {
    font-size: 32px;
    font-weight: 100;
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center; }

  .founder-section .chronology li:not(:last-child):after {
    left: 20px;
    height: calc(100% - 22px);
    width: 1px;
    top: 22px; }

  .site-footer {
    padding: 55px 0; }
    .site-footer .copyright {
      text-align: center;
      margin-bottom: 40px; }
    .site-footer .footer-links ul {
      display: block;
      text-align: center; }
      .site-footer .footer-links ul li {
        margin-left: 0; }
        .site-footer .footer-links ul li:not(:last-child) {
          margin-bottom: 25px; }

  .contacts-section .sec_title {
    font-size: 32px;
    margin-bottom: 70px; }

  .production-section .product--left a.box .img img.product-img-desc {
    display: none; }
  .production-section .product--left a.box .img img.product-img-mobi {
    display: block; }
  .production-section .product--bottom a.box .img img.product-img-desc {
    display: none; }
  .production-section .product--bottom a.box .img img.product-img-mobi {
    display: block; } }
@media (max-width: 767px) {
  .reviews-section {
    padding-bottom: 40px; }

  .about_section .large_title .box {
    font-size: 38px; }

  .present-section .sec_title {
    padding-top: 64px;
    font-size: 38px; }

  .present-section .sec_title small {
    font-size: 28px; }

  .present-section .sec_title:before {
    width: 250px;
    height: 250px; }

  .reviews-section .sec_title:before {
    width: 244px;
    height: 244px; }

  .reviews-section .sec_title {
    font-size: 38px;
    width: 244px;
    height: 244px;
    margin-top: -20px;
    padding-top: 65px;
    margin-bottom: 100px; }

  .reviews-section .sec_title .girl {
    top: 50%; }

  .promo-section .promo.owl-carousel .owl-nav {
    display: none; }

  .promo-section .large_title .box {
    margin-top: -20px;
    font-size: 37px; }

  .reviews-section .reviews__item .text .date {
    font-size: 14px; }

  .reviews-section .reviews__item .top-part .img {
    margin-right: 25px;
    width: 107px;
    height: 107px; }

  .reviews-section .reviews__item .top-part .name {
    font-size: 18px; }

  .reviews-section .reviews__item .text {
    padding-left: 0;
    font-size: 14px;
    padding-top: 60px; }
    .reviews-section .reviews__item .text:before {
      width: 64px;
      height: 53px; }

  .about_section .history.owl-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    margin-right: 13px; }

  .about_section .history.owl-carousel .owl-dots .owl-dot:before {
    width: 8px;
    height: 8px; }

  .reviews-section .reviews .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    margin-right: 8px; }

  .reviews-section .reviews .owl-dots .owl-dot:before {
    width: 8px;
    height: 8px; }

  .promo-section .promo.owl-carousel .item .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    margin-right: 8px; }
    .promo-section .promo.owl-carousel .item .owl-dots .owl-dot:before {
      width: 8px;
      height: 8px; }

  .promo-section .promo.owl-carousel .item .owl-dots .owl-dot.active {
    border: 1px solid #ee8c1e; }

  .about_section .history.owl-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    margin-right: 8px; }

  .about_section .history.owl-carousel .owl-dots .owl-dot.active {
    border: 1px solid #ee8c1e; }

  .reviews-section .reviews .owl-dots .owl-dot.active {
    border: 1px solid #ee8c1e; }

  .reviews-section .reviews__item .text .btn {
    margin-top: 20px;
    padding: 8px 20px;
    font-size: 14px; }

  .about_section .history__item {
    padding-left: 25px;
    padding-right: 25px; }

  .about_section .history.owl-carousel .owl-item .history__item {
    position: relative;
    padding-top: 70px;
    min-height: 100px;
    z-index: 0; }

  .about_section .history__item .year {
    font-size: 32px;
    margin-bottom: 24px; }

  .about_section .history__item .title_t {
    font-size: 18px;
    margin-bottom: 30px; }

  .about_section .history__item p {
    font-size: 14px; }

  .reviews-section .reviews__item {
    padding-left: 10px;
    padding-right: 10px; }

  .about_section .history.owl-carousel .owl-item .history__item:before {
    width: 210px;
    height: 210px;
    transform: translateX(-50%);
    opacity: 0; }

  .about_section .history.owl-carousel .owl-item.active .history__item:before {
    opacity: 1; }

  .founder-section .chronology li:not(:last-child):after {
    left: 19px;
    height: calc(100% - 22px);
    width: 2px;
    top: 22px; }

  .about_section .history.owl-carousel .owl-item .history__item:after {
    width: 210px;
    height: 210px;
    transform: translateX(-50%); }

  .about_section .history.owl-carousel .owl-item:before {
    left: 105px;
    top: 90px;
    transform: translateX(0);
    width: 0;
    transition: width 6s linear; }

  .about_section .history.owl-carousel .owl-item.active:before {
    width: calc(100% - 105px); }

  .founder-section .chronology li .dot:before {
    width: 8px;
    height: 8px; }

  .promo-section .large_title .box span.space {
    width: 18px; }

  .map-container {
    width: 100%; }

  .contacts-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    z-index: 0; }
    .contacts-section .container {
      padding: 350px 0 30px; }
      .contacts-section .container .sec_title {
        top: 0;
        left: 0;
        width: 100%;
        padding-top: 40px;
        margin: 0;
        text-align: center;
        position: absolute;
        z-index: 11;
        font-weight: 600; }
    .contacts-section .contacts {
      position: relative;
      z-index: 10;
      margin-left: 40px;
      margin-right: 40px;
      padding: 25px 30px; }
      .contacts-section .contacts:before {
        background: #003a86;
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: .7; }

  .contacts-section .contacts__item {
    font-size: 14px;
    margin-bottom: 20px; }

  .contacts-section .contacts .social-links ul li a.social {
    width: 40px;
    height: 40px; }

  .promo-section .promo.owl-carousel .item .box .text .title_t {
    margin-bottom: 20px;
    font-size: 18px; }

  .promo-section .promo.owl-carousel .item .box .text p {
    font-size: 14px; }

  .reviews-section .reviews__item .text p {
    font-size: 14px; }

  .site-footer .footer-links ul li a {
    font-size: 16px;
    padding: 6px 0;
    border-bottom: 1px dashed #707172;
    display: inline;
    line-height: 1.5; }

  .site-footer .copyright {
    font-size: 16px; }

  .site-header .container .box .enter a {
    padding: 0 20px; }

  .site-header .container .box .lang .current {
    padding: 0 30px 0 20px; }

  .site-header .container .box .lang .current:after {
    right: 15px; }

  .about_section .history.owl-carousel .owl-item {
    padding-right: 0; }

  .site-header .container .box {
    transform: translateX(50%);
    right: 50%; }

  .large_title_promo .box {
    margin-top: -80px;
    font-size: 60px; }

  .large_title_promo .box span.space {
    width: 130px; }

  .contacts-section .contacts__item .title_t {
    margin-bottom: 15px; }

  .contacts-section .contacts__item:not(:last-child) {
    margin-bottom: 30px; }

  .large_title_promo img.main-img {
    display: none; }

  .large_title_promo img.main-img--mob {
    display: block; }

  .large_title_promo:before {
    z-index: -2;
    content: '';
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/promo_bg_mobile.png) no-repeat 50% 0/100% auto; }

  .contacts-section .contacts {
    text-align: center; }

  .contacts-section .contacts .box {
    display: inline-flex;
    flex-direction: column;
    text-align: left; } }
@media (max-width: 600px) {
  .large_title_promo .box span.space {
    width: 100px; }

  .large_title_promo .box {
    font-size: 41px; } }
@media (max-width: 500px) {
  .large_title_promo .box span.space {
    width: 83px; }

  .large_title_promo .box {
    font-size: 41px;
    margin-top: -56px; }

  .about_section .large_title .box {
    font-size: 34px; } }
@media (max-width: 375px) {
  .large_title_promo .box {
    font-size: 32px; }

  .large_title_promo .box span.space {
    width: 50px; } }
.position-static {
  position: static !important; }

