* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  overflow: hidden;
}

ul {
  list-style: disc;
  margin-bottom: 0;
  padding-left: 20px;
}

ol {
  list-style: decimal;
  margin-bottom: 0;
  padding-left: 20px;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

*:focus::-webkit-input-placeholder {
  color: transparent !important;
}

*:focus::-moz-placeholder {
  color: transparent !important;
}

*:focus:-moz-placeholder {
  color: transparent !important;
}

*:focus:-ms-input-placeholder {
  color: transparent !important;
}

p,
li {
  line-height: 1.44;
}

p {
  margin-bottom: 10px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

body {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  line-height: normal;
  min-height: 100vh;
  background: linear-gradient(180deg, #030312 0%, #0E2A3D 33%, #1E6F9E 66%, #A6C4DA 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  display: flex;
  flex-direction: column;
}

.js-scroll-fade [data-scroll-fade] {
  opacity: 0;
}

[data-scroll-fade] {
  will-change: opacity;
}

body[data-page-bg=fixed] {
  background: transparent;
  isolation: isolate;
  overflow-x: hidden;
}

body[data-page-bg=fixed] [data-fixed-bg] {
  position: fixed;
  inset: -8vh -6vw;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #030312 0%, #0E2A3D 33%, #1E6F9E 66%, #A6C4DA 100%);
}

body[data-page-bg=fixed] .main-block,
body[data-page-bg=fixed] .main-footer {
  position: relative;
  z-index: 1;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  row-gap: 30px;
}

.align_center {
  align-items: center;
}

.overflow_hidden {
  overflow: hidden;
}

.row_reverse {
  flex-direction: row-reverse;
}

.text-center {
  text-align: center;
}

.col-12 {
  flex: 0 0 100%;
}

.col-12,
.col-md-3,
.col-md-7,
.col-md-9,
.col-md-10,
.col-md-11,
.col-sm-6,
.col-md-6,
.col-md-4,
.col-sm-3,
.col-xm-6,
.col-md-12,
.col-md-8,
.col-md-5,
.col-md-2,
.col-sm-4,
.col-sm-8 {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.col-12.no-pad,
.col-md-3.no-pad,
.col-md-7.no-pad,
.col-md-9.no-pad,
.col-md-10.no-pad,
.col-md-11.no-pad,
.col-sm-6.no-pad,
.col-md-6.no-pad,
.col-md-4.no-pad,
.col-sm-3.no-pad,
.col-xm-6.no-pad,
.col-md-12.no-pad,
.col-md-8.no-pad,
.col-md-5.no-pad,
.col-md-2.no-pad,
.col-sm-4.no-pad,
.col-sm-8.no-pad {
  padding-left: 0;
  padding-right: 0;
}

.color-white {
  color: #fff;
}

.main-header {
  padding: 40px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: linear-gradient(180deg, #030312 0%, rgba(3, 3, 18, 0) 100%);
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .header_logo {
  position: relative;
  z-index: 12;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.main-header .main_nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.main-header .main_nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 45px;
}
.main-header .main_nav ul a {
  color: #FFF;
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
}
.main-header .main_nav ul a svg path {
  fill: var(--White, #FFF);
}
.main-header .main_nav ul a:hover {
  color: var(--Light-Blue, #A6C4DA) !important;
}
.main-header .main_nav ul a:hover svg path {
  fill: var(--Light-Blue, #A6C4DA);
}
.main-header .main_nav ul li {
  margin-bottom: 0;
  display: inline-block;
  margin-left: 0;
}

.nav_item--dropdown {
  position: relative;
  padding-bottom: 28px;
  margin-bottom: -28px !important;
}

.nav_item__trigger {
  align-items: center;
}

.nav_item__caret {
  flex: 0 0 24px;
  transition: transform 0.3s ease;
}

.nav_dropdown {
  position: absolute;
  top: 70%;
  right: 0;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.nav_dropdown__panel {
  padding: 28px 36px;
  border-radius: 12px;
  background: rgba(0, 3, 11, 0.9);
}

.nav_dropdown__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  position: relative;
}
.nav_dropdown__eyebrow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: calc(100% + 26px);
  background: #A6C4DA;
}

.nav_dropdown__dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: #1E6F9E;
  flex: 0 0 12px;
}

.nav_dropdown__grid {
  display: grid;
  grid-template-columns: auto;
  gap: 20px;
}
.nav_dropdown__grid a {
  color: #FFF;
  transition: color 0.3s ease;
}
.nav_dropdown__grid a:hover,
.nav_dropdown__grid a:focus {
  color: var(--Light-Blue, #A6C4DA) !important;
}

.nav_item--dropdown:hover .nav_dropdown,
.nav_item--dropdown:focus-within .nav_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav_item--dropdown:hover .nav_item__caret {
  transform: rotate(180deg);
}

body.mobile-nav-open {
  overflow: hidden;
}

.preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: 0.4s ease;
}
.preloader.off {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.wow:not(.visible) {
  opacity: 0;
}

.mobile_nav_toggle {
  display: none;
  width: 24px;
  height: 24px;
  margin-left: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 12;
}

.mobile_nav_toggle__line {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #1E6F9E;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-header.is-mobile-nav-open .mobile_nav_toggle__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.main-header.is-mobile-nav-open .mobile_nav_toggle__line:nth-child(2) {
  opacity: 0;
}

.main-header.is-mobile-nav-open .mobile_nav_toggle__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn_st {
  display: inline-flex;
  color: #FFF;
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 14px 28px;
  border: 1px solid #D5D7DA;
  border-radius: 28px;
  text-decoration: none;
  column-gap: 12px;
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  transition: 0.3s ease;
}
.btn_st:hover {
  color: #030312;
  background: #FFF;
  box-shadow: 3px 2px 8px 2px rgba(19, 44, 61, 0.2);
}
.btn_st:hover svg {
  transform: rotate(-45deg);
}
.btn_st:hover svg path {
  fill: #030312 !important;
}
.btn_st:active {
  opacity: 0.9;
}
.btn_st svg {
  flex: 0 0 15px;
  transition: 0.3s ease;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.main-block {
  flex: 1 0 auto;
  height: 100%;
}

.intro_section {
  padding-top: 344px;
  padding-bottom: 260px;
}
.intro_section.pad_b_lg {
  padding-bottom: 120px;
}

.main-sect {
  padding: 100px 0;
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-fade] {
    opacity: 1 !important;
  }
}
.intro {
  font-family: "DM Sans";
  font-size: clamp(24px, 5vw, 28px);
  font-style: normal;
  font-weight: 200;
  line-height: 1.28;
}
.intro p,
.intro li {
  font-weight: 200;
  line-height: 1.28;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 30px;
}
.cards .card_item {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 3px 2px 8px 2px rgba(19, 44, 61, 0.2);
}
.cards .card_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: 0.4s ease;
}
.cards .card_item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(3, 3, 18, 0.6);
  transition: 0.3s ease;
  z-index: 1;
}
.cards .card_item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  z-index: 2;
  transition: 0.3s ease;
  pointer-events: none;
}
.cards .card_item .content {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
}
.cards .card_item:hover {
  box-shadow: 3px 2px 8px 2px rgba(19, 44, 61, 0.2);
}
.cards .card_item:hover img {
  opacity: 1;
  transform: scale(1);
}
.cards .card_item:hover::after {
  opacity: 1;
  background: rgba(3, 3, 18, 0.5);
}
.cards .card_item:hover::before {
  opacity: 0;
}
.cards .card_item:hover .arr_top {
  transform: rotate(-45deg);
}
.cards .card_item .text {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 20px;
  min-height: 197px;
  z-index: 10;
}
@media (max-width: 991px) {
  .cards .card_item .text {
    min-height: 240px;
  }
}
.cards .card_item .arr_top {
  position: absolute;
  top: 24px;
  right: 24px;
  transition: 0.3s ease;
  z-index: 50;
}
.cards .card_item h3 {
  color: #FFF;
  font-family: "DM Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.28;
  margin-bottom: 8px;
}
.cards .card_item p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 200;
  line-height: 1.28;
  /* 20.48px */
}

.grid_images {
  display: grid;
  grid-template-columns: 7.4fr 5fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 8px;
}
.grid_images div {
  border-radius: 12px;
  overflow: hidden;
}

.grid_gallery {
  display: grid;
  grid-template-columns: 5.3fr 3.3fr 4.4fr;
  gap: 8px;
}
.grid_gallery .img {
  border-radius: 12px;
  overflow: hidden;
}
.grid_gallery > div:first-child {
  display: grid;
  gap: 8px;
  grid-template-rows: repeat(2, 1fr);
}
.grid_gallery > div:last-child {
  display: grid;
  gap: 8px;
}

.main_title {
  font-family: "DM Sans";
  font-size: clamp(48px, 5vw, 80px);
  font-style: normal;
  font-weight: 200;
  line-height: 120%;
  /* 96px */
}

.sect_title {
  font-family: "DM Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  /* 43.2px */
}

.about-page .intro_section.pad-t100 {
  padding-top: 100px;
}

.fon-s14 {
  font-size: 14px;
}

.mar-b60 {
  margin-bottom: 60px;
}

.mar-b70 {
  margin-bottom: 70px;
}

.mar-b50 {
  margin-bottom: 50px;
}

.mar-b8 {
  margin-bottom: 8px;
}

.mar-b0 {
  margin-bottom: 0px;
}

.mar-b40 {
  margin-bottom: 40px;
}

.mar-b30 {
  margin-bottom: 30px;
}

.mar-b20 {
  margin-bottom: 20px;
}

.mar-b24 {
  margin-bottom: 24px;
}

.mar-b25 {
  margin-bottom: 25px;
}

.mar-b280 {
  margin-bottom: 280px;
}

.mar-b140 {
  margin-bottom: 140px;
}

.mar-b100 {
  margin-bottom: 100px;
}

.mar-b150 {
  margin-bottom: 150px;
}

.mar-b380 {
  margin-bottom: 380px;
}

.mar-b16 {
  margin-bottom: 16px;
}

.mar-b12 {
  margin-bottom: 12px;
}

.mar-t30 {
  margin-top: 30px;
}

.mar-t60 {
  margin-top: 60px;
}

.mar-t40 {
  margin-top: 40px;
}

.mar-t20 {
  margin-top: 20px;
}

.mar-t10 {
  margin-top: 10px;
}

.pad_r_md {
  padding: 40px 20px;
}

.pad-t-none {
  padding-top: 0 !important;
}

.pad-b-none {
  padding-bottom: 0 !important;
}

.text-right {
  text-align: right;
}

.col-xm-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .text-right_sm {
    text-align: right;
  }
  .container {
    max-width: 720px;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
  }
}
@media (min-width: 992px) {
  .text-right_md {
    text-align: right;
  }
  .offset-md1 {
    margin-left: 8.33333%;
  }
  .offset-md4 {
    margin-left: 33.33333%;
  }
  .offset-md3 {
    margin-left: 24.99999%;
  }
  .offset-md2 {
    margin-left: 16.66666%;
  }
  .container {
    max-width: 960px;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666666%;
    max-width: 91.666666%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-8 {
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (max-width: 991px) {
  .main-header {
    padding: 28px 0;
  }
  .main-header .container {
    position: relative;
    z-index: 11;
  }
  .main-header .main_nav {
    position: fixed;
    inset: 0;
    padding: 130px 20px;
    background: linear-gradient(180deg, #030312 0%, #1E6F9E 100%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    align-items: flex-start;
  }
  .main-header .main_nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    width: 100%;
  }
  .main-header .main_nav ul a {
    width: 100%;
    font-size: 20px;
  }
  .main-header .main_nav ul li {
    display: block;
    width: 100%;
  }
  .main-header.is-mobile-nav-open .main_nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile_nav_toggle {
    display: inline-flex;
  }
  .nav_item--dropdown {
    padding-bottom: 0;
    margin-bottom: 0 !important;
  }
  .nav_dropdown {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    padding-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav_item--dropdown:hover .nav_dropdown,
  .nav_item--dropdown:focus-within .nav_dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
  }
  .nav_item--dropdown.is-open .nav_dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 360px;
  }
  .nav_item--dropdown.is-open .nav_item__caret {
    transform: rotate(180deg);
  }
  .nav_dropdown__panel {
    padding: 28px 0 0 20px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav_dropdown__eyebrow {
    display: none;
  }
  .nav_dropdown__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .nav_dropdown__link {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }
  .cards_wrap {
    overflow-x: auto;
  }
  .cards {
    width: 930px;
    gap: 20px;
  }
  .main-sect {
    padding: 50px 0;
  }
  .main-sect.mar-b380, .main-sect.mar-b280 {
    margin-bottom: 100px;
  }
  .main-sect.mar-b150 {
    margin-bottom: 50px;
  }
  .main-sect.mar-b100 {
    margin-bottom: 0;
  }
  .mar-b150 {
    margin-bottom: 50px;
  }
  .about-page .intro_section.pad-t100 {
    padding-top: 50px;
  }
  .intro_section {
    padding-top: 220px;
    padding-bottom: 260px;
  }
  .intro_section.pad_b_lg {
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .main-header .main_nav {
    padding: 106px 20px 40px;
  }
  .mar-b280 {
    margin-bottom: 1000px;
  }
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
	body[data-page-bg=fixed] [data-fixed-bg] {
   
    background: linear-gradient(180deg, #030312 0%, #0E2A3D 33%, #1E6F9E 66%, #4b8bb2 100%);
	}
}
@media (max-width: 550px) {
  .grid_images,
  .grid_gallery {
    grid-template-columns: 1fr;
  }
  .grid_images img,
  .grid_gallery img {
    width: 100%;
  }
}
.preloader img,
.preloader svg,
.preloader .preloader-logo {
  opacity: 0;
}

/*# sourceMappingURL=style.css.map */
