* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", system-ui, Avenir, Helvetica, Arial, sans-serif;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", system-ui, Avenir, Helvetica, Arial, sans-serif;
  font-weight: 800;
}

.title {
  margin-bottom: 40px;
}
.title h1 {
  color: #111;
  font-size: 48px;
  text-transform: uppercase;
}
.title.light h1 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .title h1 {
    font-size: 28px;
  }
  .title h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

p {
  line-height: 170%;
}

section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.padding-size {
  padding-left: 164px;
  padding-right: 164px;
}
@media screen and (max-width: 1200px) {
  .padding-size {
    padding-left: 120px;
    padding-right: 120px;
  }
}
@media screen and (max-width: 992px) {
  .padding-size {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media screen and (max-width: 768px) {
  .padding-size {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.order-button {
  display: inline-block;
  margin-top: 24px;
  padding: 24px 32px;
  border-radius: 4px;
  background: rgb(203, 139, 0);
  background: linear-gradient(90deg, rgb(203, 139, 0) 0%, rgb(226, 180, 74) 35%, rgb(226, 180, 74) 100%);
  color: #111;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 100%;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}
.order-button:hover, .order-button:focus {
  background-color: goldenrod;
  color: #000;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .order-button {
    font-size: 14px;
    letter-spacing: 0;
    padding: 18px 24px;
  }
}

.package-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding: 24px 32px;
  width: 100%;
  text-align: center;
  border: 1px solid #cacaca;
  border-radius: 8px;
  color: #6a6a6a;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}
.package-button i {
  font-size: 24px;
  color: #cb8b00;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}
.package-button:hover, .package-button:focus {
  color: #111;
  border-color: #cb8b00;
}
.package-button:hover i, .package-button:focus i {
  transform: translateX(6px);
}

.navigation {
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 990;
}
.navigation .hamburger {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  z-index: 999;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.navigation .hamburger i {
  font-size: 24px;
}
.navigation .hamburger i.hide {
  display: none;
}
.navigation .links {
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.navigation .links li {
  margin: 0 12px;
}
.navigation .links li a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
}
.navigation .links li a:hover, .navigation .links li a:focus {
  color: #1a1a1a;
}
@media screen and (min-width: 769px) {
  .navigation .hamburger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .navigation .logo-img {
    width: 100px;
  }
  .navigation .links {
    padding-left: 0;
    height: 0;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-2000px);
    -webkit-transform: translateY(-2000px);
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
  }
  .navigation.opened .links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111;
    z-index: 992;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  .navigation.opened .links li {
    margin: 16px 0;
  }
  .navigation.opened .links li a {
    color: #fff;
  }
  .navigation.opened .hamburger {
    flex-shrink: 0;
    position: fixed;
    right: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navigation.opened .hamburger i {
    color: #fff;
  }
}

.hero {
  width: 100%;
  min-height: 100vh;
  background-color: #fafafa;
  background: radial-gradient(circle at 18.7% 37.8%, rgb(250, 250, 250) 0%, rgb(225, 234, 238) 90%);
  padding-top: 140px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero .hero-wrapper {
  width: 100%;
}
.hero .hero-grid {
  width: 100vw;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .hero .hero-grid {
    display: flex;
    flex-direction: column;
  }
}
.hero .slogan {
  text-align: center;
  padding-top: 96px;
  margin-bottom: 80px;
}
.hero .slogan h1 {
  font-size: 56px;
  margin: 0;
  margin-bottom: 16px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero .slogan p {
  margin: 16px 0;
  font-size: 18px;
  line-height: 150%;
}
.hero .slogan p span {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .hero .slogan h1 {
    font-size: 32px;
  }
  .hero .slogan p {
    font-size: 14px;
  }
}
.hero .hero-video-wrapper {
  position: relative;
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  .hero {
    min-height: auto;
    max-height: 2000px;
  }
  .hero .slogan {
    margin-top: 0;
    margin-bottom: 80px;
    text-align: center;
    padding-right: 0;
  }
}

#intro {
  padding-top: 96px;
}
#intro p {
  font-size: 18px;
  line-height: 170%;
}
#intro .text-bold {
  font-weight: 600;
}
#intro .intro-img {
  margin-top: 80px;
  text-align: center;
}
#intro .intro-img img {
  max-width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #intro {
    padding-top: 48px;
  }
}

#faq {
  padding-top: 96px;
  padding-bottom: 96px;
}

.accordion-header button {
  font-weight: 600;
  font-size: 18px;
}

.accordion-header button[aria-expanded=true],
.accordion-header button:focus {
  background-color: #f7f7f7;
  color: #111;
  box-shadow: 0 0 0 0.25rem rgba(157, 129, 5, 0.25);
}
.accordion-header button[aria-expanded=true]::after,
.accordion-header button:focus::after {
  color: #cb8b00 !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.money-back {
  background-color: #141425;
  padding-top: 96px;
  padding-bottom: 96px;
  color: rgba(255, 255, 255, 0.9);
}
.money-back .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 64px;
}
.money-back .icons img {
  width: 140px;
  max-width: 30%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .money-back .icons {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .money-back {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

footer.main-footer {
  padding-top: 64px;
  padding-bottom: 64px;
}
footer.main-footer .footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 24px 0;
  padding: 0;
  justify-content: center;
}
footer.main-footer .footer-links li a {
  color: #8b5f01;
}
@media screen and (max-width: 480px) {
  footer.main-footer .footer-links {
    flex-direction: column;
  }
}

.plan-box {
  background-color: #fff;
  border-radius: 30px;
}
.plan-box .top-part {
  padding: 40px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  transform: scale(1.02);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.plan-box .top-part h2 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.plan-box .top-part .price {
  font-size: 32px;
  font-weight: 400;
}
.plan-box .content {
  padding: 48px 40px;
  padding-top: 56px;
}
.plan-box .content .features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.plan-box .content .features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}
.plan-box .content .features li h5 {
  margin: 0;
  font-weight: 600;
}
.plan-box .content .features li i {
  width: 32px;
  font-size: 24px;
  color: #cb8b00;
}
.plan-box .content .features li:first-child {
  margin-top: 0;
}
.plan-box.premium .top-part .price {
  color: #fff !important;
}
@media screen and (max-width: 768px) {
  .plan-box .content {
    padding: 40px 24px;
    padding-bottom: 24px;
  }
  .plan-box .content .package-button {
    margin-top: 32px;
    padding: 18px 24px;
  }
  .plan-box .content .features li {
    gap: 0;
  }
  .plan-box .content .features li h5 {
    font-size: 16px;
  }
  .plan-box .top-part {
    padding: 24px 24px;
  }
  .plan-box .top-part h2 {
    font-size: 32px;
    margin-bottom: 6px;
  }
  .plan-box .top-part .price {
    font-size: 24px;
  }
}

.plan {
  padding-top: 96px;
  padding-bottom: 96px;
  background: radial-gradient(circle at 18.7% 37.8%, rgb(250, 250, 250) 0%, rgb(225, 234, 238) 90%);
}
@media screen and (max-width: 992px) {
  .plan {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .plan img {
    margin-bottom: 32px;
  }
}

.black-gradient {
  background: radial-gradient(circle at 24.1% 68.8%, rgb(50, 50, 50) 0%, rgb(0, 0, 0) 99.4%);
}

.black-gradient2 {
  background: radial-gradient(circle at 10% 20%, rgb(0, 0, 0) 0%, rgb(45, 45, 45) 90.2%);
}

.gold-gradient {
  background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
}

.gold-gradient2 {
  background: linear-gradient(90deg, rgb(203, 139, 0) 0%, rgb(226, 180, 74) 35%, rgb(226, 180, 74) 100%);
}

.grey-gradient {
  background: #171614;
  background: linear-gradient(135deg, #171614, #8f8f8f);
}

.red-gradient {
  background: radial-gradient(circle at 10% 20%, rgb(101, 23, 23) 0%, rgb(44, 2, 16) 90%);
}

.red-gradient2 {
  background: radial-gradient(circle at 10% 20%, rgb(221, 49, 49) 0%, rgb(119, 0, 0) 90%);
}

.blue-gradient {
  background: radial-gradient(circle at 1.8% 4.8%, rgb(17, 23, 58) 0%, rgb(58, 85, 148) 90%);
}

.blue-gradient2 {
  background: linear-gradient(112.1deg, rgb(20, 30, 61) 11.4%, rgb(19, 38, 101) 70.2%);
}

.reveal {
  position: relative;
  transform: translateY(250px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.legal-wrapper {
  padding: 48px 0;
  border-bottom: 1px solid #cacaca;
}
.legal-wrapper img {
  margin-bottom: 32px;
}
.legal-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 24px;
  font-size: 24px;
  color: #cb8b00;
}
.legal-wrapper h3 {
  font-size: 18px;
}
.legal-wrapper li {
  margin: 12px 0;
}
.legal-wrapper a {
  color: #8b5f01;
}
@media screen and (min-width: 992px) {
  .legal-wrapper p {
    font-size: 18px;
    line-height: 170%;
  }
}

.accordion-body a {
  color: #8b5f01;
  text-decoration: none;
}
.accordion-body a:hover, .accordion-body a:focus {
  text-decoration: underline;
}

.swiper {
  width: 100%;
  max-width: 1920px;
  padding-top: 50px;
  padding-bottom: 50px;
  transform: translateY(-50px);
  -webkit-transform: translateY(-50px);
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

.swiper-slide {
  width: 70%;
  opacity: 1;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-object-fit: contain;
  filter: contrast(40%);
  -webkit-filter: contrast(40%);
}

.swiper-slide-active {
  opacity: 1;
}
.swiper-slide-active img {
  filter: contrast(100%);
  -webkit-filter: contrast(100%);
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: #474747;
}/*# sourceMappingURL=styles.css.map */