@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[role=button]:focus:not(:focus-visible) {
  outline: none;
}
a:focus-visible,
button:focus-visible,
[role=button]:focus-visible {
  outline: 2px solid #007ba9;
  outline-offset: 2px;
}

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

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #212121;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  color: #1a1b1e;
}

a {
  color: #007ba9;
}
a:hover, a:focus {
  color: rgb(0%, 33.6790810999%, 46.2745098039%);
}

.container {
  max-width: 1170px;
}

body {
  padding-top: 96px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.site-header {
  background: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
}
.site-header__topbar {
  height: 40px;
  background: linear-gradient(to right, #008380, #0075a1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
}
.site-header__guide-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.13px;
  text-decoration: none;
}
.site-header__guide-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}
.site-header__guide-link:hover, .site-header__guide-link:focus {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}
.site-header__navbar {
  height: 56px;
  background: #fff;
}
.site-header__navbar .container {
  height: 100%;
}
.site-header__navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-header__logo img {
  width: 170px;
  height: 55px;
  object-fit: contain;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 56px;
}
.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.13px;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-header__nav-link:hover, .site-header__nav-link:focus {
  color: #007ba9;
  text-decoration: none;
  border-bottom-color: #007ba9;
}
.site-header__nav-link.active, .site-header__nav-link.is-active {
  color: #007ba9;
  border-bottom-color: #007ba9;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.site-header__search-btn, .site-header__hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.site-header__search-btn img, .site-header__hamburger img {
  width: 40px;
  height: 40px;
  display: block;
}
.site-header__search-btn .fa, .site-header__hamburger .fa {
  font-size: 20px;
  color: #013144;
}
.site-header__mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.site-header__mobile-nav.is-open {
  display: flex;
}
.site-header__mobile-link {
  display: block;
  padding: 14px 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #013144;
  text-transform: uppercase;
  letter-spacing: 0.13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.site-header__mobile-link:last-child {
  border-bottom: none;
}
.site-header__mobile-link:hover, .site-header__mobile-link:focus {
  color: #007ba9;
  background-color: rgba(0, 123, 169, 0.04);
  text-decoration: none;
}
.site-header__mobile-link.is-active {
  color: #007ba9;
  background-color: rgba(0, 123, 169, 0.06);
}

.site-footer {
  background: #013144;
  padding: 20px 0;
  min-height: 60px;
  display: flex;
  align-items: center;
}
.site-footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.site-footer__link:hover, .site-footer__link:focus {
  color: #fff;
  text-decoration: underline;
}

.banner-thin__image {
  height: 315px;
  border-radius: 24px;
  background-size: cover;
  background-position: center center;
  margin: 0 10px;
}
.banner-thin__icons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: -102px;
}

.icon-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}
.icon-list__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 103px;
  min-height: 102px;
  padding: 10px 4px;
  border: 2px solid #007ba9;
  background: #fff;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.icon-list__tile:hover, .icon-list__tile:focus {
  background: #007ba9;
  border-color: #fff;
  text-decoration: none;
}
.icon-list__tile:hover .icon-list__label, .icon-list__tile:focus .icon-list__label {
  color: #fff;
}
.icon-list__tile:hover .icon-list__icon img, .icon-list__tile:focus .icon-list__icon img {
  filter: brightness(0) invert(1);
}
.icon-list__tile.is-active {
  background: #007ba9;
  border-color: #fff;
}
.icon-list__tile.is-active .icon-list__label {
  color: #fff;
}
.icon-list__tile.is-active .icon-list__icon img {
  filter: brightness(0) invert(1);
}
.icon-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 61px;
}
.icon-list__icon img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(36%) sepia(100%) saturate(600%) hue-rotate(143deg) brightness(0.9);
  transition: filter 0.15s ease;
}
.icon-list__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 9px;
  line-height: 11px;
  text-align: center;
  text-transform: uppercase;
  color: #008582;
  padding-top: 5px;
  transition: color 0.15s ease;
}

.block-news {
  background: #fff;
  padding: 40px 0 60px;
}
.block-news--media {
  padding-top: 0;
}
.block-news__tabs-band {
  background: #edf0f2;
  padding: 70px 0;
  margin-bottom: 20px;
}
.block-news__tabs-band .block-news__tabs {
  padding-bottom: 0;
  margin-bottom: 0;
}
.block-news__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 30px;
  padding-bottom: 16px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .block-news__tabs {
    gap: 50px;
  }
}
.block-news__tab {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 1.1;
  color: #013144;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 6px;
}
@media (min-width: 768px) {
  .block-news__tab {
    font-size: 42px;
  }
}
.block-news__tab:hover, .block-news__tab:focus {
  color: #013144;
  text-decoration: none;
}
.block-news__tab.is-active::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to right, #008380, #0075a1);
}
.block-news__cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-card__image-link {
  display: block;
  text-decoration: none;
}
.news-card__image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 367/244;
  background: #edf0f2;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.news-card__image:hover img {
  transform: scale(1.03);
}
.news-card__placeholder {
  object-fit: contain !important;
  padding: 20px;
  background: #edf0f2;
}
.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.news-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #1a1b1e;
  margin: 0;
  text-decoration: none;
}
.news-card__title a {
  color: inherit;
  text-decoration: none;
}
.news-card__title a:hover {
  color: #007ba9;
}
.news-card__excerpt {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #212121;
  margin: 0;
}
.news-card__read-more {
  font-family: "Exo", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: #007ba9;
  text-decoration: none;
}
.news-card__read-more:hover {
  text-decoration: underline;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 16px 32px;
  border-radius: 59px;
  background: linear-gradient(to right, #008380, #0075a1);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.btn-gradient:hover, .btn-gradient:focus {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.banner-icon-list {
  padding: 16px 0;
  background: #edf0f2;
}
.banner-icon-list .container {
  display: flex;
  justify-content: center;
}

.hero-slider {
  padding: 10px 0 0;
  position: relative;
  margin: 0 10px;
}
.hero-slider__track .slick-list {
  border-radius: 24px;
}
.hero-slider__slide {
  aspect-ratio: 1870/945;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  position: relative;
}
.hero-slider__caption {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 57%;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-slider__caption {
    right: 30%;
    padding: 20px;
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .hero-slider__caption {
    right: 5%;
    left: 12px;
    top: 12px;
    padding: 14px;
    gap: 12px;
  }
}
.hero-slider__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #013144;
  margin: 0;
}
@media (max-width: 576px) {
  .hero-slider__title {
    font-size: 16px;
  }
}
.hero-slider__icon-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero-slider__icon-bar .container {
  display: flex;
  justify-content: center;
}
@media (max-width: 980px) {
  .hero-slider__icon-bar {
    position: static;
    background: #edf0f2;
    padding: 16px 0;
  }
}
.hero-slider .slick-dots {
  bottom: 112px;
}
@media (max-width: 968px) {
  .hero-slider .slick-dots {
    bottom: 8px;
  }
}
.hero-slider .slick-dots li button::before {
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
}
.hero-slider .slick-dots li.slick-active button::before {
  color: #fff;
  opacity: 1;
}
.hero-slider .slick-prev,
.hero-slider .slick-next {
  z-index: 2;
  width: 40px;
  height: 40px;
}
.hero-slider .slick-prev::before,
.hero-slider .slick-next::before {
  color: #fff;
  font-size: 30px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.hero-slider .slick-prev {
  left: 12px;
}
.hero-slider .slick-next {
  right: 12px;
}

.section-about {
  background: #edf0f2;
  padding: 60px 0;
}
.section-about__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #013144;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.section-about__title span {
  color: #007ba9;
}
.section-about__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #212121;
}
.section-about__text * {
  font-family: inherit !important;
}
.section-about__links-col {
  padding-top: 20px;
}
.section-about__links-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #013144;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.section-about__link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-about__link {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #007ba9;
  text-decoration: underline;
}
.section-about__link:hover, .section-about__link:focus {
  color: #013144;
  text-decoration: underline;
}

.product-page {
  background: #f9f9f9;
  padding: 30px 0 80px;
}

.product-layout {
  display: flex;
  gap: 30px;
  align-items: stretch;
  min-height: 500px;
}

.product-sidebar {
  flex: 1;
  display: flex;
  gap: 2px;
  min-width: 0;
}
.product-sidebar__col {
  flex: 1;
  background: #edf0f2;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-sidebar__item {
  display: block;
  padding: 4px 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #8a9399;
  text-decoration: none;
  transition: color 0.15s ease;
}
.product-sidebar__item:hover, .product-sidebar__item:focus {
  color: #013144;
  text-decoration: none;
}
.product-sidebar__item.is-active {
  color: #007ba9;
  font-weight: 700;
  text-decoration: none;
}
.product-sidebar__item.is-active:hover {
  color: #007ba9;
}

.product-detail {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.product-detail__header {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  min-height: 110px;
  padding-bottom: 12px;
}
.product-detail__icon {
  width: 80px;
  flex-shrink: 0;
}
.product-detail__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(36%) sepia(100%) saturate(600%) hue-rotate(143deg) brightness(0.9);
}
.product-detail__breadcrumb {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  padding-bottom: 8px;
  border-bottom: 2px solid #008582;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: #008582;
  flex-wrap: wrap;
}
.product-detail__breadcrumb-link {
  color: #008582;
  text-decoration: none;
}
.product-detail__breadcrumb-link:hover {
  text-decoration: underline;
}
.product-detail__breadcrumb-sep, .product-detail__breadcrumb-cur {
  color: #008582;
}
.product-detail__name {
  background: #edf0f2;
  border-bottom: 1px solid #dcdcdc;
  padding: 10px 15px 11px;
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  color: #007ba9;
}
.product-detail__doc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dcdcdc;
  padding: 14px 15px 14px;
  text-decoration: none;
}
.product-detail__doc-name {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.product-detail__doc-pdf {
  width: 33px;
  height: auto;
  flex-shrink: 0;
  margin-left: 10px;
}
.product-detail__doc:hover .product-detail__doc-name {
  color: #007ba9;
}
.product-detail__bottom {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  align-items: flex-start;
}
.product-detail__packaging {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-detail__packaging-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #333;
  margin: 0;
}
.product-detail__packaging-list {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
.product-detail__packaging-list p, .product-detail__packaging-list li {
  margin: 0 0 4px;
}
.product-detail__cta {
  align-self: flex-start;
  margin-top: 10px;
}
.product-detail__image {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.product-detail__image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.product-detail--mobile {
  margin-top: 20px;
}
.product-detail--mobile .product-detail__header {
  display: none;
}

.product-mobile {
  padding-top: 16px;
}
.product-mobile__select {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 8px 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: #fff;
  color: #013144;
  appearance: none;
}

.section-merch {
  background: #edf0f2;
  padding: 70px 0;
}
.section-merch__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: #013144;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .section-merch__title {
    font-size: 42px;
  }
}
.section-merch__title span {
  color: #007ba9;
  display: block;
}

.section-merch-body {
  background: #fff;
  padding: 50px 0 70px;
}
.section-merch-body__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #212121;
}
.section-merch-body__catalog {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 992px) {
  .section-merch-body__catalog {
    position: relative;
    z-index: 1;
    margin-top: -160px;
  }
}
@media (max-width: 768px) {
  .section-merch-body__catalog {
    margin-top: 32px;
  }
}
.section-merch-body__image-link {
  display: block;
  text-decoration: none;
}
.section-merch-body__image {
  width: 230px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  display: block;
}

.news-list-page__title-band {
  background: #edf0f2;
  padding: 70px 0;
}

.news-list-page__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: #013144;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .news-list-page__title {
    font-size: 42px;
  }
}

.news-list-page {
  background: #fff;
  padding: 40px 0 60px;
}

.news-list-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  row-gap: 32px;
}

.news-list-col {
  width: 33.333%;
  padding: 0 12px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .news-list-col {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .news-list-col {
    width: 100%;
  }
}

.news-item-page__title-band {
  background: #edf0f2;
  padding: 40px 0;
}

.news-item-page {
  background: #fff;
  padding: 40px 0 60px;
}
.news-item-page__media {
  margin-bottom: 32px;
}
.news-item-page__media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.news-item-page__media iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 16px;
}
.news-item-page__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: #1a1b1e;
  margin: 0;
}
.news-item-page__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #212121;
}
.news-item-page__text p {
  margin: 0 0 12px;
}
.news-item-page__download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #007ba9;
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
}
.news-item-page__download:hover {
  text-decoration: underline;
}

.media-gallery-section {
  background: #edf0f2;
  padding: 40px 0;
}
.media-gallery-section__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #013144;
  margin: 0 0 24px;
}

.media-links-section {
  background: #fff;
  padding: 40px 0;
}
.media-links-section__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #013144;
  margin: 0 0 20px;
}
.media-links-section__body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #212121;
}
.media-links-section__body a {
  color: #007ba9;
  text-decoration: none;
}
.media-links-section__body a:hover {
  text-decoration: underline;
}

.media-video-section {
  background: #edf0f2;
  padding: 40px 0;
}
.media-video-section__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #013144;
  margin: 0 0 20px;
}
.media-video-section iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 16px;
}

.section-contact__title-band {
  background: #edf0f2;
  padding: 40px 0;
}

.section-contact__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  color: #013144;
  text-transform: uppercase;
  margin: 0;
}

.section-contact__intro {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #212121;
  margin: 10px 0 0;
  max-width: 782px;
}

.section-contact {
  background: #fff;
  padding: 60px 0;
}
.section-contact__col-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.8px;
  color: #013144;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.section-contact__address, .section-contact__emails {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #212121;
  margin: 0;
}
.section-contact__address a, .section-contact__emails a {
  color: #007ba9;
  text-decoration: none;
}
.section-contact__address a:hover, .section-contact__emails a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form__row {
  display: flex;
  gap: 12px;
}
@media (max-width: 576px) {
  .contact-form__row {
    flex-direction: column;
  }
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #c9cfd3;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #212121;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form textarea:focus {
  border-color: #007ba9;
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form textarea::placeholder {
  color: #8a9399;
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form__submit {
  align-self: flex-end;
  border: none;
  cursor: pointer;
}
.contact-form__feedback {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 4px 0 0;
}
.contact-form__feedback--success {
  background: rgba(0, 133, 130, 0.1);
  color: #008582;
}
.contact-form__feedback--error {
  background: rgba(229, 57, 53, 0.1);
  color: #e53935;
}

.certificate-page__title-band {
  background: #edf0f2;
  padding: 70px 0;
}

.certificate-page {
  background: #fff;
  padding: 50px 0 70px;
}
.certificate-page__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: #013144;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .certificate-page__title {
    font-size: 42px;
  }
}
.certificate-page__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.certificate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: calc(33.333% - 16px);
  text-decoration: none;
  transition: opacity 0.15s ease;
}
@media (max-width: 768px) {
  .certificate-card {
    width: calc(50% - 12px);
  }
}
@media (max-width: 576px) {
  .certificate-card {
    width: 100%;
  }
}
.certificate-card:hover {
  opacity: 0.85;
}
.certificate-card__image {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  width: 100%;
}
.certificate-card__image img {
  width: 100%;
  height: auto;
  display: block;
}
.certificate-card__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #013144;
  text-align: left;
  width: 100%;
  margin: 0;
}

@media (max-width: 1024px) {
  body {
    padding-top: 0;
  }
  .site-header {
    position: relative;
  }
}
