* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", sans-serif;
  height: 100vh;
}
@media screen and (max-width: 991px) {
  body {
    height: auto;
  }
}

.main {
  position: relative;
  background-image: url("../images/bg_site.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.main:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.main:after {
  content: url("../images/overlay_fabiola.png");
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 991px) {
  .main {
    height: auto;
  }
}

.section {
  position: relative;
  text-align: center;
  padding: 80px 0;
  z-index: 1;
}
.section h1 {
  font-size: 68px;
  line-height: 82.3px;
  font-weight: 700;
  text-transform: uppercase;
  color: #BCD88E;
  text-shadow: 0 2px 8px #12140F;
  margin: 0;
}
.section h2 {
  font-size: 60px;
  line-height: 91.43px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFD96E;
  text-shadow: 0 2px 8px #12140F;
  margin: 0;
}
.section h3 {
  font-size: 32px;
  line-height: 38.73px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 8px #12140F;
  margin-bottom: 64px;
}
.section h4 {
  font-size: 24px;
  line-height: 29.05px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 8px #12140F;
  margin-bottom: 24px;
}
.section h5 {
  font-size: 22px;
  line-height: 26.63px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px #12140F;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .section h1 {
    font-size: 58px;
    line-height: 72.3px;
  }
  .section h2 {
    font-size: 50px;
    line-height: 81.43px;
  }
  .section h3 {
    font-size: 30px;
    line-height: 36.73px;
  }
  .section h4 {
    font-size: 22px;
    line-height: 27.05px;
  }
  .section h5 {
    font-size: 20px;
    line-height: 24.63px;
  }
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 0 0 #74973A;
  box-shadow: 0 4px 0 0 #74973A;
}
.media__item {
  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: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  white-space: nowrap;
  border-right: 2px solid #74973A;
  padding: 14px 48px;
}
.media__item p {
  font-size: 16px;
  line-height: 19.36px;
  font-weight: 400;
  color: #74973A;
  margin: 0;
}
.media__item p strong {
  display: block;
  font-size: 20px;
  line-height: 24.2px;
  font-weight: 800;
}
.media__item a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.media__item:last-of-type {
  border: 0;
}
.media__icon {
  display: block;
  margin-bottom: 9px;
}
@media screen and (max-width: 991px) {
  .media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .media__item {
    border-right: 0;
    border-bottom: 2px solid #74973A;
  }
}