* {
  margin: 0;
  padding: 0;
}

.header {
  background-color: #1c1c1c;
  height: 55px;
  padding: 8px 40px;
}
.header img {
  height: 66px;
}
@media (max-width: 400px) {
  .header {
    height: 35px;
    padding: 8px 20px;
  }
  .header img {
    height: 46px;
  }
}
.hero {
  background-color: #c9daf8;
}
.hero__bg {
  position: relative;
  height: calc(100vh - 56px);
  background: url("../img/9c2332eb-13e7-442c-8709-0a56a272d13f.jpeg") no-repeat
    center center/cover;
}
@media (max-width: 768px) {
  .hero__bg {
    height: 409px;
    background: url("../img/bg-1-tb.png") no-repeat center center/cover;
  }
}
@media (max-width: 400px) {
  .hero__bg {
    height: 165px;
    background: url("../img/bg-1-mb.png") 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: #1c4587;
  text-align: center;
  padding: 38px 0 32px 0;
}
@media (max-width: 400px) {
  .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 {
  background-color: #1c4587;
  display: flex;
  width: 100%;
  height: 20px;
  margin: 0 auto 160px auto;
  justify-content: center;
  align-items: center;
  padding: 20px 12px;
  border-radius: 0%;
  border: none;
  transition: background-color 0.4s ease, border-radius 0.4s ease;
}
@media (max-width: 768px) {
  .btn {
    max-width: 430px;
    margin: 0 auto 80px auto;
    padding: 16px 12px;
  }
}
@media (max-width: 400px) {
  .btn {
    max-width: 200px;
    padding: 4px 48px;
    margin: 0 auto 56px auto;
  }
}
.btn:hover {
  background-color: #07255a;
  border-radius: 16px;
}
.btn a {
  display: block;

  padding: 8px 0;
  width: 100%;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
.btn a:visited {
  text-decoration: none;
  color: #fff;
}
.text,
.subtitle,
.text-small {
  font-family: "Arial";
}
.text {
  margin: 0 auto 100px auto;
  text-align: center;
  font-size: 28px;
  line-height: 138%;
}
@media (max-width: 768px) {
  .text {
    margin: 0 auto 100px auto;
  }
}
@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;
}
@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;
  }
}
