@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
* {
  font-family: "Figtree", sans-serif;
}

body {
  background: url(../img/bg.webp) no-repeat center/cover fixed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.burger, .mobile-menu, .overlay, .mobile {
  display: none;
}

main {
  flex: 1;
}

.sub-home h1 {
  color: #fff;
  font-size: 52px;
  text-align: center;
  margin: 0 0 16px 0;
}
.sub-home h2 {
  color: #fff;
  font-size: 32px;
  text-align: center;
  margin-top: 50px;
}
.sub-home p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  font-size: 16px;
  color: #fff;
  line-height: 1.625rem;
}
.sub-home section:nth-child(1) {
  background: url("../img/sub-bg.webp") no-repeat center/cover;
  padding: 100px 0;
}
.sub-home .faq {
  margin-top: 0;
}
.sub-home .btn {
  background: #ee2754;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  max-width: 160px;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto auto auto;
  border-radius: 30px;
}

.white {
  max-width: 820px;
  margin: auto;
  padding: 50px 0;
}
.white a {
  font-weight: bold;
}
.white p {
  font-size: 20px;
  line-height: 150%;
}
.white * {
  color: #fff;
  text-decoration: none;
}

.review-section {
  background: #000;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  color: #fff;
  padding: 30px 0;
}
.review-section .date {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
}

.review-body {
  display: flex;
}
.review-body .text p {
  max-width: 800px;
  font-size: 18px;
  line-height: 150%;
}
.review-body .img {
  max-width: 400px;
}
.review-body .img img {
  width: 100%;
}

.review-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.review-bottom .rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-bottom .num {
  color: #fff;
  font-size: 36px;
}
.review-bottom .stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.review-bottom .stars .star {
  width: 16px;
  height: 16px;
  background: #db8c0a;
  clip-path: polygon(50% 0%, 63% 38%, 100% 38%, 73% 62%, 82% 100%, 50% 75%, 18% 100%, 27% 62%, 0% 38%, 37% 38%);
}
.review-bottom .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ee2754;
  color: #fff;
  max-width: 240px;
  width: 100%;
  height: 45px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

header {
  background: #000;
  height: 60px;
}

.header-wrapper {
  max-width: 1110px;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrapper .logo {
  max-width: 212px;
  width: 100%;
}
.header-wrapper .logo img {
  height: 40px;
  width: 100%;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: #fafafa;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  height: 60px;
}
nav a:hover {
  color: #ee2754;
}
nav a.active {
  border-bottom: 2px solid #ee2754;
}

.under-header-banner {
  background: url("../img/under-h-banner.webp") no-repeat center/cover;
  padding: 30px 0;
}

.under-header-banner-container {
  max-width: 1110px;
  margin: auto;
}
.under-header-banner-container p {
  max-width: 571px;
  font-size: 16px;
  line-height: 1.625rem;
  color: #fff;
}

.container {
  max-width: 1110px;
  margin: auto;
}

.faq {
  background: #000;
  padding: 100px 0;
  margin: 40px 0 0 0;
}
.faq h2 {
  color: #fff;
  text-align: center;
  font-size: 32px;
}

.accordion {
  max-width: 800px;
  margin: auto;
  width: 100%;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #232324;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 20px;
  border-radius: 8px;
  height: 72px;
  box-sizing: border-box;
  cursor: pointer;
}
.accordion-header .icon {
  width: 32px;
  height: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accordion-header .icon span {
  position: absolute;
  display: block;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.accordion-header .icon span:nth-child(1) {
  width: 21px;
  height: 3px;
  left: 5.5px;
}
.accordion-header .icon span:nth-child(2) {
  height: 21px;
  width: 3px;
  top: 5.5px;
  left: 14.5px;
}

.accordion-item.active .icon span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.accordion-body {
  color: #fff;
  font-size: 18px;
  line-height: 150%;
  padding: 0 27px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-radius: 0 0 8px 8px;
}

.accordion-item.active .accordion-body {
  padding: 25px 27px;
  max-height: 500px;
}

.accordion-item + .accordion-item {
  margin-top: 12px;
}

footer {
  background: #171c2b;
  padding-bottom: 30px;
  padding-top: 30px;
}

.footer-container {
  display: flex;
  gap: 80px;
  max-width: 1110px;
  margin: auto;
}

.footer-nav {
  display: flex;
  gap: 80px;
}

.nav-col .title {
  font-size: 20px;
  color: #fff;
}
.nav-col .border {
  width: 30px;
  height: 2px;
  background: #848484;
  margin: 24px 0;
}
.nav-col a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  margin: 24px 0;
}

.copyright {
  max-width: 800px;
  margin: 50px auto auto auto;
  font-size: 12px;
  color: #fff;
}

@media screen and (max-width: 1160px) {
  .mobile-menu a.active {
    border-bottom: 2px solid #ee2754;
    padding-bottom: 5px;
    width: fit-content;
  }
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .burger .open {
    display: none;
  }
  .burger .close {
    display: block;
  }
  .burger.active .open {
    display: block;
  }
  .burger.active .close {
    display: none;
  }
  header {
    height: 52px;
  }
  .mobile-menu {
    position: fixed;
    top: 52px;
    height: 100%;
    width: 50%;
    background: #000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    transform: translateX(-100%);
    opacity: 0;
    user-select: none;
    pointer-events: none;
    transition: 0.3s ease-in-out;
    z-index: 101;
  }
  .mobile-menu a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
  }
  .mobile-menu.show {
    transform: translateX(0);
    opacity: 1;
    user-select: auto;
    pointer-events: auto;
  }
  .overlay {
    display: block;
    position: fixed;
    top: 52px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(7.6999998093px);
    backdrop-filter: blur(7.6999998093px);
    z-index: 100;
    opacity: 0;
    user-select: none;
    pointer-events: none;
    transition: 0.3s ease-in-out;
  }
  .overlay.show {
    opacity: 1;
    user-select: auto;
    pointer-events: auto;
  }
  .white {
    padding: 0 20px;
  }
  .container {
    padding: 0 20px;
  }
  footer {
    padding: 30px 20px 30px 20px;
  }
}
@media screen and (max-width: 660px) {
  .review-body {
    flex-direction: column;
  }
  .review-body .img {
    margin: 20px auto;
  }
  .review-bottom {
    flex-direction: column;
    margin-top: 0;
  }
  .review-bottom .btn {
    margin-top: 50px;
    max-width: 100%;
  }
  .mobile-menu {
    width: 80%;
  }
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
  .white p {
    font-size: 16px;
  }
}
@media screen and (max-width: 380px) {
  .white {
    padding: 0 10px;
  }
}

/*# sourceMappingURL=sub-page.css.map */
