@font-face {
  font-family: 'Franklin Gothic Demi';
  src: url("../fonts/FranklinGothic-Demi.woff2") format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Franklin Gothic Park';
  src: url("../fonts/FranklinGothic-Medium.woff2") format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Franklin Gothic Park';
  src: url("../fonts/FranklinGothic-Heavy.woff2") format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: 'Open Sans', sans-serif;
}
.container {
  max-width: 1524px;
  padding: 0 16px;
  margin: 0 auto;
}
a.button {
  background: #1e3953;
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
  padding: 0 40px;
  white-space: nowrap;
  height: 52px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.24s;
}
a.button:hover {
  background: #193047;
}
a.button_icon {
  padding-right: 20px;
  gap: 0 20px;
}
.header {
  background: #1e3953;
  color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 998;
}
.header__layout {
  padding: 12px 0;
  display: flex;
  gap: 0 40px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .header__layout {
    justify-content: space-between;
  }
}
.header__logo {
  text-transform: uppercase;
  font-size: 27px;
  font-family: 'Franklin Gothic Park', sans-serif;
  font-weight: 500;
  line-height: 1;
  position: relative;
  top: -8px;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .header__logo {
    font-size: 22px;
    top: -4px;
  }
}
.header__logo span {
  font-size: 13px;
}
.header__logo i {
  font-style: normal;
  color: #d0e8c5;
}
.header__hamburger {
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0 60px;
}
@media (max-width: 1199.98px) {
  .header__nav ul {
    gap: 0 32px;
  }
}
.header__nav ul li a {
  color: #fff;
  font-size: 24px;
  font-family: 'Franklin Gothic Park', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: 0.24s;
}
.header__nav ul li a:hover {
  color: #d0e8c5;
}
@media (max-width: 1523.98px) {
  .header__nav ul li a {
    font-size: 18px;
  }
}
.header__nav ul li.active a {
  color: #d0e8c5;
}
.mobile {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background: #1e3953;
  z-index: 999;
  width: 288px;
  display: block;
  transition: 0.24s;
  transform: translateX(100%);
}
.mobile_active {
  transform: translateX(0);
}
.mobile__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.mobile__body {
  padding: 24px;
}
.mobile__close {
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin-left: auto;
  margin-bottom: 24px;
}
.mobile__nav {
  margin-bottom: 24px;
}
.mobile__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.12;
}
.mobile__nav ul li:not(:last-child) {
  margin-bottom: 12px;
}
.mobile__nav ul li a {
  color: #fff;
  font-size: 24px;
  font-family: 'Franklin Gothic Park', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: 0.24s;
}
.mobile__nav ul li a:hover {
  color: #d0e8c5;
}
.mobile__nav ul li.active a {
  color: #d0e8c5;
}
.hero {
  position: relative;
}
.hero__prev,
.hero__next {
  cursor: pointer;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1e3953;
  z-index: 10;
  transition: 0.24s;
}
.hero__prev:hover,
.hero__next:hover {
  background: #193047;
  opacity: 1;
}
@media (max-width: 575.98px) {
  .hero__prev,
  .hero__next {
    opacity: 0.24;
  }
}
.hero__prev img,
.hero__next img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.hero__prev {
  left: 40px;
}
@media (max-width: 1199.98px) {
  .hero__prev {
    left: 16px;
  }
}
.hero__next {
  right: 40px;
}
@media (max-width: 1199.98px) {
  .hero__next {
    right: 16px;
  }
}
.hero__slide {
  padding: 240px 0 290px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media (max-width: 1523.98px) {
  .hero__slide {
    padding: 180px 0;
  }
}
@media (max-width: 1199.98px) {
  .hero__slide {
    padding: 120px 0;
  }
}
@media (max-width: 575.98px) {
  .hero__slide {
    padding: 64px 0;
  }
}
.hero__slide:after {
  content: '';
  display: block;
  z-index: 0;
  background: rgba(0,0,0,0.16);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.hero__body {
  position: relative;
  z-index: 1;
}
@media (max-width: 1723.98px) {
  .hero__body {
    margin-left: 110px;
    margin-right: 110px;
  }
}
@media (max-width: 1199.98px) {
  .hero__body {
    margin-left: 64px;
    margin-right: 64px;
  }
}
@media (max-width: 575.98px) {
  .hero__body {
    margin-left: 0;
    margin-right: 0;
  }
}
.hero__title {
  margin-bottom: 24px;
}
.hero__title h2 {
  font-size: 72px;
  color: #fff;
  font-family: 'Franklin Gothic Park', sans-serif;
  font-weight: 900;
  text-shadow: 0 0 35px rgba(88,149,119,0.75);
  text-transform: uppercase;
  line-height: 1.12;
}
@media (max-width: 1199.98px) {
  .hero__title h2 {
    font-size: 64px;
  }
}
@media (max-width: 991.98px) {
  .hero__title h2 {
    font-size: 48px;
  }
}
@media (max-width: 575.98px) {
  .hero__title h2 {
    font-size: 40px;
  }
}
.hero__text {
  color: #fff;
  font-size: 22px;
  margin-bottom: 24px;
  max-width: 600px;
}
@media (max-width: 1199.98px) {
  .hero__text {
    font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  .hero__text {
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {
  .hero__text {
    font-size: 16px;
  }
}
.about {
  position: relative;
  padding-bottom: 100px;
}
.about__triangle {
  display: block;
  position: absolute;
  right: 0;
  top: -300px;
  z-index: 1;
}
@media (max-width: 1523.98px) {
  .about__triangle {
    display: none;
  }
}
.about__wrapper {
  position: relative;
  z-index: 2;
  width: calc(100vw - ((100vw - 1508px) / 2));
  margin-top: -150px;
  padding-top: 70px;
  background: #fff;
  box-shadow: 4px -4px 8px -4px rgba(0,0,0,0.15);
}
@media (max-width: 1523.98px) {
  .about__wrapper {
    margin-top: 0;
    width: 100%;
    box-shadow: none;
  }
}
.about__wrapper .container {
  margin-right: 0;
}
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-right: 90px;
}
@media (max-width: 1523.98px) {
  .about__layout {
    padding-right: 0;
  }
}
@media (max-width: 991.98px) {
  .about__layout {
    grid-template-columns: 1fr;
  }
}
.about__left {
  min-width: 0;
}
@media (max-width: 991.98px) {
  .about__left {
    order: 1;
  }
}
.about__image {
  height: 616px;
  margin-bottom: 54px;
  margin-left: calc((100vw - 1492px) / -2);
  width: calc(100% + (100vw - 1492px) / 2);
}
@media (max-width: 1523.98px) {
  .about__image {
    width: calc(100% + 16px);
    margin-left: -16px;
  }
}
@media (max-width: 991.98px) {
  .about__image {
    width: calc(100% + 32px);
    height: 400px;
    margin-bottom: 24px;
  }
}
@media (max-width: 575.98px) {
  .about__image {
    height: 300px;
  }
}
.about__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .about__image img {
    -o-object-position: center bottom;
    object-position: center bottom;
  }
}
.about__title {
  padding-bottom: 20px;
  padding-left: 40px;
  border-bottom: 20px solid #d0e8c5;
  margin-bottom: 60px;
}
@media (max-width: 1523.98px) {
  .about__title {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .about__title {
    padding-left: 0;
  }
}
.about__title h1 {
  text-transform: uppercase;
  line-height: 1;
  color: #000;
  font-family: 'Franklin Gothic Demi', sans-serif;
  font-size: 50px;
}
@media (max-width: 1523.98px) {
  .about__title h1 {
    font-size: 40px;
  }
}
@media (max-width: 1199.98px) {
  .about__title h1 {
    font-size: 32px;
  }
}
.about__text {
  padding-left: 40px;
}
@media (max-width: 991.98px) {
  .about__text {
    padding-right: 40px;
  }
}
@media (max-width: 575.98px) {
  .about__text {
    padding-left: 0;
    padding-right: 0;
  }
}
.about__text p {
  color: #a3a3a3;
  font-size: 22px;
  margin-bottom: 32px;
}
@media (max-width: 1523.98px) {
  .about__text p {
    font-size: 18px;
  }
}
@media (max-width: 1199.98px) {
  .about__text p {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  .about__link {
    display: flex;
    justify-content: center;
  }
}
.numbers {
  background: url("../img/numbers-bg.jpg") no-repeat center center/cover;
  padding: 60px 0;
  position: relative;
}
.numbers:after {
  content: '';
  display: block;
  z-index: 0;
  background: rgba(0,0,0,0.16);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.numbers__items {
  z-index: 2;
  position: relative;
  max-width: 1066px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767.98px) {
  .numbers__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.numbers-item {
  text-align: center;
  color: #fff;
  font-family: 'Franklin Gothic Demi', sans-serif;
}
.numbers-item__icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #fff;
  display: inline-grid;
  place-content: center;
}
.numbers-item__value {
  font-size: 50px;
  line-height: 1.12;
}
.numbers-item__text {
  font-size: 24px;
  line-height: 1.12;
}
@media (max-width: 575.98px) {
  .numbers-item__text {
    font-size: 20px;
  }
}
.services {
  background: #fff;
  padding: 70px 0 90px;
}
.services__layout {
  display: flex;
  gap: 32px;
}
@media (max-width: 991.98px) {
  .services__layout {
    flex-direction: column;
  }
}
.services__title {
  position: relative;
  margin-bottom: 24px;
}
.services__title:before {
  content: '';
  display: block;
  height: 42px;
  width: 6px;
  position: absolute;
  left: -48px;
  top: 8px;
  background: #d0e8c5;
}
.services__title h2 {
  text-transform: uppercase;
  line-height: 1;
  color: #000;
  font-family: 'Franklin Gothic Demi', sans-serif;
  font-size: 50px;
}
@media (max-width: 1523.98px) {
  .services__title h2 {
    font-size: 40px;
  }
}
@media (max-width: 1199.98px) {
  .services__title h2 {
    font-size: 32px;
  }
}
.services__text {
  margin-bottom: 24px;
}
.services__text p {
  font-size: 18px;
  line-height: 1.333333333333333;
  color: #313131;
}
@media (max-width: 575.98px) {
  .services__text p {
    font-size: 16px;
  }
}
.services__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  margin-bottom: 48px;
}
@media (max-width: 1199.98px) {
  .services__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991.98px) {
  .services__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575.98px) {
  .services__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.services-item__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}
.services-item__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  display: block;
}
.services-item__title {
  margin-bottom: 8px;
  line-height: 1.12;
}
.services-item__title a {
  color: #698571;
  font-size: 22px;
}
@media (max-width: 575.98px) {
  .services-item__title a {
    font-size: 18px;
  }
}
.services-item__title a:hover {
  text-decoration: none;
}
.services-item__text {
  color: #313131;
  font-size: 14px;
  line-height: 1.285714285714286;
}
.services__right {
  width: 530px;
  flex-shrink: 0;
}
@media (max-width: 1199.98px) {
  .services__right {
    width: 420px;
  }
}
@media (max-width: 991.98px) {
  .services__right {
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .services__right {
    width: 100%;
  }
}
.services-info {
  width: 450px;
  border: 6px solid #d0e8c5;
  margin-top: 85px;
}
@media (max-width: 1199.98px) {
  .services-info {
    width: 340px;
  }
}
@media (max-width: 575.98px) {
  .services-info {
    width: 100%;
    margin-top: 0;
  }
}
.services-info__image {
    position: relative;
    height: 100%;
    /* width: 100%; */
    /* margin-left: 40px; */
    /* margin-top: -85px; */
    /* width: calc(100% + 46px); */
    margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .services-info__image {
    margin-left: 16px;
  }
}
@media (max-width: 575.98px) {
  .services-info__image {
    margin-left: 0;
    width: 100%;
    margin-top: 0;
    height: 240px;
  }
}
.services-info__image img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.services-info__body {
  padding: 0 40px 20px;
}
@media (max-width: 1199.98px) {
  .services-info__body {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.services-info__title {
  font-size: 26px;
  font-family: 'Franklin Gothic Demi', sans-serif;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.services-info__text {
  font-size: 18px;
  color: #313131;
  line-height: 1.333333333333333;
  margin-bottom: 24px;
}
.video {
  margin-bottom: 90px;
}
.video__content {
  position: relative;
}
.video__content:before {
  content: '';
  display: block;
  padding-top: calc((660 / 1515) * 100%);
}
.video__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.video__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.video__play {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  place-content: center;
}
.video__play a {
  background: #fff;
  display: grid;
  place-content: center;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  transition: 0.24s;
}
.video__play a:hover {
  opacity: 0.64;
}
.news {
  margin-bottom: 125px;
}
@media (max-width: 575.98px) {
  .news {
    margin-bottom: 80px;
  }
}
.news__title {
  text-align: center;
  margin-bottom: 90px;
}
@media (max-width: 767.98px) {
  .news__title {
    margin-bottom: 48px;
  }
}
.news__title h2 {
  text-transform: uppercase;
  line-height: 1;
  color: #000;
  font-family: 'Franklin Gothic Demi', sans-serif;
  font-size: 50px;
}
@media (max-width: 1523.98px) {
  .news__title h2 {
    font-size: 40px;
  }
}
@media (max-width: 1199.98px) {
  .news__title h2 {
    font-size: 32px;
  }
}
.news__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 55px;
}
@media (max-width: 991.98px) {
  .news__cards {
    gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .news__cards {
    grid-template-columns: 1fr;
  }
}
.news-card {
  box-shadow: 0 0 20px rgba(0,0,0,0.06);
  padding: 28px 20px 16px 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .news-card {
    padding: 20px 16px;
  }
}
.news-card__date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a6a6a6;
  font-size: 14px;
  margin-bottom: 16px;
}
.news-card__title {
  line-height: 1.333333333333333;
  margin-bottom: 28px;
  flex: 1;
}
.news-card__title a {
  font-size: 18px;
  color: #698571;
}
@media (max-width: 991.98px) {
  .news-card__title a {
    font-size: 16px;
  }
}
.news-card__title a:hover {
  text-decoration: none;
}
.news-card__link {
  display: flex;
  justify-content: flex-end;
}
.news-card__link a {
  width: 24px;
  height: 20px;
  display: grid;
  place-content: center;
  background: #698571;
  transition: 0.24s;
}
.news-card__link a:hover {
  background: #597160;
}
.news__link {
  display: flex;
  justify-content: center;
}
.contacts {
  position: relative;
}
@media (max-width: 991.98px) {
  .contacts {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
  }
}
.contacts .container {
  padding: 80px 16px 60px;
}
@media (max-width: 991.98px) {
  .contacts .container {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.contacts__map {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .contacts__map {
    position: relative;
    height: 360px;
  }
}
.contacts__body {
  background: #fff;
  max-width: 664px;
  margin-left: auto;
  position: relative;
  z-index: 2;
  padding: 32px 40px;
}
@media (max-width: 1199.98px) {
  .contacts__body {
    max-width: 50%;
  }
}
@media (max-width: 991.98px) {
  .contacts__body {
    max-width: 100%;
    padding: 0;
  }
}
.contacts__title {
  text-align: center;
  line-height: 1.486486486486486;
  margin-bottom: 24px;
}
.contacts__title h2 {
  text-transform: uppercase;
  font-size: 37px;
  font-family: 'Franklin Gothic Demi', sans-serif;
}
@media (max-width: 1199.98px) {
  .contacts__title h2 {
    font-size: 30px;
  }
}
@media (max-width: 575.98px) {
  .contacts__title h2 {
    font-size: 26px;
  }
}
.contacts__address {
  font-size: 24px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (max-width: 1199.98px) {
  .contacts__address {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .contacts__address {
    text-align: center;
  }
}
.contacts__bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}
@media (max-width: 575.98px) {
  .contacts__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.contacts__phone {
  line-height: 1;
}
.contacts__phone a {
  color: #698571;
  font-family: 'Franklin Gothic Demi', sans-serif;
  font-size: 37px;
  white-space: nowrap;
  text-decoration: none;
}
@media (max-width: 1199.98px) {
  .contacts__phone a {
    font-size: 24px;
  }
}
.contacts__email {
  line-height: 1;
}
.contacts__email a {
  color: #698571;
  font-size: 27px;
}
@media (max-width: 1199.98px) {
  .contacts__email a {
    font-size: 20px;
  }
}
.contacts__email a:hover {
  text-decoration: none;
}
.footer {
  padding: 16px 0 24px;
  border-top: 1px solid #bebebe;
}
.footer__layout {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer__info {
  line-height: 1.285714285714286;
  font-size: 14px;
  color: #1e3953;
}
@media (max-width: 575.98px) {
  .footer__info {
    font-size: 11px;
  }
}
.footer__dev a {
  color: #1e3953;
  text-decoration: none;
}
.footer__dev a:hover {
  text-decoration: underline;
}
