@charset "UTF-8";
html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "Poppins", sans-serif;
  color: #1c2130;
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  background: #fff;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #1c2130;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 1464px;
  margin: 0 auto;
  padding: 0 40px;
}

h1 {
  font-weight: 500;
  font-size: 60px;
  line-height: 130%;
}

h2 {
  font-weight: 500;
  font-size: 50px;
  line-height: 130%;
}
h2.big {
  font-weight: 500;
  font-size: 60px;
  line-height: 130%;
}

h3 {
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
}

h5 {
  font-weight: 500;
  font-size: 25px;
  line-height: 130%;
}

h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
}

p.sm {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}

.main {
  overflow: hidden;
  padding-top: 118px;
}

.anchor {
  position: relative;
  top: -118px;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #53b486;
  color: #f7ede3;
  border-radius: 100px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  padding: 17px 39px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  opacity: 1;
  background-color: #006930;
}
.button.sm {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  padding: 10px 18px;
}

.textBtn {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  text-decoration: underline;
  color: #53b486;
  padding: 13px 28px 13px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.textBtn:hover {
  opacity: 1;
  color: #006930;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input input,
.input textarea {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  color: #f7ede3;
  border-bottom: 1px solid #f7ede3;
  background-color: transparent;
  resize: unset;
  padding: 20px 0;
}
.input input::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder {
  color: #f7ede3;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
.input input::-moz-placeholder, .input textarea::-moz-placeholder {
  color: #f7ede3;
  -moz-transition: 0.1s ease;
  transition: 0.1s ease;
}
.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder {
  color: #f7ede3;
  -ms-transition: 0.1s ease;
  transition: 0.1s ease;
}
.input input::-ms-input-placeholder, .input textarea::-ms-input-placeholder {
  color: #f7ede3;
  -ms-transition: 0.1s ease;
  transition: 0.1s ease;
}
.input input::placeholder,
.input textarea::placeholder {
  color: #f7ede3;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
.input input:focus::-webkit-input-placeholder, .input textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.input input:focus::-moz-placeholder, .input textarea:focus::-moz-placeholder {
  opacity: 0;
}
.input input:focus:-ms-input-placeholder, .input textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.input input:focus::-ms-input-placeholder, .input textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.input input:focus::placeholder,
.input textarea:focus::placeholder {
  opacity: 0;
}

.cookies {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.1);
  padding: 25px 0 40px;
  z-index: 12;
}
.cookies__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cookies__inner-content {
  width: calc(56% - 15px);
  max-width: 810px;
}
.cookies__inner-content p {
  font-family: "Inter", sans-serif;
}
.cookies__inner-content p a {
  text-decoration: underline;
}
.cookies__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(44% - 15px);
  max-width: 470px;
}
.cookies__inner h6 {
  margin-bottom: 20px;
}
.cookies__inner .button {
  width: calc(50% - 4px);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  pointer-events: none;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}
.headerTop {
  background-color: #f7ede3;
  position: relative;
  z-index: 1;
}
.headerTop__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headerTop__inner a {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #1c2130;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.5;
  margin-right: 20px;
  padding-right: 30px;
}
.headerTop__inner a:last-child {
  margin: 0;
}
.headerTop__inner a:hover {
  opacity: 1;
}
.headerTop__inner a span {
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 8px;
}
.headerTop__inner a span svg {
  width: 100%;
  height: 100%;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-logo {
  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;
  width: 82px;
}
.header__inner-logo img {
  width: 100%;
}

@-webkit-keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.nav {
  width: calc(100% - 112px);
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
}
.nav__inner-links li {
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav__inner-links li a {
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
  height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 16px 10px;
  position: relative;
}
.nav__inner-links li a.active:hover {
  opacity: 1;
}
.nav__inner-links li a.active:hover::before {
  background-color: #f7ede3;
  max-height: 100%;
}
.nav__inner-links li a.active::before {
  background-color: #1d82d8;
  max-height: 5px;
  opacity: 1;
}
.nav__inner-links li a:hover {
  opacity: 1;
}
.nav__inner-links li a:hover::before {
  max-height: 100%;
  opacity: 1;
}
.nav__inner-links li a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 0;
  opacity: 0;
  content: "";
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  background-color: #f7ede3;
}
.nav__inner-links li a span {
  position: relative;
}
.navFoot {
  display: none;
}

.burger {
  display: none;
}

.footer {
  background-color: #1c2130;
  color: #f7ede3;
}
.footer__inner {
  padding: 116px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__inner-title {
  width: calc(50% - 15px);
  max-width: 682px;
}
.footer__inner-row {
  width: calc(50% - 15px);
  max-width: 682px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__inner-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 260px;
  width: calc(50% - 10px);
}
.footer__inner-col h6 {
  text-decoration: underline;
  font-weight: 500;
  margin-bottom: 8px;
}
.footer__inner-col p {
  margin-bottom: 30px;
}
.footer__inner-col p:last-child {
  margin: 0;
}
.footer__inner-col p a {
  color: #f7ede3;
}
.footer__inner-col p a:hover {
  opacity: 1;
  color: #fff;
}
.footer__inner h2 {
  margin-bottom: 70px;
}

.copy {
  padding: 34px 0;
  border-top: 1px solid #fff;
}
.copy__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.copy__inner-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.copy__inner-info p {
  font-weight: 500;
}
.copy__inner-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}
.copy__inner-social a {
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 16px;
  color: #fff;
}
.copy__inner-social a:hover {
  opacity: 1;
  color: #53b486;
}
.copy__inner-social a:last-child {
  margin: 0;
}
.copy__inner-social a svg {
  width: 100%;
  height: 100%;
}
.copy__inner-logo {
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.copy__inner-logo img {
  width: 100%;
}

.intro {
  padding-top: 75px;
  position: relative;
  z-index: 2;
}
.intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.introContent {
  width: calc(48% - 15px);
  max-width: 682px;
  color: #002E76;
  padding-top: 20px;
}
.introContent h5 {
  margin-bottom: 30px;
}
.introContent h2 {
  margin-bottom: 50px;
}
.introContent h2:last-child {
  margin: 0;
}
.introContent h2 br.mob {
  display: none;
}
.introImage {
  width: calc(52% - 15px);
  max-width: 682px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.introImage__inner {
  width: 100%;
  height: 100%;
  padding-bottom: 94%;
  position: relative;
}
.introImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.article {
  position: relative;
  padding: 88px 0 105px;
}
.article.big {
  padding-bottom: 170px;
}
.article::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 110px);
  content: "";
  background-color: #f7ede3;
  pointer-events: none;
}
.article__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 110px);
  overflow: hidden;
  pointer-events: none;
}
.article__bg-inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.article__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 1260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(3%, -11%);
          transform: translate(3%, -11%);
}
.article__shape img {
  width: 100%;
}
.article .auto__container {
  max-width: 1180px;
}
.article__inner-content {
  max-width: 822px;
}
.article__inner h3 {
  margin-bottom: 40px;
}
.article__inner p {
  margin-bottom: 40px;
}
.article__inner p:last-child {
  margin: 0;
}

.mission {
  padding: 90px 0 130px;
}
.mission__inner-title {
  text-align: center;
  max-width: 822px;
  margin: 0 auto 75px;
}
.mission__inner-top {
  margin-bottom: 75px;
  text-align: start;
}
.mission__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mission__inner h2 {
  margin-bottom: 35px;
}
.mission__inner h2:last-child {
  margin: 0;
}
.missionImage {
  width: calc(45% - 15px);
  max-width: 543px;
}
.missionImage__inner {
  width: 100%;
  padding-bottom: 115%;
  position: relative;
  -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  overflow: hidden;
}
.missionImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.missionContent {
  width: calc(55% - 15px);
  max-width: 682px;
  padding-top: 10px;
}
.missionContent b {
  font-weight: 500;
  display: block;
}
.missionContent ul {
  padding-left: 30px;
  margin-bottom: 30px;
}
.missionContent ul:last-child {
  margin: 0;
}
.missionContent ul li {
  list-style: disc;
}
.missionContent p {
  margin-bottom: 30px;
}
.missionContent p:last-child {
  margin: 0;
}

.gallery {
  padding: 80px 0 120px;
  background-color: #f7ede3;
}
.gallery__inner {
  position: relative;
}
.gallery__inner-title {
  margin-bottom: 60px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gallery__inner-slider {
  width: 92%;
  margin: 0 -10px;
  max-width: 1260px;
  position: static !important;
}
.galleryItem {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
}
.galleryItem__inner {
  padding-bottom: 66%;
  position: relative;
}
.galleryItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.gallery .slick-slide {
  height: unset !important;
  margin: 0 10px;
}
.gallery .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.gallery .slick-list {
  overflow: visible !important;
}
.gallery .slick-arrow {
  width: 54px;
  height: 54px;
  position: absolute;
  z-index: 3;
  top: 0;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #1c2130;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: transparent;
}
.gallery .slick-arrow.slick-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.gallery .slick-arrow:hover {
  background: #1c2130;
}
.gallery .slick-arrow:hover::before {
  background: url("../images/icons/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.gallery .slick-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../images/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1 !important;
}
.gallery .slick-prev {
  left: unset;
  right: 68px;
}
.gallery .slick-prev::before {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.gallery .slick-prev::after {
  content: "Prev";
}
.gallery .slick-next {
  right: 0;
}

.hero {
  color: #f7ede3;
  position: relative;
}
.heroItem {
  position: relative;
  background-color: #002E76;
}
.heroItem.dark {
  background-color: #1c2130;
}
.heroItem .auto__container {
  position: static;
  height: 100%;
}
.heroItem__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.heroItem__content {
  width: 50%;
  max-width: 690px;
  padding-right: 75px;
  padding: 80px 75px 70px 0;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.heroItem__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.heroItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.heroItem h1 {
  margin-bottom: 35px;
}
.heroItem p {
  margin-bottom: 85px;
}
.heroItem .button {
  width: 100%;
  max-width: 200px;
  margin: auto 0 0 0;
}
.hero .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.hero .slick-slide {
  height: unset !important;
}
.hero .slick-arrow {
  width: 54px;
  height: 54px;
  position: absolute;
  z-index: 3;
  top: unset;
  bottom: 70px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #f7ede3;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.hero .slick-arrow:hover {
  background: rgba(247, 237, 227, 0.17);
}
.hero .slick-arrow::after {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "Next";
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #f7ede3;
}
.hero .slick-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../images/icons/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hero .slick-prev {
  display: none !important;
  left: 20px;
}
.hero .slick-prev::before {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.hero .slick-prev::after {
  content: "Prev";
}
.hero .slick-next {
  right: calc(50% + 75px);
}
.hero .progressBarContainer {
  position: absolute;
  bottom: 0;
  width: 50%;
  left: 0;
  overflow: hidden;
}
.hero .progressBarItem {
  display: none;
  width: 100%;
  cursor: pointer;
}
.hero .progressBarItem.active {
  display: block;
}
.hero .progressBarContainer div span.progressBar {
  width: 100%;
  height: 5px;
  background-color: transparent;
  display: block;
}
.hero .progressBarContainer div span.progressBar .inProgress {
  background-color: #1D82D8;
  width: 0%;
  height: 100%;
}

.purpose {
  padding: 132px 0 40px;
}
.purpose__inner-content {
  max-width: 822px;
  margin: 0 auto 100px;
}
.purpose__inner-content p {
  max-width: 682px;
}
.purpose__inner-image {
  width: 100%;
  position: relative;
  padding-bottom: 42%;
  min-height: 190px;
}
.purpose__inner-image::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9000px;
  height: calc(50% + 41px);
  content: "";
  background-color: #f7ede3;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}
.purpose__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: 2;
  border-radius: 30px;
  -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
}
.purpose__inner h2 {
  margin-bottom: 35px;
}

.features {
  background-color: #f7ede3;
  position: relative;
  padding: 110px 0;
}
.features__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 110px;
}
.features__inner-row.big {
  margin-bottom: 136px;
}
.features__inner-row:last-child {
  margin: 0;
}
.featuresImage {
  width: calc(55% - 15px);
  max-width: 682px;
  -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  overflow: hidden;
}
.featuresImage__inner {
  width: 100%;
  padding-bottom: 70%;
  position: relative;
}
.featuresImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.featuresContent {
  width: calc(45% - 15px);
  max-width: 542px;
}
.featuresContent p {
  max-width: 485px;
  margin-bottom: 12px;
}
.featuresContent h3 {
  margin-bottom: 30px;
}

.approval {
  padding: 135px 0 100px;
}
.approval.sm {
  padding: 108px 0 90px;
}
.approval .auto__container {
  max-width: 1180px;
}
.approval__inner-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
.approval__inner-top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
  color: #1c2130;
}
.approval__inner-top a:hover {
  opacity: 1;
}
.approval__inner-top a:hover span {
  background-color: #f7ede3;
}
.approval__inner-top a span {
  width: 54px;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 15px;
  border: 1px solid #1c2130;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: transparent;
  border-radius: 50%;
}
.approval__inner-top a span img {
  width: 100%;
}
.approvalContent {
  border-radius: 30px;
  background-color: #f7ede3;
  padding: 28px 32px;
}
.approvalContent__title {
  margin-bottom: 28px;
}
.approvalContent__body {
  padding: 0 12px;
}
.approvalContent__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #fff;
  padding: 30px 0;
}
.approvalContent__row:first-child {
  border-top: 1px solid #fff;
}
.approvalContent__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.approvalContent__info a {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 24px;
  cursor: pointer;
}
.approvalContent__info a:hover {
  opacity: 0.8;
}
.approvalContent__info a img {
  width: 100%;
}
.approvalContent__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 17px;
}
.approvalContent__foot a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1c2130;
}
.approvalContent__foot a:hover {
  opacity: 0.8;
}
.approvalContent__foot a span {
  width: 48px;
  height: 48px;
  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;
  margin-left: 18px;
  border: 1px solid #1c2130;
  background-color: transparent;
  border-radius: 50%;
}
.approvalContent__foot a span img {
  width: 36%;
  max-width: 17px;
}

.about {
  padding: 120px 0 130px;
}
.about__inner-title {
  margin-bottom: 70px;
}
.about__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.about__inner-info {
  width: calc(36% - 20px);
  max-width: 402px;
}
.about__inner-content {
  width: calc(64% - 20px);
  max-width: 822px;
  padding-top: 10px;
}
.aboutImage {
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 113%;
  position: relative;
  -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  overflow: hidden;
}
.aboutImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.strategy {
  padding: 90px 0 120px;
  background-color: #f7ede3;
}
.strategy__inner-title {
  text-align: center;
  max-width: 822px;
  margin: 0 auto 100px;
}
.strategy__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.strategy__inner-col {
  width: calc(50% - 12px);
  max-width: 682px;
}
.strategy__inner-col h5 {
  margin-bottom: 30px;
}
.strategy__inner-col b {
  font-weight: 500;
  display: block;
}
.strategy__inner-col ul {
  padding-left: 30px;
  margin-bottom: 30px;
}
.strategy__inner-col ul:last-child {
  margin: 0;
}
.strategy__inner-col ul li {
  list-style: disc;
}
.strategy__inner-col p {
  margin-bottom: 30px;
}
.strategy__inner-col p:last-child {
  margin: 0;
}
.strategy__inner h2 {
  margin-bottom: 40px;
}

.products {
  padding: 10px 0 130px;
  position: relative;
}
.products::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 110px);
  content: "";
  background-color: #f7ede3;
  pointer-events: none;
}
.products__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}
.products__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 78%;
  max-width: 1260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(12%, 35%);
          transform: translate(12%, 35%);
}
.products__shape img {
  width: 100%;
}
.products__inner-title {
  margin-bottom: 35px;
}
.products__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -11px;
}
.productsItem {
  width: calc(33.3% - 22px);
  margin: 20px 11px;
  border-radius: 20px;
  padding: 32px 44px 36px;
  color: #1c2130;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: default;
}
.productsItem:hover {
  background-color: #1d82d8;
  color: #f7ede3;
}
.productsItem:hover .productsItem__icon {
  color: #f7ede3;
}
.productsItem__icon {
  width: 86px;
  height: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 24px;
  color: #1d82d8;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.productsItem__icon.big {
  width: 93px;
}
.productsItem__icon.med svg {
  width: 85%;
  max-width: 73px;
}
.productsItem__icon.sm svg {
  width: 72%;
  max-width: 62px;
}
.productsItem__icon.ex svg {
  width: 64%;
  max-width: 55px;
}
.productsItem__icon.square svg {
  width: 90%;
  height: 81%;
  max-width: 76px;
}
.productsItem__icon svg {
  width: 100%;
  height: 100%;
}
.productsItem h5 {
  margin-bottom: 20px;
}

.chart {
  padding: 94px 0 150px;
  overflow: hidden;
}
.chart__inner-title {
  margin-bottom: 90px;
}
.chartTable {
  border-collapse: collapse;
}
.chartTable thead tr {
  border-bottom: 1px solid #1c2130;
}
.chartTable tbody tr {
  border-bottom: 1px dashed #1c2130;
}
.chartTable tbody tr:nth-child(odd) {
  background-color: #f7ede3;
}
.chartTable tr td,
.chartTable tr th {
  color: #1c2130;
  font-size: 20px;
  line-height: 150%;
  padding: 25px 5px;
  width: 22%;
}
.chartTable tr td:last-child,
.chartTable tr th:last-child {
  width: 56%;
}
.chartTable tr th {
  font-weight: 500;
  text-align: start;
  white-space: nowrap;
}
.chartTable tr td {
  font-weight: 300;
}

.expertise {
  padding: 110px 0 156px;
  position: relative;
  background-color: #f7ede3;
  overflow: hidden;
}
.expertise__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}
.expertise__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 1260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(8%, -15%);
          transform: translate(8%, -15%);
}
.expertise__shape img {
  width: 100%;
}
.expertise__inner {
  position: relative;
}
.expertise__inner-title {
  max-width: 825px;
  margin-bottom: 50px;
}
.expertise__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.expertise__inner-content {
  width: calc(55% - 15px);
  padding-bottom: 24px;
  max-width: 682px;
}
.expertise__inner p {
  margin-bottom: 30px;
}
.expertise__inner p:last-child {
  margin: 0;
}
.expertise__inner ul {
  padding-left: 30px;
  margin-bottom: 30px;
}
.expertise__inner ul:last-child {
  margin: 0;
}
.expertise__inner ul li {
  list-style: disc;
  font-weight: 500;
}
.expertiseImage {
  width: calc(45% - 15px);
  max-width: 543px;
}
.expertiseImage__inner {
  width: 100%;
  height: 100%;
  padding-bottom: 142%;
  position: relative;
  -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  overflow: hidden;
}
.expertiseImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.contact {
  padding-top: 75px;
  position: relative;
  z-index: 2;
}
.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contactContent {
  width: calc(40% - 10px);
  max-width: 542px;
  color: #002E76;
  padding-top: 20px;
}
.contactContent h5 {
  margin-bottom: 30px;
}
.contactContent h2 {
  margin-bottom: 50px;
}
.contactContent h2:last-child {
  margin: 0;
}
.contactContent p {
  max-width: 502px;
}
.contactForm {
  width: calc(60% - 10px);
  max-width: 822px;
  background-color: #002E76;
  border-radius: 30px;
  -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
  color: #f7ede3;
  padding: 80px 70px 70px;
}
.contactForm__title {
  margin-bottom: 60px;
}
.contactForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
  max-width: 670px;
}
.contactForm__foot {
  max-width: 670px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contactForm__upload {
  width: calc(100% - 170px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.contactForm__upload input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}
.contactForm__upload span {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}
.contactForm__upload span img {
  width: 100%;
}
.contactForm__upload p {
  width: calc(100% - 40px);
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contactForm .input {
  width: calc(50% - 10px);
  max-width: 320px;
  margin-bottom: 40px;
}
.contactForm .input.big {
  width: 100%;
  max-width: unset;
}
.contactForm .input:last-child {
  margin: 0;
}

.office {
  position: relative;
  padding: 150px 0 170px;
}
.office::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 110px);
  content: "";
  background-color: #f7ede3;
  pointer-events: none;
}
.office__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.officeMap {
  width: calc(55% - 15px);
  max-width: 682px;
  -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  overflow: hidden;
}
.officeMap__inner {
  width: 100%;
  padding-bottom: 72%;
  position: relative;
}
.officeMap__inner > img,
.officeMap__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.officeMap__inner iframe {
  z-index: 2;
}
.officeMap span {
  position: absolute;
  top: 48%;
  left: 39%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 82px;
}
.officeMap span img {
  width: 100%;
}
.officeContent {
  width: calc(45% - 15px);
  max-width: 542px;
}
.officeContent__title {
  margin-bottom: 35px;
}
.officeContent h3 {
  margin-bottom: 35px;
}
.officeContent ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 28px;
}
.officeContent ul li:last-child {
  margin: 0;
}
.officeContent ul li span {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 16px;
}
.officeContent ul li span img {
  width: 100%;
}
.officeContent ul li p {
  width: calc(100% - 40px);
}
.officeContent ul li p br.mob {
  display: none;
}

@media (max-width: 1500px) {
  .auto__container {
    max-width: 1300px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 45px;
  }
  h2.big {
    font-size: 50px;
  }

  .purpose {
    padding: 100px 0 40px;
  }
  .purpose__inner-content {
    margin-bottom: 70px;
  }
  .purpose__inner h2 {
    margin-bottom: 24px;
  }

  .features {
    padding: 80px 0;
  }
  .features__inner-row {
    margin-bottom: 80px;
  }
  .features__inner-row.big {
    margin-bottom: 90px;
  }
  .featuresImage {
    max-width: 610px;
  }
}
@media (max-width: 1380px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 40px;
  }
  h2.big {
    font-size: 45px;
  }

  h3 {
    font-size: 35px;
  }

  .heroItem__content {
    padding: 55px 50px 55px 0;
  }
  .heroItem h1 {
    margin-bottom: 22px;
  }
  .heroItem p {
    margin-bottom: 60px;
  }
  .hero .slick-arrow {
    bottom: 55px;
  }
  .hero .slick-next {
    right: calc(50% + 50px);
  }

  .approval {
    padding: 90px 0;
  }
  .approval.sm {
    padding: 90px 0;
  }
  .approval__inner-top {
    margin-bottom: 40px;
  }

  .article {
    padding: 70px 0 80px;
  }
  .article.big {
    padding-bottom: 110px;
  }

  .about {
    padding: 90px 0;
  }

  .strategy {
    padding: 70px 0 90px;
  }
  .strategy__inner-title {
    margin-bottom: 70px;
  }
  .strategy__inner h2 {
    margin-bottom: 30px;
  }

  .mission {
    padding: 80px 0 100px;
  }
  .mission__inner-title {
    margin-bottom: 60px;
  }

  .products {
    padding: 20px 0 90px;
  }

  .chart {
    padding: 80px 0 100px;
  }
  .chart__inner-title {
    margin-bottom: 60px;
  }

  .expertise {
    padding: 90px 0 110px;
  }

  .office {
    padding: 110px 0 130px;
  }

  .gallery {
    padding: 70px 0 100px;
  }

  .footer__inner {
    padding: 90px 0 50px;
  }
}
@media (max-width: 1180px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 35px;
  }
  h2.big {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  p.sm {
    font-size: 14px;
  }

  body {
    font-size: 18px;
  }

  .textBtn {
    font-size: 18px;
  }

  .button {
    font-size: 18px;
    padding: 13px 28px;
  }

  .input input,
.input textarea {
    font-size: 18px;
  }

  .cookies {
    padding: 20px 0;
  }
  .cookies__inner {
    -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;
  }
  .cookies__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 14px;
  }
  .cookies__inner-buttons {
    width: 100%;
  }
  .cookies__inner h6 {
    margin-bottom: 12px;
  }

  .headerTop__inner a {
    padding-right: 15px;
  }

  .hero .slick-arrow {
    width: 44px;
    height: 44px;
  }

  .purpose {
    padding: 60px 0 30px;
  }
  .purpose__inner-content {
    margin-bottom: 40px;
  }
  .purpose__inner-image img {
    border-radius: 20px;
  }

  .features {
    padding: 60px 0;
  }
  .features__inner-row {
    margin-bottom: 60px;
  }
  .features__inner-row.big {
    margin-bottom: 60px;
  }
  .featuresImage {
    border-radius: 20px;
  }
  .featuresContent h3 {
    margin-bottom: 20px;
  }
  .featuresContent p {
    margin-bottom: 5px;
  }

  .approval {
    padding: 60px 0;
  }
  .approval.sm {
    padding: 60px 0;
  }
  .approvalContent {
    padding: 20px 24px;
    border-radius: 20px;
  }
  .approvalContent__body {
    padding: 0;
  }
  .approvalContent__title {
    margin-bottom: 20px;
  }
  .approvalContent__row {
    padding: 25px 0;
  }
  .approvalContent__info a {
    margin-left: 14px;
  }

  .intro {
    padding-top: 50px;
  }
  .introImage {
    border-radius: 20px;
  }
  .introContent h5 {
    margin-bottom: 22px;
  }
  .introContent h2 {
    margin-bottom: 30px;
  }

  .article {
    padding: 56px 0;
  }
  .article::before {
    height: calc(100% + 80px);
  }
  .article.big {
    padding-bottom: 70px;
  }
  .article__inner h3 {
    margin-bottom: 24px;
  }
  .article__inner p {
    margin-bottom: 30px;
  }

  .about {
    padding: 70px 0;
  }
  .about__inner-title {
    margin-bottom: 50px;
  }
  .aboutImage {
    border-radius: 20px;
  }

  .strategy {
    padding: 60px 0 70px;
  }
  .strategy__inner-title {
    margin-bottom: 50px;
  }
  .strategy__inner h2 {
    margin-bottom: 24px;
  }

  .mission {
    padding: 60px 0 70px;
  }
  .mission__inner-title {
    margin-bottom: 40px;
  }
  .mission__inner-top {
    margin-bottom: 60px;
  }
  .mission__inner h2 {
    margin-bottom: 24px;
  }
  .missionContent {
    font-size: 16px;
    line-height: 150%;
  }
  .missionContent p {
    margin-bottom: 20px;
  }
  .missionContent ul {
    margin-bottom: 20px;
  }
  .missionImage__inner {
    border-radius: 20px;
  }

  .products {
    padding: 36px 0 70px;
  }
  .products::before {
    height: calc(100% + 80px);
  }
  .products__inner-row {
    margin: 0 -8px;
  }
  .products__inner-title {
    margin-bottom: 20px;
  }
  .productsItem {
    padding: 24px;
    width: calc(33.3% - 16px);
    margin: 16px 8px;
  }
  .productsItem__icon {
    width: 70px;
    height: 70px;
  }
  .productsItem__icon.big {
    width: 80px;
  }

  .chart {
    padding: 60px 0 70px;
  }
  .chart__inner-title {
    margin-bottom: 40px;
  }
  .chartTable tr td,
.chartTable tr th {
    font-size: 16px;
    line-height: 150%;
    padding: 16px 5px;
  }

  .expertise {
    padding: 70px 0 90px;
  }
  .expertise__inner {
    font-size: 16px;
    line-height: 150%;
  }
  .expertise__inner-title {
    margin-bottom: 35px;
  }
  .expertise__inner-row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .expertise__inner p {
    margin-bottom: 20px;
  }
  .expertise__inner ul {
    margin-bottom: 20px;
    padding-left: 22px;
  }
  .expertiseImage__inner {
    border-radius: 20px;
  }

  .contact {
    padding-top: 50px;
  }
  .contactContent h2 {
    margin-bottom: 35px;
  }
  .contactContent h5 {
    margin-bottom: 22px;
  }
  .contactForm {
    padding: 50px 40px 40px;
    border-radius: 20px;
  }
  .contactForm__title {
    margin-bottom: 40px;
  }
  .contactForm__upload {
    width: calc(100% - 140px);
  }
  .contactForm .input {
    margin-bottom: 24px;
  }

  .office {
    padding: 70px 0 80px;
  }
  .office::before {
    height: calc(100% + 80px);
  }
  .officeContent__title {
    margin-bottom: 24px;
  }
  .officeContent h3 {
    margin-bottom: 20px;
  }
  .officeContent ul li {
    margin-bottom: 18px;
  }
  .officeMap {
    border-radius: 20px;
  }

  .gallery {
    padding: 50px 0 70px;
  }
  .gallery__inner-title {
    margin-bottom: 40px;
  }

  .footer__inner {
    padding: 60px 0 40px;
  }
  .footer__inner-row {
    width: calc(55% - 12px);
  }
  .footer__inner-title {
    width: calc(45% - 12px);
  }

  .copy {
    padding: 24px 0;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 30px;
  }
  h2.big {
    font-size: 35px;
  }

  .header__inner {
    height: 73px;
  }

  body.active {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: 118px;
    left: 0;
    width: 100%;
    height: calc(100% - 118px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .nav.active {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    z-index: 1;
    padding: 50px 40px 70px 40px;
    height: 100%;
    overflow-y: auto;
    background: #002E76;
    color: #f7ede3;
  }
  .nav__inner-links {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 94px;
    padding: 0;
  }
  .nav__inner-links li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 0 30px 0;
  }
  .nav__inner-links li:last-child {
    margin: 0;
  }
  .nav__inner-links li a {
    width: unset;
    color: #f7ede3;
    font-weight: 500;
    font-size: 30px;
    line-height: 130%;
    height: unset;
    padding: 0;
  }
  .nav__inner-links li a:hover::before {
    opacity: 1;
  }
  .nav__inner-links li a::before {
    height: 2px !important;
    max-height: unset;
    opacity: 0;
    background-color: #1d82d8 !important;
  }
  .nav__inner-buttons {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 30px;
  }
  .navFoot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 24px;
    position: relative;
    width: 100%;
    margin: auto 0 0 0;
  }
  .navFoot::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% + 80px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 1px;
    background-color: #fff;
    content: "";
  }
  .navFoot__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .navFoot__info p {
    color: #fff;
  }
  .navFoot__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  .navFoot__social a {
    width: 26px;
    height: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 16px;
    color: #fff;
  }
  .navFoot__social a:hover {
    opacity: 1;
    color: #53b486;
  }
  .navFoot__social a:last-child {
    margin: 0;
  }
  .navFoot__social a svg {
    width: 100%;
    height: 100%;
  }
  .navFoot__logo {
    width: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navFoot__logo img {
    width: 100%;
  }

  .burger {
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 34px;
    height: 34px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 22%;
    width: 77%;
    height: 2px;
    background-color: #1c2130;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger span {
    top: 50%;
    width: 77%;
    height: 2px;
    background-color: #1c2130;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .burger::after {
    bottom: 22%;
    width: 77%;
    height: 2px;
    background-color: #1c2130;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .heroItem__content {
    padding: 44px 40px 44px 0;
  }
  .hero .slick-arrow {
    bottom: 44px;
  }
  .hero .slick-next {
    right: calc(50% + 40px);
  }
}
@media (max-width: 930px) {
  h3 {
    font-size: 25px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  body {
    font-size: 16px;
  }

  .textBtn {
    font-size: 15px;
  }

  .button {
    font-size: 15px;
    padding: 10px 20px;
  }

  .input input,
.input textarea {
    font-size: 16px;
    padding: 16px 0;
  }

  .heroItem__content {
    padding: 35px 30px 35px 0;
  }
  .heroItem p {
    margin-bottom: 35px;
  }
  .heroItem h1 {
    margin-bottom: 16px;
  }
  .heroItem .button {
    width: unset;
  }
  .hero .slick-arrow {
    bottom: 35px;
    width: 35px;
    height: 35px;
  }
  .hero .slick-next {
    right: calc(50% + 30px);
  }

  .features {
    padding: 45px 0 54px;
  }
  .featuresImage {
    width: calc(54% - 10px);
  }
  .featuresContent {
    width: calc(46% - 10px);
  }
  .featuresContent h3 {
    margin-bottom: 12px;
  }
  .featuresContent p {
    margin-bottom: 5px;
  }

  .approval {
    padding: 50px 0 44px;
  }
  .approval.sm {
    padding: 44px 0;
  }
  .approval__inner-top {
    margin-bottom: 30px;
  }
  .approval__inner-top a span {
    width: 42px;
    height: 42px;
  }
  .approvalContent__info p {
    display: none;
  }
  .approvalContent__info a {
    margin: 0;
  }
  .approvalContent__row {
    padding: 18px 0;
  }
  .approvalContent__foot a span {
    width: 42px;
    height: 42px;
    margin-left: 15px;
  }

  .intro {
    padding-top: 40px;
  }
  .introContent {
    padding: 0;
    width: calc(45% - 12px);
  }
  .introContent h5 {
    margin-bottom: 16px;
  }
  .introContent h2 {
    font-size: 30px;
  }
  .introImage {
    width: calc(55% - 12px);
  }

  .article.big {
    padding-bottom: 60px;
  }
  .article::before {
    height: calc(100% + 60px);
  }

  .about {
    padding: 60px 0;
  }
  .about__inner-title {
    margin-bottom: 40px;
  }
  .about__inner-info {
    width: calc(35% - 10px);
  }
  .about__inner-content {
    width: calc(65% - 10px);
  }
  .aboutImage {
    margin-bottom: 35px;
  }

  .strategy {
    padding: 50px 0 60px;
  }
  .strategy__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .strategy__inner-col {
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
  }
  .strategy__inner-col:last-child {
    margin: 0;
  }
  .strategy__inner-col h5 {
    margin-bottom: 22px;
  }
  .strategy__inner-col ul {
    margin-bottom: 22px;
  }

  .mission {
    padding: 50px 0;
  }
  .mission.uniq .missionContent {
    font-size: 12px;
  }
  .mission.uniq .missionContent ul {
    padding-left: 18px;
  }
  .mission.uniq .missionContent ul li::marker {
    font-size: 11px;
  }
  .mission__inner-title {
    margin-bottom: 30px;
  }
  .mission__inner-top {
    margin-bottom: 40px;
  }
  .mission__inner h2 {
    margin-bottom: 16px;
  }
  .missionContent {
    font-size: 14px;
    width: calc(56% - 10px);
  }
  .missionImage {
    width: calc(44% - 10px);
  }

  .products::before {
    height: calc(100% + 60px);
  }
  .productsItem {
    width: calc(50% - 16px);
  }

  .products::before {
    height: calc(100% + 60px);
  }
  .productsItem {
    width: calc(50% - 16px);
  }

  .chartTable tr td,
.chartTable tr th {
    font-size: 14px;
    padding: 12px 5px;
  }

  .expertise {
    padding: 60px 0;
  }
  .expertise__inner {
    font-size: 14px;
  }
  .expertise__inner-title {
    margin-bottom: 28px;
  }

  .contact {
    padding-top: 40px;
  }
  .contactContent h5 {
    margin-bottom: 16px;
  }
  .contactForm {
    padding: 35px 24px 30px;
  }
  .contactForm__title {
    margin-bottom: 24px;
  }
  .contactForm__upload {
    width: calc(100% - 110px);
  }
  .contactForm .input {
    margin-bottom: 16px;
  }

  .office {
    padding: 58px 0;
  }
  .office::before {
    height: calc(100% + 60px);
  }
  .officeContent {
    width: calc(47% - 10px);
    font-size: 14px;
    line-height: 150%;
  }
  .officeContent__title {
    margin-bottom: 18px;
  }
  .officeContent h3 {
    margin-bottom: 12px;
  }
  .officeContent ul li span {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .officeContent ul li p {
    width: calc(100% - 30px);
  }
  .officeMap {
    width: calc(53% - 10px);
  }

  .gallery__inner-title {
    height: 40px;
    margin-bottom: 30px;
  }
  .gallery .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .gallery .slick-prev {
    right: 52px;
  }

  .footer__inner-col {
    font-size: 14px;
  }
  .footer__inner-col h6 {
    font-size: 14px;
  }
  .footer__inner-col p {
    margin-bottom: 20px;
  }
  .footer__inner h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .textBtn {
    font-size: 15px;
    padding: 20px 20px 20px 0;
  }

  .hero {
    position: relative;
  }
  .heroItem {
    opacity: 1 !important;
  }
  .heroItem .auto__container {
    padding: 0;
  }
  .heroItem__inner {
    -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;
  }
  .heroItem__image {
    width: 100%;
    height: 600px;
    position: relative;
    top: unset;
    bottom: 0;
  }
  .heroItem__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
  }
  .heroItem__content {
    width: 100%;
    height: calc(100% - 600px);
    max-width: unset;
    padding: 35px 40px;
  }
  .hero .slick-arrow {
    bottom: 635px;
  }
  .hero .slick-next {
    right: 40px;
  }
  .hero .progressBarContainer {
    bottom: 600px;
    width: 100%;
  }

  .purpose {
    padding: 50px 0 20px;
  }
  .purpose__inner-content {
    margin-bottom: 26px;
  }
  .purpose__inner-content p br {
    display: none;
  }
  .purpose__inner-image img {
    border-radius: 15px;
  }

  .features {
    padding: 30px 0 54px;
  }
  .features__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 45px;
  }
  .featuresImage {
    width: 100%;
    max-width: unset;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    border-radius: 15px;
  }
  .featuresContent {
    width: 100%;
    max-width: unset;
    margin-bottom: 24px;
  }
  .featuresContent h3 {
    margin-bottom: 24px;
  }
  .featuresContent p {
    margin-bottom: 5px;
  }
  .features .textBtn {
    width: 100%;
    max-width: 200px;
  }

  .approval__inner {
    padding-bottom: 64px;
    position: relative;
  }
  .approval__inner-top a {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .approvalContent {
    border-radius: 15px;
  }
  .approvalContent__row p {
    width: calc(100% - 35px);
  }

  .intro {
    padding-top: 28px;
  }
  .intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .introContent {
    width: 100%;
    max-width: unset;
    margin-bottom: 44px;
  }
  .introImage {
    width: 100%;
    max-width: unset;
    border-radius: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    position: relative;
    overflow: visible;
  }
  .introImage::before {
    position: absolute;
    bottom: -1px;
    left: 50%;
    height: 50%;
    width: calc(100% + 100px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: "";
    background-color: #f7ede3;
  }
  .introImage__inner {
    border-radius: 15px;
    -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }

  .article {
    padding: 46px 0;
  }
  .article.big {
    padding-bottom: 46px;
  }
  .article::before {
    height: 100%;
  }
  .article__bg {
    display: none;
  }

  .about {
    padding: 55px 0 44px;
  }
  .about__inner-title {
    margin-bottom: 35px;
  }
  .about__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__inner-info {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .about__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 50px;
    padding: 0;
  }
  .aboutImage {
    border-radius: 15px;
  }

  .strategy__inner-title {
    text-align: start;
  }

  .mission {
    padding: 45px 0;
  }
  .mission.uniq .mission__inner {
    position: relative;
    padding-top: calc(115% + 45px);
  }
  .mission.uniq .missionImage {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
  .mission__inner-title {
    margin-bottom: 35px;
    text-align: start;
  }
  .mission__inner-top {
    margin-bottom: 30px;
  }
  .mission__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mission__inner h2 {
    margin-bottom: 24px;
  }
  .mission__inner h2.big {
    font-size: 25px;
  }
  .missionImage {
    width: 100%;
    max-width: unset;
    margin-bottom: 56px;
  }
  .missionContent {
    width: 100%;
    max-width: unset;
    font-size: 16px;
    padding: 0;
  }

  .products {
    padding: 50px 0 84px;
  }
  .products__bg {
    display: none;
  }
  .products::before {
    height: 100%;
  }
  .products__inner-title {
    margin-bottom: 30px;
  }
  .products__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .productsItem {
    width: 100%;
    margin: 0 0 30px 0;
    padding: 24px 30px 38px;
  }
  .productsItem:last-child {
    margin: 0;
  }

  .chart {
    padding: 44px 0 60px;
  }
  .chart__inner-title {
    margin-bottom: 32px;
  }

  .expertise {
    padding: 46px 0;
  }
  .expertise__bg {
    display: none;
  }
  .expertise__inner {
    font-size: 16px;
  }
  .expertise__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .expertise__inner-content {
    width: 100%;
    max-width: unset;
    padding: 0;
  }
  .expertise__inner ul li {
    font-weight: 300;
  }
  .expertise__inner ul li::marker {
    font-weight: 300;
    font-size: 14px;
  }
  .expertiseImage {
    width: 100%;
    max-width: unset;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 56px;
  }
  .expertiseImage__inner {
    border-radius: 15px;
  }

  .contact {
    padding-top: 28px;
  }
  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contactContent {
    width: 100%;
    max-width: unset;
    margin-bottom: 50px;
    padding: 0;
  }
  .contactForm {
    width: 100%;
    max-width: unset;
    padding: 40px;
    border-radius: 15px;
  }

  .office::before {
    display: none;
  }
  .office__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .officeMap {
    width: 100%;
    max-width: unset;
    border-radius: 15px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .officeContent {
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
    font-size: 16px;
  }
  .officeContent__title {
    margin-bottom: 24px;
  }
  .officeContent h3 {
    margin-bottom: 26px;
  }
  .officeContent ul li {
    margin-bottom: 22px;
  }
  .officeContent ul li span {
    width: 24px;
    height: 24px;
    margin-right: 16px;
  }
  .officeContent ul li p {
    width: calc(100% - 40px);
  }
  .officeContent ul li p br.mob {
    display: block;
  }

  .gallery {
    padding: 40px 0 50px;
  }
  .gallery__inner-title {
    height: 35px;
    margin-bottom: 24px;
  }
  .gallery .slick-arrow {
    width: 35px;
    height: 35px;
  }
  .gallery .slick-prev {
    right: 42px;
  }

  .footer__inner {
    padding: 36px 0 48px;
  }
  .footer__inner-title {
    width: 100%;
  }
  .footer__inner-row {
    display: none;
  }
  .footer__inner h2 {
    margin-bottom: 35px;
  }
}
@media (max-width: 650px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }
  h2.big {
    font-size: 30px;
  }

  .heroItem__image {
    height: 440px;
  }
  .heroItem__content {
    height: calc(100% - 440px);
  }
  .hero .slick-arrow {
    bottom: 475px;
  }
  .hero .progressBarContainer {
    bottom: 440px;
  }
}
@media (max-width: 540px) {
  .input input,
.input textarea {
    font-size: 12px;
    padding: 16px 0;
  }

  .cookies__inner-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookies__inner .button {
    margin-bottom: 10px;
    width: 100%;
  }
  .cookies__inner .button:last-child {
    margin: 0;
  }
  .cookies__inner h6 {
    margin-bottom: 6px;
  }
  .cookies__inner p {
    font-size: 12px;
  }

  .heroItem__image {
    height: 338px;
  }
  .heroItem__content {
    height: calc(100% - 338px);
    padding: 20px 40px 30px;
  }
  .heroItem h1 {
    margin-bottom: 12px;
  }
  .heroItem p {
    margin-bottom: 28px;
  }
  .hero .slick-arrow {
    bottom: 368px;
  }
  .hero .progressBarContainer {
    bottom: 338px;
    height: 3px;
  }
  .hero .progressBarContainer div span.progressBar {
    height: 3px;
  }

  .approval {
    padding: 45px 0 34px;
  }
  .approval.sm {
    padding: 36px 0 28px;
  }
  .approval.sm .approval__inner {
    padding: 0;
  }
  .approval__inner {
    padding-bottom: 52px;
  }
  .approval__inner-top {
    padding-left: 15px;
    margin-bottom: 24px;
  }
  .approval__inner-top a {
    font-size: 12px;
  }
  .approval__inner-top a span {
    width: 35px;
    height: 35px;
  }
  .approvalContent {
    padding: 15px;
  }
  .approvalContent__title {
    margin-bottom: 10px;
  }
  .approvalContent__row {
    padding: 8px 0;
    min-height: 52px;
  }
  .approvalContent__row p {
    font-size: 12px;
    line-height: 150%;
  }
  .approvalContent__info a {
    width: 18px;
    height: 18px;
  }
  .approvalContent__foot {
    padding-top: 12px;
  }
  .approvalContent__foot a p {
    font-size: 12px;
  }
  .approvalContent__foot a span {
    width: 35px;
    height: 35px;
  }
  .approvalContent h5 {
    font-size: 15px;
  }

  .introContent {
    margin-bottom: 35px;
  }
  .introContent h2 {
    margin-bottom: 16px;
  }
  .introContent h2 br.mob {
    display: block;
  }
  .introContent h5 {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .about__inner-info h5 {
    font-size: 15px;
    font-weight: 600;
  }

  .strategy {
    padding: 40px 0 55px;
  }
  .strategy__inner-col {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
  }
  .strategy__inner-col h5 {
    font-size: 15px;
  }
  .strategy__inner-col ul {
    padding-left: 18px;
  }
  .strategy__inner-col ul li::marker {
    font-size: 11px;
  }
  .strategy__inner-col b {
    font-weight: 300;
  }

  .missionContent ul {
    padding-left: 22px;
  }
  .missionContent ul li::marker {
    font-size: 14px;
  }
  .missionContent b {
    font-weight: 300;
  }

  .products {
    padding: 36px 0 84px;
  }
  .productsItem__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  .productsItem__icon.big {
    width: 65px;
  }
  .productsItem h5 {
    margin-bottom: 14px;
  }
  .productsItem p.sm {
    font-size: 12px;
    line-height: 150%;
  }

  .chartTable tr td,
.chartTable tr th {
    font-size: 12px;
    padding: 5px 5px;
  }
  .chartTable tr th {
    padding: 10px 5px;
  }

  .contactForm {
    width: calc(100% + 80px);
    margin: 0 -40px;
    border-radius: 0;
  }
  .contactForm__title {
    margin-bottom: 18px;
  }
  .contactForm__upload {
    font-size: 12px;
  }
  .contactForm .input {
    width: 100%;
    max-width: unset;
  }
  .contactForm h3 span {
    display: none;
  }

  .officeContent h5 {
    font-size: 16px;
  }
  .officeMap span {
    top: 39%;
    left: 30%;
  }

  .gallery {
    display: none;
  }
  .gallery__inner-slider {
    margin: 0 -6px;
    width: 95%;
  }
  .gallery .slick-slide {
    margin: 0 6px;
  }

  .copy {
    padding: 30px 0;
  }
  .copy__inner-info {
    -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;
  }
  .copy__inner-info p {
    font-size: 15px;
    line-height: 100%;
  }
  .copy__inner-social {
    margin: 0 0 20px 0;
  }
}
@media (max-width: 380px) {
  .auto__container {
    padding: 0 25px;
  }

  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 22px;
  }
  h2.big {
    font-size: 25px;
  }

  h3 {
    font-size: 22px;
  }

  .heroItem__content {
    padding: 20px;
  }
  .hero .slick-arrow {
    bottom: 358px;
  }

  .introContent h2 {
    font-size: 25px;
  }

  .contactForm {
    padding: 30px 20px;
    width: calc(100% + 50px);
    margin: 0 -25px;
  }
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}