.hero-banner {
  position: relative;
  color: white;
}

.hero-banner__bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  filter: brightness(0.4);
  z-index: -10
}

.hero-banner__info {
  color: white
}

.main-form {
  background: white;
  padding: 2em 2em 4em;
  margin: 2em 1em;
  position: relative;
  border-radius: 0.5em;
  overflow: hidden;
}

.main-form__title {
  border: none;
  text-align: center;
  /* max-width: 11em; */
}

.main-form__input,
.main-form__select {
  display: block;
  width: 100%;
  padding: 0.8em 0.2em;
  font-size: 0.9em;
  color: #5f5f5f;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #e9e7e7;
  outline: none;
  transition: .3s background-color ease;
}

.main-form__input::placeholder {
  color: #5f5f5f;
}

.main-form__input:focus,
.main-form__select:focus {
  background-color: #f8fbff;
}

.main-form__info {
  color: #5f5f5f;
  margin: 0.5em 0 0;
  font-size: 0.8em;
}

.main-form__submit {
  width: 100%;
  padding: 1em;
  background: #ff6600;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 0;
  outline: none;
}

.post-cards-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
}

.post-card {
  box-shadow: 0 0 15px #c5c5c5;
  height: 100%;
  border-radius: 0.5em;
  overflow: hidden;
  transition: .3s box-shadow ease
}

.post-card:hover { 
  box-shadow: 0 0 20px #b5b5b5
}

.post-card a {
  color: inherit;
  text-decoration: none
}

.post-card__media > * {
  width: 100%;
  height: 100%;
}

.post-card__content {
  padding: 1em;
}

.post-card__title {
  margin: 0;
  margin-bottom: 0.2em;
  line-height: 1.1;
}

.post-card__info {
  font-size: 0.9em;
  margin-bottom: 1em;
}

.benefits {
  background: #f4f4f4;
  padding-top: 1em;
  margin-top: 1em;
}

.benefits__man {
  padding-top: 2em;
  width: 100%;
  height: 100%;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .benefits__man {
    padding-top: 5em;
  }
}

.benefits__list {
  list-style-image: url(../img/check.png)
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





.main-footer {
  background-color: #212528;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
}

.main-footer__slogan {
  color: #ffffff;
  font-size: 1.6em;
  font-weight: normal;
  margin-bottom: 1em;
}

.main-footer__logo-container {
  max-width: 14em;
  margin-bottom: 0.5em;
}

.main-footer__logo {
  width: 100%;
}

.newsletter {
  display: flex;
  align-items: center;
}

.newsletter__form {
  display: flex;
}

.newsletter__info {
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  margin-right: 1em;
}

.newsletter__input {
  color: #161616;  
  border: none;
  min-width: 17em;
  padding: 0.8em 1em;
}

.newsletter__input::placeholder {
  color: #474747
}

.newsletter__submit {
  border: none;
  background-color: #e56010;
  color: #ffffff;
  padding: 0.8em 1em;
}

.newsletter__input:focus,
.newsletter__submit:focus {
  outline: #e56010 dashed 3px;
}

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

.footer-sites__title {
  font-size: 1.4em;
  margin: 1em 0 0;
}

.footer-sites__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.footer-sites__item::before {
  content: '|';
  margin-left: 0.3em;
}

.footer-sites__item:first-child::before {
  content: '';
}

@media (max-width: 698px) {
  .newsletter {
    flex-direction: column;
  }

  .newsletter__form {
    margin: 2em 0 1em;
  }
}

@media (max-width: 528px) {
  .footer-sites {
    font-size: 0.7em;
  }  
}



.u-v-center {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}