
@font-face {
  font-family: "Lato";
  src: url(images\Lato-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wrapper h1, .wrapper h2, .wrapper h3, .wrapper h4, .wrapper h5, .wrapper h6 {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper > * {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}
.wrapper > * img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.wrapper > * button, .wrapper * input {
  border: none;
  outline: none;
  background: none;
  font: inherit;
}
.wrapper > * a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.wrapper > * ul, .wrapper li {
  list-style: none;
}
.wrapper .container {
  max-width: 1650px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.wrapper .main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.wrapper .icons__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.wrapper .header {
  padding: 45px 0 125px;
}
.wrapper .header.scroll-header {
  position: fixed;
  top: 0;
  z-index: 1000;
}
@media (max-width: 1024px) {
  .wrapper .header {
    padding: 35px 0 65px;
  }
}
@media (max-width: 665px) {
  .wrapper .header {
    padding: 35px 0 35px;
  }
}
@media (max-width: 400px) {
  .wrapper .header__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wrapper .header__logo img {
  max-width: 225px;
}
@media (max-width: 1024px) {
  .wrapper .header__logo img {
    max-width: 300px;
  }
}
@media (max-width: 665px) {
  .wrapper .header__logo img {
    max-width: 200px;
  }
}
.wrapper .header__container {
  position: relative;
  gap: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .wrapper .header__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 665px) {
  .wrapper .header__container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.wrapper .header__right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.65s ease;
  transition: 0.65s ease;
}
@media (max-width: 1024px) {
  .wrapper .header__right {
    width: auto;
    gap: 20px;
  }
}
@media (max-width: 665px) {
  .wrapper .header__right {
    position: absolute;
    right: 16px;
    left: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(0, -600px);
            transform: translate(0, -600px);
  }
}
.wrapper .header__right.mobile-active {
  top: 0;
  opacity: 1;
  width: auto;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  z-index: 100;
  padding: 35px;
  background: white;
  -webkit-box-shadow: 0 0 100px #3c5c9f;
          box-shadow: 0 0 100px #3c5c9f;
}
.wrapper .header__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;
}
@media (max-width: 1024px) {
  .wrapper .header__top {
    gap: 20px;
  }
}
.wrapper .header__list {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #3c5c9f;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  .wrapper .header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
@media (max-width: 665px) {
  .wrapper .header__list {
    gap: 15px;
  }
}
.wrapper .header__link {
  display: inline-block;
  color: #3c5c9f;
  position: relative;
  -webkit-transition: 0.65s ease;
  transition: 0.65s ease;
}
.wrapper .header__link::before {
  content: "";
  position: absolute;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background-color: #3c5c9f;
  -webkit-transition: 0.65s ease;
  transition: 0.65s ease;
}
.wrapper .header__link:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.wrapper .header__link:hover {
  color: #092155;
}
.wrapper .header__burger {
  cursor: pointer;
  position: relative;
  display: none;
  width: 25px;
  height: 19px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.65s ease;
  transition: 0.65s ease;
}
.wrapper .header__burger.will__close {
  position: absolute;
  top: 15px;
  right: 25px;
  z-index: 100;
}
.wrapper .header__burger.will__close span {
  background-color: #3c5c9f;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.wrapper .header__burger.will__close span::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.wrapper .header__burger.will__close span::after {
  display: none;
}
@media (max-width: 665px) {
  .wrapper .header__burger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.wrapper .header__burger span {
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: #355a9d;
}
.wrapper .header__burger span::after, .wrapper .header__burger span::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 1px;
  display: inline-block;
  background-color: #355a9d;
}
.wrapper .header__burger span::after {
  bottom: 0;
}
.wrapper .header__burger span::before {
  top: 0;
}
.wrapper .header .search__item {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #3c5c9f;
}
.wrapper .header .search__item .search__input::-webkit-input-placeholder {
  color: #9aadd8;
}
.wrapper .header .search__item .search__input::-moz-placeholder {
  color: #9aadd8;
}
.wrapper .header .search__item .search__input:-ms-input-placeholder {
  color: #9aadd8;
}
.wrapper .header .search__item .search__input::-ms-input-placeholder {
  color: #9aadd8;
}
.wrapper .header .search__item .search__input::placeholder {
  color: #9aadd8;
}
.wrapper .header .search__item img {
  cursor: pointer;
}
.wrapper .hero {
  margin-bottom: 120px;
}
.wrapper .hero__title {
  color: #3c5c9f;
  margin-bottom: 65px;
}
@media (max-width: 800px) {
  .wrapper .hero__title {
    margin-bottom: 35px;
  }
}
@media (max-width: 380px) {
  .wrapper .hero__title {
    font-size: 22px;
    text-align: center;
  }
}
.wrapper .hero__subtitle {
  color: #3c5c9f !important;
  margin-bottom: 30px !important;
}
.wrapper .hero__item {
  margin-bottom: 115px;
}
@media (max-width: 1024px) {
  .wrapper .hero__item {
    margin-bottom: 65px;
  }
}
@media (max-width: 800px) {
  .wrapper .hero__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 665px) {
  .wrapper .hero__item {
    margin-bottom: 35px;
  }
}
.wrapper .hero__item img {
  max-width: 428px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 25px;
  margin-bottom: 25px;
}
@media (max-width: 665px) {
  .wrapper .hero__item img {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.wrapper .hero__right {
  padding: 15px 0;
}
.wrapper .hero .tabs * {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper .hero .tabs__controllers {
  margin-bottom: 110px;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  border-top: 1px solid #355a9d;
  border-bottom: 1px solid #355a9d;
}
@media (max-width: 1024px) {
  .wrapper .hero .tabs__controllers {
    margin-bottom: 60px;
    padding: 20px 0;
  }
}
@media (max-width: 665px) {
  .wrapper .hero .tabs__controllers {
    margin-bottom: 45px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.wrapper .hero .tabs__controller {
  text-align: center;
  cursor: pointer;
  max-width: 290px;
  font-weight: 600;
  width: 100%;
  color: white;
  padding: 14px 24px;
  -webkit-transition: 0.65s ease;
  transition: 0.65s ease;
  background-color: #355a9d;
}
.wrapper .hero .tabs__controller:hover {
  color: gold;
}
@media (max-width: 550px) {
  .wrapper .hero .tabs__controller {
    max-width: 100%;
  }
}
.wrapper .hero .tabs__title {
  color: #3c5c9f !important;
}
.wrapper .hero .tabs__image img {
  width: 100%;
  height: 100%;
  min-height: auto ;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 380px) {
  .wrapper .hero .tabs__title {
    text-align: center !important;
  }
}
.wrapper .hero .tabs__title-h2 {
  font-size: 27px !important;
  margin-bottom: 45px !important;
}
.wrapper .hero .tabs__title-h3 {
  font-size: 34px !important;
  text-wrap: balance !important;
}
@media (max-width: 1490px) {
  .wrapper .hero .tabs__title-h3 {
    font-size: 27px !important;
  }
}
.wrapper .hero .tabs__list {
  display: grid;
  gap: 50px;
  grid-auto-rows: 400px;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
}
@media (max-width: 1550px) {
  .wrapper .hero .tabs__list {
    gap: 30px;
  }
}
@media (max-width: 580px) {
  .wrapper .hero .tabs__list {
    grid-template-columns: 1fr;
    grid-auto-rows: unset !important;
  }
}
.wrapper .hero .tabs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1226px) {
  .wrapper .hero .tabs__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .hero .tabs__image {
  max-width: 353px;
  max-height: 434px;
  height: 100%;
  width: 100%;
}
@media (max-width: 1226px) {
  .wrapper .hero .tabs__image {
    max-width: 100%;
    max-height: 400px;
  }
  .wrapper .hero .tabs__image img {
    min-height: 400px;
  }
  .wrapper .hero .tabs__list{
    grid-auto-rows: 1fr;
  }
  .wrapper .hero .tabs__item{
    height: auto;
  }
  .wrapper .hero .tabs__info{
    height: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 580px) {
  /* .wrapper .hero .tabs__image {
    max-height: 300px;
  } */
}

@media (max-width: 1226px) {
  .wrapper .hero .tabs__image img {
    width: 100%;
  }
}
.wrapper .hero .tabs__info {
  width: 100%;
  padding: 29px 15px;
  margin: 1px 0;
  gap: 25px;
  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-shadow: 0 0 1px grey;
          box-shadow: 0 0 1px grey;
}
@media (max-width: 1490px) {
  .wrapper .hero .tabs__info {
    padding: 15px;
    gap: 15px;
  }
}
@media (max-width: 380px) {
  .wrapper .hero .tabs__info {
    text-align: center;
  }
}
.wrapper .hero .tabs__info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media (max-width: 1490px) {
  .wrapper .hero .tabs__info ul {
    gap: 15px;
  }
}
.wrapper .hero .tabs__info ul li {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1490px) {
  .wrapper .hero .tabs__info ul li {
    font-size: 18px;
  }
}
.wrapper .hero .tabs__info ul li span {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .wrapper .hero {
    margin-bottom: 60px;
  }
}
.wrapper .footer {
  padding-top: 90px;
  background-color: #0d3b62;
}
.wrapper .footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wrapper .footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
  border-bottom: 1px solid #9aadd8;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .wrapper .footer__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.wrapper .footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 90px;
}
@media (max-width: 1024px) {
  .wrapper .footer__left {
    gap: 40px;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 600px) {
  .wrapper .footer__left {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .footer__bottom {
  padding: 20px 0;
}
.wrapper .footer__logo {
  max-width: 225px;
}
@media (max-width: 600px) {
  .wrapper .footer__menu {
    width: 100%;
  }
}
.wrapper .footer__list {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #9aadd8;
  font-weight: 600;
}
@media (max-width: 600px) {
  .wrapper .footer__list {
    width: 100%;
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.wrapper .footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  color: #9aadd8;
  font-weight: 600;
}
@media (max-width: 600px) {
  .wrapper .footer__info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}
.wrapper .footer__address {
  gap: 20px;
  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;
}
.wrapper .footer__address p {
  max-width: 150px;
  text-align: right;
}
@media (max-width: 600px) {
  .wrapper .footer__address p {
    max-width: 100%;
  }
}
@media (max-width: 420px) {
  .wrapper .footer__email {
    width: 100%;
  }
}
.wrapper .footer__email a {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 420px) {
  .wrapper .footer__email a {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.wrapper .footer .created__kproject {
  color: #3c5c9f;
  -webkit-transition: 0.65s ease;
  transition: 0.65s ease;
}
.wrapper .footer .created__kproject:hover {
  color: red;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .wrapper > * {
    font-size: 16px;
  }
}

