* {
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: "Arial Bold";
  src: url("../fonts/Arial-Bold.woff2") format(".woff2");
}
@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-Regular.woff2") format(".woff2");
}
@font-face {
  font-family: "Lexend 500";
  src: url("../fonts/Lexend-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Lexend";
  src: url("../fonts/Lexend-Regular.ttf") format("truetype");
}
.header {
  background-color: #1c1c1c;
  height: 55px;
  padding: 0 40px;
}
.header img {
  height: 56px;
  width: 56px;
}
@media (max-width: 400px) {
  .header {
    height: 35px;
    padding: 0 20px;
  }
  .header img {
    height: 36px;
    width: 36px;
  }
}
.hero {
  background-color: #c9daf8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero__bg {
  padding: 100px 16px 0;
  position: relative;
  flex-grow: 1;
  background: url("../img/bg.jpg") no-repeat center center/cover;
}

.hero__container {
  max-width: 1130px;
  padding: 0 20px;
  margin: 0 auto 88px auto;
}
@media (max-width: 768px) {
  .hero__container {
    margin: 0 auto 64px auto;
  }
}
@media (max-width: 400px) {
  .hero__container {
    margin: 0 auto 24px auto;
  }
}
.title {
  font-family: "Lexend 500";
  text-transform: uppercase;
  font-size: 72px;
  font-weight: 500;
  line-height: 100px;
  color: #fff;
  text-align: center;
  padding: 38px 0 32px 0;
}
@media (max-width: 768px) {
  .title {
    font-size: 36px;
    padding: 32px 0 24px 0;
  }
}
.scroll-btn {
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  background-image: url("../img/icon-arrow-down.svg");
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-color 0.4s ease;
  padding: 20px;
  border: none;
  position: absolute;
  bottom: 24px;
  width: 48px;
  height: 30px;
  left: 50%;
  transform: translate(-50%, -24px);
}
.scroll-btn:hover {
  cursor: pointer;
  background-color: rgba(255, 252, 204, 0.662745098);
}
@media (max-width: 768px) {
  .scroll-btn {
    width: 36px;
    height: 22px;
  }
}
@media (max-width: 400px) {
  .scroll-btn {
    width: 24px;
    bottom: -16px;
    height: 15px;
  }
}
.btn__link {
  display: block;
  max-width: 874px;
  width: 100%;
  padding: 16px 0;
  background: #111;
  border: 0.5px solid rgb(17, 143, 221);
  border-radius: 30px;
  margin: 0 auto;
  font-family: "Helvetica-Neue-Black-Condensed";
  font-style: normal;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  color: #d9d9d9;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 160px;
  transition: 0.3s;
}
.btn__link:hover {
  background: #000000;
}
.text,
.subtitle,
.text-small {
  font-family: "Arial";
}
.text {
  margin: 0 auto 100px auto;
  text-align: center;
  font-size: 28px;
  line-height: 138%;
  color: #fff;
}
@media (max-width: 768px) {
  .text {
    margin: 0 auto 100px auto;
  }
  .btn__link {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .text {
    font-size: 24px;
    margin: 0 auto 24px auto;
  }
}
.subtitle {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 138%;
  margin: 0 auto 36px auto;
}
@media (max-width: 400px) {
  .subtitle {
    font-size: 16px;
    margin: 0 auto 24px auto;
  }
}
.text-small {
  max-width: 934px;
  text-align: center;
  margin: 0 auto;
  padding: 0 0 120px 0;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .text-small {
    max-width: 664px;
    padding: 0 0 64px 0;
  }
}
@media (max-width: 400px) {
  .text-small {
    font-size: 12px;
    padding: 0 0 24px 0;
  }
}
.footer {
  background-color: #b7b7b7;
  height: 140px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-around;
}
.footer__copyright {
  color: #1c1c1c;
  font-family: "Montserrat";
  font-size: 12px;
}
@media (max-width: 400px) {
  .footer__copyright {
    width: 50%;
    margin: 0 auto;
  }
}
.footer__links {
  display: flex;
  gap: 16px;
  justify-content: center;
  cursor: pointer;
}
.footer__links img {
  height: 28px;
  width: 28px;
}
@media (max-width: 400px) {
  .footer {
    justify-content: center;
    gap: 15px;
  }
}
