@import url("https://fonts.googleapis.com/css2?family=Exo:wght@400;700&display=swap");
html,
body {
  font-family: "Exo", sans-serif;
  font-size: 14px;
}

.color-white {
  color: #ffffff;
}

.color-blue {
  color: #010053;
}

h1 {
  font-size: 6.107rem;
  font-weight: bold;
  line-height: 1.1;
}
@media (max-width: 992px) {
  h1 {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

h4 {
  font-size: 2.857rem;
  font-weight: normal;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  h4 {
    font-size: 2rem;
  }
}

a {
  text-decoration: none;
}

.logo {
  height: 132px;
  margin-top: 65px;
  margin-bottom: 65px;
}

.logo-footer {
  width: 190px;
  height: auto;
}

header {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  header {
    text-align: center;
  }
}

.section-content {
  position: relative;
  background-image: url("../images/bg-image-mareterra.jpg");
  padding-bottom: 48%;
  background-size: cover;
}
@media (max-width: 992px) {
  .section-content {
    padding-bottom: 75%;
  }
}
@media (max-width: 768px) {
  .section-content {
    padding-bottom: 125%;
  }
}
.section-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 50%;
  z-index: 10;
}
.section-content .content {
  position: absolute;
  z-index: 20;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.section-content .content h1, .section-content .content h4 {
  text-transform: uppercase;
}

footer {
  background-color: #010053;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.43;
  padding-top: 35px;
  padding-bottom: 50px;
}
footer .footer-el {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  footer .footer-el {
    text-align: center;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  footer .footer-el div {
    margin-bottom: 25px;
  }
}
footer .social-link {
  display: flex;
  flex-direction: row;
}
footer .social-link li:not(:first-child) {
  margin-left: 35px;
}
@media (max-width: 1200px) {
  footer .social-link {
    flex-direction: column;
  }
  footer .social-link li:not(:first-child) {
    margin-left: 0;
  }
}