.header {
  background: linear-gradient(180deg, #1C5A7C 0%, #507B94 100%);
  padding: 24px 0;
}

.container {
  max-width: 1145px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.header__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__icon {
  display: none;
}

.header__line {
  width: 100%;
  height: 1px;
  background: #fff;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: auto;
}

.header__menu a {
  color: #FFF;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

@media(max-width:767px) {
  .header {
    padding: 12px 0;
  }

  .header__icon {
    display: block;
  }

  .header__line,
  .header__menu {
    display: none;
  }

}

.hero {
  padding: 42px 0;
}

.hero__content {
  max-width: 831px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__title {
  color: #000;
  font-family: Roboto;
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
}

.hero__title a {
  color: #016CA2;
}

.hero__img {
  width: fit-content;
}

.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__text {
  color: #000;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
}

.hero__text a {
  color: #016CA2;
  font-weight: 700;
}

.hero__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__subtitle {
  color: #000;
  font-family: Roboto;
  font-size: 24px;
  font-weight: 700;
}

.hero__title-sub {
  color: #000;
  font-family: Roboto;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
}

.hero__bg {
  background: #E2ECF0;
  justify-content: center;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 245px;
}


.hero__name {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

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




.footer {
  background: linear-gradient(180deg, #1C5A7C 0%, #507B94 100%);
  padding: 42px 0;
}

.container {}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__column a {
  color: #FFF;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}


@media(max-width:575px) {
  .footer__content {
    flex-direction: column-reverse;
    align-items: center;
  }

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

