@font-face {
  font-family: "ABCFavorit";
  src: url("../font/ABCFavorit-Regular-Trial.otf");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "ABCFavorit";
}

.header {
  min-height: 100vh;
  background-image: url("../img/header-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .logo {
  position: absolute;
  top: 24px;
  inset-inline-start: 24px;
}
.header .content {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 800px;
  text-align: center;
}
.header .content h1 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .header .content h1 {
    font-size: 30px;
  }
}
.header .content p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 768px) {
  .header .content p {
    font-size: 18px;
  }
}
.header .actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.header .actions a {
  text-decoration: none;
}
.header .actions .btn-primary {
  background-color: none;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.header .actions .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.3098039216);
  color: #000;
}

.msg {
  min-height: 500px;
  background-color: #2f394c;
  color: #fff;
  display: flex;
  align-items: center;
}
.msg h1 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 768px) {
  .msg h1 {
    font-size: 30px;
  }
}
.msg p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  max-width: 550px;
}
@media (max-width: 768px) {
  .msg p {
    font-size: 18px;
  }
}

.img-box {
  min-height: 700px;
  background-image: url("../img/sec-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-box .content {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.img-box .content h1 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .img-box .content h1 {
    font-size: 30px;
  }
}
.img-box .actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.img-box .actions a {
  text-decoration: none;
}
.img-box .actions .btn-primary {
  background-color: none;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.img-box .actions .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.3098039216);
  color: #000;
}

.footer {
  min-height: 220px;
  background-color: #2f394c;
  display: flex;
  align-items: center;
}
.footer a {
  text-decoration: none;
  color: #fff;
}
.footer .copywright {
  color: #fff;
}
.footer .title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer [class*=col] {
    margin-bottom: 24px;
  }
}