:root {
  --font-family: "Montserrat", sans-serif;
  --content-width: 1170px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --green-color: #10363F;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.header {
  padding-top: 20px;
  background: var(--green-color);
  height: 120px;
}
@media (max-width: 1024px) {
  .header {
    padding: 20px 0;
    height: auto;
  }
}
.header__container {
  max-width: 1110px;
}
.header__top {
  margin-bottom: 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;
}
.header__phone {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
  color: #cb2f32;
}
@media (max-width: 1024px) {
  .header__phone {
    display: none;
  }
}
.header__bottom {
  position: relative;
  padding-left: 30px;
  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;
  background-color: var(--light-color);
 
}
@media (max-width: 1024px) {
  .header__bottom {
    top: 0;
    right: 0;
    z-index: 100;
    padding-top: 30px;
    -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;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 15px;
    opacity: 0;
    visibility: hidden;
    max-width: none;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: var(--green-color);
  }
}
.header__logo img {
  width: 150px;
}
@media (max-width: 1024px) {
  .header__logo {
    margin-bottom: 20px;
  }
}
.header__btn {
  width: 89px;
  height: 89px;
  background-color: #017280;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
.header__btn:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
@media (max-width: 1024px) {
  .header__btn {
    display: none;
  }
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.social__link {
  display: block;
  width: 42px;
  height: 42px;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
.social__link:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.social__link--tg {
  background: url("../img/telegram.svg");
  background-size: cover;
}
.social__link--wa {
  background: url("../img/whatsapp.svg");
  background-size: cover;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .nav__list {
    width: 100%;
    -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;
  }
}
.nav__item:not(:last-child) {
  margin-right: 40px;
}
@media (max-width: 1024px) {
  .nav__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.nav__item:hover .nav__link {
  border-bottom: 2px solid #000;
}
.nav__link {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: #000;
  border-bottom: 2px solid #fff;
  padding-bottom: 3px;
  -webkit-transition: border 0.3s ease-in;
  transition: border 0.3s ease-in;
}
@media (max-width: 1024px) {
  .nav__link {
    color: #fff;
    border: none;
  }
}

.burger {
  --burger-width: 30px;
  --burger-height: 20px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  z-index: 1111;
  display: none;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .burger {
    display: block;
  }
}

@media (max-width: 1024px) {
  .menu--active {
    opacity: 1;
    width: 300px;
    height: 100vh;
    visibility: visible;
  }
}
.hero {
  padding-top: 105px;
  padding-bottom: 210px;
  margin: 0 15px;
  background: linear-gradient(0.392turn, rgba(16, 54, 63, 0.7) 0%, rgba(1, 114, 128, 0.7) 100%), url("../img/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 0;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 50px 0;
  }
}
.hero__content {
  margin: 0 auto;
  max-width: 760px;
}
.hero__title {
  margin: 0;
  margin-bottom: 60px;
  text-align: center;
  font-weight: 700;
  font-size: 60px;
  color: var(--light-color);
}
@media (max-width: 768px) {
  .hero__title {
    margin-bottom: 40px;
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.hero__text {
  margin: 0;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--light-color);
}
@media (max-width: 576px) {
  .hero__text {
    margin-bottom: 20px;
  }
}
.hero__text--red {
  margin-bottom: 80px;
  background-color: rgba(203, 47, 50, 0.5);
}
@media (max-width: 768px) {
  .hero__text--red {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .hero__text--red {
    margin-bottom: 20px;
  }
}
.hero__btn {
  position: relative;
  margin: 0 auto;
  width: 217px;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #cb2f32;
  border: 1px solid #cb2f32;
  color: var(--light-color);
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (max-width: 576px) {
  .hero__btn {
    margin: 0;
  }
}
.hero__btn:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  background-color: var(--light-color);
  color: #000;
}
.hero__btn::after {
  content: "";
  position: absolute;
  right: -54px;
  width: 54px;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("../img/play.svg");
  background-size: 8px 13px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #87080b;
}

.offer {
  padding-top: 105px;
  padding-bottom: 100px;
}
@media (max-width: 576px) {
  .offer {
    padding: 60px 0;
  }
}
.offer__title {
  margin: 0;
  text-align: center;
  margin-bottom: 80px;
  font-weight: 700;
  font-size: 56px;
  color: #19456b;
  line-height: 56px;
}
@media (max-width: 768px) {
  .offer__title {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 576px) {
  .offer__title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 24px;
  }
}
.offer__intro {
  margin: 0;
  margin-bottom: 100px;
  text-align: center;
  font-weight: 400;
  font-size: 21px;
  color: #000;
}
@media (max-width: 768px) {
  .offer__intro {
    margin-bottom: 50px;
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .offer__intro {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.offer__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
@media (max-width: 1024px) {
  .offer__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .offer__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.offer__item {
  padding: 40px 20px;
  background-color: var(--light-color);
  -webkit-box-shadow: 0px 2px 25px 0px rgba(0, 0, 142, 0.2);
  box-shadow: 0px 2px 25px 0px rgba(0, 0, 142, 0.2);
}
@media (max-width: 576px) {
  .offer__item {
    padding: 20px 10px;
  }
}
.offer__icon {
  margin: 0 auto;
  margin-bottom: 20px;
  display: block;
  width: 92px;
  height: 92px;
}
.offer__subtitle {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #017280;
}
@media (max-width: 576px) {
  .offer__subtitle {
    margin-bottom: 10px;
  }
}
.offer__text {
  margin: 0;
  font-weight: 400;
  text-align: center;
  font-size: 17px;
  color: #382933;
}
@media (max-width: 768px) {
  .offer__text {
    font-size: 16px;
  }
}

.steps {
  padding-top: 105px;
  padding-bottom: 150px;
  background: linear-gradient(0.407turn, rgb(16, 54, 63) 0%, rgb(1, 111, 128) 100%);
}
@media (max-width: 768px) {
  .steps {
    padding: 100px 0;
  }
}
@media (max-width: 576px) {
  .steps {
    padding: 60px 0;
  }
}
.steps__title {
  margin: 0;
  margin-bottom: 100px;
  font-weight: 600;
  text-align: center;
  font-size: 56px;
  color: var(--light-color);
}
@media (max-width: 768px) {
  .steps__title {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 576px) {
  .steps__title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .steps__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }
}
.steps__numbers {
  margin-bottom: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 768px) {
  .steps__numbers {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.steps__numbers-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .steps__numbers-item {
    height: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.steps__numbers-item:last-of-type .steps__numbers-row {
  display: none;
}
.steps__numbers-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 100%;
  background-color: var(--light-color);
  font-size: 22px;
  font-weight: 600;
  color: #000;
}
.steps__numbers-row {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--light-color);
}
@media (max-width: 768px) {
  .steps__numbers-row {
    width: 2px;
    height: 100%;
  }
}
.steps__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 768px) {
  .steps__items {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.steps__items-text {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  color: var(--light-color);
}
@media (max-width: 768px) {
  .steps__items-text {
    padding-top: 6px;
    height: 80px;
  }
}
@media (max-width: 576px) {
  .steps__items-text {
    padding-top: 11px;
    font-size: 16px;
  }
}

.about {
  padding: 100px 0;
}
@media (max-width: 576px) {
  .about {
    padding: 60px 0;
  }
}
.about__title {
  margin: 0;
  margin-bottom: 50px;
  font-weight: 600;
  text-align: center;
  font-size: 56px;
  color: #19456b;
}
@media (max-width: 768px) {
  .about__title {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 576px) {
  .about__title {
    font-size: 24px;
  }
}
.about__sldier {
  margin-bottom: 30px;
  padding-bottom: 50px;
}
.about__img {
  width: 100%;
}
.about__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 576px) {
  .about__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .about__item {
    -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;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.about__person {
  width: 180px;
  height: 180px;
}
.about__name {
  margin: 0;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #000;
}
@media (max-width: 768px) {
  .about__name {
    font-size: 18px;
  }
}
.about__descr {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #000;
}
@media (max-width: 768px) {
  .about__descr {
    font-size: 16px;
  }
}

.benefits {
  padding: 100px 0;
}
@media (max-width: 576px) {
  .benefits {
    padding: 0;
    padding-bottom: 60px;
  }
}
.benefits__title {
  margin: 0;
  margin: 0 auto;
  max-width: 792px;
  text-align: center;
  margin-bottom: 80px;
  font-weight: 700;
  font-size: 56px;
  color: #10363f;
  line-height: 56px;
}
@media (max-width: 768px) {
  .benefits__title {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 576px) {
  .benefits__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.benefits__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .benefits__wrapper {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.benefits__item--mb {
  margin-top: 50px;
}
@media (max-width: 576px) {
  .benefits__item--mb {
    margin: 0;
  }
}
.benefits__icon {
  margin: 0 auto;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 205px;
  height: 205px;
  background-color: var(--light-color);
  border-radius: 100%;
  -webkit-box-shadow: 0px 2px 25px 0px rgba(0, 0, 142, 0.2);
  box-shadow: 0px 2px 25px 0px rgba(0, 0, 142, 0.2);
  position: relative;
}
@media (max-width: 576px) {
  .benefits__icon {
    width: 150px;
    height: 150px;
  }
}
.benefits__icon svg {
  width: 100px;
}
@media (max-width: 576px) {
  .benefits__icon svg {
    width: 60px;
  }
}
.benefits__icon-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #017280;
  border-radius: 100%;
  color: var(--light-color);
  font-size: 22px;
  font-weight: 600;
}
.benefits__subtitle {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  color: #10363f;
}
@media (max-width: 576px) {
  .benefits__subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.benefits__text {
  margin: 0;
  text-align: center;
  font-size: 17px;
  color: #000;
}
@media (max-width: 576px) {
  .benefits__text {
    font-size: 16px;
  }
}

.contacts {
  padding: 100px 0;
}
@media (max-width: 576px) {
  .contacts {
    padding: 0;
    padding-bottom: 60px;
  }
}
.contacts__title {
  margin: 0;
  text-align: center;
  margin-bottom: 80px;
  font-weight: 700;
  font-size: 56px;
  color: #10363f;
  line-height: 56px;
}
@media (max-width: 768px) {
  .contacts__title {
    font-size: 36px;
    line-height: 36px;
  }
}
@media (max-width: 576px) {
  .contacts__title {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 24px;
  }
}
.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .contacts__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.contacts__form {
  max-width: 580px;
  height: 490px;
  width: 100%;
  padding: 70px;
  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;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-shadow: 0px 2px 25px 0px rgba(0, 0, 142, 0.2);
  box-shadow: 0px 2px 25px 0px rgba(0, 0, 142, 0.2);
}



@media (max-width: 1024px) {
  .contacts__form {
    margin-right: 20px;
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .contacts__form {
    margin: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .contacts__form {
    height: auto;
  }
}
.contacts__input {
  margin-bottom: 20px;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.contacts__input:focus {
  border: 1px solid rgb(0, 0, 0);
}
.contacts__checkbox-wrapper {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contacts__checkbox {
  margin-right: 15px;
}
@media (max-width: 576px) {
  .contacts__checkbox {
    margin-right: 10px;
  }
}
.contacts__checkbox-text {
  margin: 0;
  font-size: 14px;
}
.contacts__btn {
  width: 160px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #cb2f32;
  background-color: #cb2f32;
  font-weight: 600;
  font-size: 14px;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.contacts__btn:hover {
  background-color: var(--light-color);
  color: #000;
}
.contacts__right {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 490px;
}
@media (max-width: 768px) {
  .contacts__right {
    height: unset;
  }
}
.contacts__item {
  width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0px 2px 25px 0px rgba(0, 0, 142, 0.2);
  box-shadow: 0px 2px 25px 0px rgba(0, 0, 142, 0.2);
}
@media (max-width: 768px) {
  .contacts__item {
    width: 100%;
  }
  .contacts__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.contacts__img {
  width: 118px;
  height: 118px;
  background-color: #017280;
  padding: 25px;
  -o-object-fit: contain;
  object-fit: contain;
}
.contacts__img--red {
  background-color: #87080b;
}
@media (max-width: 576px) {
  .contacts__img {
    width: 80px;
    height: 80px;
    padding: 15px;
  }
}
.contacts__item-right {
  padding: 15px;
}
@media (max-width: 576px) {
  .contacts__item-right {
    padding: 10px;
  }
}
.contacts__item-name {
  margin: 0;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 576px) {
  .contacts__item-name {
    margin-bottom: 5px;
    font-size: 16px;
  }
}
.contacts__item-link {
  margin: 0;
  color: #017280;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 576px) {
  .contacts__item-link {
    font-size: 14px;
  }
}

.footer {
  padding: 100px 0;
  background: linear-gradient(0.407turn, rgb(16, 54, 63) 0%, rgb(1, 111, 128) 100%);
}
@media (max-width: 576px) {
  .footer {
    padding: 60px 0;
  }
}
.footer__top {
  margin-bottom: 100px;
  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;
}
@media (max-width: 1024px) {
  .footer__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .footer__top {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .footer__column {
    margin-bottom: 30px;
  }
}
.footer__logo {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .footer__logo {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .footer__list {
    margin-bottom: 30px;
  }
}
.footer__item:hover .footer__link {
  text-decoration: underline;
}
.footer__item:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .footer__item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.footer__link {
  font-size: 22px;
  font-weight: 500;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (max-width: 576px) {
  .footer__link {
    font-size: 18px;
  }
}
.footer__offer {
  margin: 0;
  width: 360px;
  font-weight: 400;
  font-size: 17px;
  color: var(--light-color);
}
@media (max-width: 576px) {
  .footer__offer {
    font-size: 16px;
  }
}
.footer__bottom {
  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: 768px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__bottom-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 33.3%;
  height: 140px;
  padding-left: 15px;
  background-color: #397A85;
}
.footer__bottom-item:nth-child(even) {
  background-color: #1E7280;
}
@media (max-width: 768px) {
  .footer__bottom-item {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .footer__bottom-item {
    height: 100px;
  }
}
.footer__bottom-img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 52px;
  height: 52px;
}
@media (max-width: 576px) {
  .footer__bottom-img {
    width: 42px;
    height: 42px;
  }
}
.footer__bottom-right {
  padding: 15px;
}
@media (max-width: 576px) {
  .footer__bottom-right {
    padding: 10px;
  }
}
.footer__bottom-text {
  margin: 0;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
  color: var(--light-color);
}
@media (max-width: 576px) {
  .footer__bottom-text {
    margin-bottom: 10px;
  }
}
.footer__bottom-link {
  font-size: 20px;
  font-weight: 700;
  color: var(--light-color);
}
@media (max-width: 576px) {
  .footer__bottom-link {
    font-size: 14px;
  }
}

