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

html {
  font-size: 62.5%;
}

body {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  color: #dedde5;
}
@media (max-width: 575px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #000;
  max-width: 100vw;
}
main > div:first-child {
  position: relative;
  z-index: 1;
  flex: 1;
}

.page-padding {
  padding: 15rem 0 6rem 0;
}
@media (max-width: 991px) {
  .page-padding {
    padding: 6rem 0 6rem 0;
  }
}

.title {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.title-secondary {
  display: inline-block;
  color: #fff;
  background-color: #70f0aa;
  padding: 0rem 0.8rem;
  border-radius: 4px;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.title-primary {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.4rem;
}

.subtitle {
  margin: 2rem 0;
}

@keyframes scaleUpScaleDown {
  0% {
    transform: translateZ(-1px) scale(1);
  }
  80% {
    transform: translateZ(-1px) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translateZ(-1px) scale(1.5);
    opacity: 0;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  padding: 1.2rem 2rem;
  line-height: 1;
  border-radius: 8px;
  transition: all 0.2s;
  border-radius: 9999px;
  transform-style: preserve-3d;
}
.btn::before {
  content: "";
  position: absolute;
  background-color: inherit;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  transform: scaleX(0.9) scaleY(0.9);
  visibility: visible;
  opacity: 1;
  transform: translateZ(-1px);
}
.btn:hover {
  transform: scale(1.05);
}
.btn:hover::before {
  animation-name: buttonAnimation;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}
@keyframes buttonAnimation {
  0% {
    transform: scaleX(0.9) scaleY(0.9) translateZ(-1px);
    visibility: hidden;
    opacity: 0;
  }
  50% {
    transform: scaleX(1.1) scaleY(1.2) translateZ(-1px);
    visibility: visible;
    opacity: 1;
  }
  100% {
    transform: scaleX(1.2) scaleY(1.4) translateZ(-1px);
    visibility: hidden;
    opacity: 0;
  }
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--border-white {
  border: 1px solid #fff;
}
.btn--border-white:hover {
  background-color: #d9d9d9;
  color: #000;
}
.btn--bg-purple {
  background-color: #7f36ff;
}
.btn--bg-purple:hover {
  background-color: #5400e9;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.social__item {
  color: #fff;
}

.form-group {
  margin-bottom: 1.6rem;
}
.form-group label {
  font-weight: 700;
}
.form-group input:not([type=file], [type=submit]),
.form-group textarea {
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid #25292b;
  color: #292929;
}
.form-group input:not([type=file], [type=submit])::placeholder,
.form-group textarea::placeholder {
  color: #adafb0;
}
.form-group input:not([type=file], [type=submit]):focus,
.form-group textarea:focus {
  outline: 0;
  border-bottom: 1px solid #70f0aa;
}

.form-submit {
  position: relative;
  text-align: center;
}
.form-submit .btn {
  min-width: 12rem;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.fixed-whatsapp {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.fixed-whatsapp i {
  font-size: 2.8rem;
  color: #fff;
}
.fixed-whatsapp::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #128c7e;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.footer-copyright {
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  color: #fff;
  text-transform: uppercase;
}
.footer-copyright__policy {
  color: #fff;
  position: absolute;
  right: 0;
  text-transform: none !important;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer-copyright__policy {
    position: relative;
    margin-left: 2rem;
  }
}

.header {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .header {
    position: relative;
    z-index: 2;
  }
}
.header-contact {
  background-color: #70f0aa;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .header-contact {
    height: auto;
  }
}
.header-contact__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
  padding: 0.4rem 0;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .header-contact__content {
    justify-content: center;
  }
}
.header-contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 575px) {
  .header-contact__item span {
    display: none;
  }
}
.header-contact__item span:hover {
  text-decoration: underline;
}
.header-contact__item a {
  color: #fff;
}
.header-contact__item a:hover {
  text-decoration: underline;
}
.header-contact__item:hover .header-contact__icon {
  background-color: #fff;
  color: #70f0aa;
  border: 2px solid #fff;
}
.header-contact__icon {
  background-color: #70f0aa;
  color: #fff;
  border: 2px solid #fff;
  transition: all 0.2s;
}
.header-contact__text-wrapped {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header-contact__text-wrapped a:not(:last-child)::after {
  content: " | ";
}
.header-contact__social .icon {
  background-color: #70f0aa;
  color: #fff;
  border: 2px solid #fff;
  transition: all 0.2s;
}
.header-contact__social .icon:hover {
  background-color: #fff;
  color: #70f0aa;
  border: 2px solid #fff;
}
.header-main {
  background-color: #292929;
  position: relative;
}
.header-main > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8rem;
}
@media (max-width: 991px) {
  .header-main > .container {
    padding: 0 1.2rem;
  }
}
.header-logo img {
  margin: auto;
  display: block;
  padding: 2rem 0;
  width: 30rem;
  max-width: 100%;
  transition: all 0.2s;
}
.header-nav {
  z-index: 1;
  flex: 1;
}
.header-nav:hover {
  z-index: 3;
}
@media (max-width: 991px) {
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
  }
}
@media (max-width: 991px) {
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-nav__wrapper {
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .header-nav__wrapper {
    position: unset;
  }
}
.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
@media (max-width: 991px) {
  .header-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    background-color: #292929;
  }
}
.header-nav__list > li {
  padding: 3rem 0;
  text-align: center;
}
@media (max-width: 991px) {
  .header-nav__list > li {
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    text-align: left;
    padding: 0 0 0 1.6rem;
  }
  .header-nav__list > li > span {
    display: flex;
    justify-content: space-between;
  }
  .header-nav__list > li > span > a {
    padding: 1rem 0;
    color: #fff;
    display: block;
    font-weight: 700;
  }
  .header-nav__list > li > span > button {
    border: none;
    background-color: transparent;
    color: #fff;
    padding: 0 2rem;
  }
  .header-nav__list > li > span > button i {
    transition: all 0.2s ease-in;
  }
  .header-nav__list > li > span > button.collapsed i {
    transform: rotate(-90deg);
  }
  .header-nav__list > li ul li:last-child {
    border: none;
  }
}
.header-nav__list > li > a,
.header-nav__list > li span a {
  width: 100%;
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  transition: all 0.2s;
  padding: 0.8rem 0rem;
  font-weight: 700;
}
.header-nav__list > li > a::after,
.header-nav__list > li span a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background-color: #70f0aa;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .header-nav__list > li > a,
  .header-nav__list > li span a {
    width: 100%;
    padding: 1rem 0;
    color: #fff;
  }
}
.header-nav__list > li > a:hover::after,
.header-nav__list > li span a:hover::after {
  width: 100%;
}
.header-nav__list > li.active > a::after {
  width: 100%;
}
.header-nav__list > li:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.header-nav__btn {
  height: 6.7rem;
  position: relative;
  left: 0;
  color: #fff;
  cursor: pointer;
  width: max-content;
  display: none;
  gap: 0.2rem;
  align-items: center;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
    height: 100%;
  }
}
.header-nav__btn > span {
  text-transform: uppercase;
  transition: all 0.2s;
}
.header-nav__icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}
.header-nav__icon-bar {
  position: absolute;
  width: 80%;
  height: 0.4rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.1s;
}
.header-nav__icon-bar--1 {
  top: 8px;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-nav__icon-bar--3 {
  bottom: 8px;
}
.header-nav__icon.opened + span {
  font-size: 1.6rem;
}
.header-nav__icon.opened .header-nav__icon-bar {
  height: 0.2rem;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
  visibility: hidden;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #fff;
}
.header-search__btn {
  background-color: #ea733d;
  color: #fff;
  border: none;
  height: 3.2rem;
  width: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.header-search__btn:hover {
  background-color: #dc5518;
}
.header-search__form {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: #292929;
  gap: 2rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease-in;
}
.header-search__form.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-search__form input {
  flex: 1;
  border: 1px solid #ececec;
  height: 3.2rem;
  padding: 0 1.2rem;
  transition: all 0.2s;
}
.header-search__form input:focus {
  outline: none;
  box-shadow: 0 0 2px #70f0aa;
}
.header-search__form button {
  border: none;
  background-color: #ea733d;
  color: #fff;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.header-search__form button:hover {
  background-color: #dc5518;
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  aspect-ratio: 1920/800;
  min-height: 50rem;
}
.banner-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.banner-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.banner-item__text {
  width: 40rem;
  max-width: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 25rem;
}
@media (max-width: 991px) {
  .banner-item__text {
    padding-bottom: 20%;
  }
}
.banner-item__text h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 100%;
  margin-bottom: 2rem;
}
.banner-item__text p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .banner-item__text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 991px) {
  .banner-item__text p {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .banner-item__text p {
    font-size: 1rem;
  }
}
.banner-item__text .btn {
  font-size: 1.8rem;
}
.banner .owl-carousel {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.banner .owl-dots {
  position: absolute;
  left: 66.67%;
  bottom: 1rem;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .banner .owl-dots {
    bottom: 0;
  }
}
.banner .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.banner .owl-dots .owl-dot:hover span {
  background-color: #fff;
}
.banner .owl-dots .owl-dot.active span {
  background-color: #fff;
}
.banner .owl-prev,
.banner .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .owl-prev {
  left: 2%;
}
.banner .owl-next {
  right: 2%;
}
.banner .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.banner .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #70f0aa !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.banner .owl-nav [class*=owl-]:hover {
  background-color: #42eb8f !important;
  opacity: 1;
  color: #000;
  text-decoration: none;
}

.breadcrumb {
  margin-top: 5rem;
  color: #898989;
  font-size: 1.4rem;
}
.breadcrumb-item a {
  color: #898989;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #898989;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f0da" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #454545;
}

.hero {
  text-align: center;
  padding: 6rem 0;
}
.hero-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.hero-header__review {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-header__review img {
  width: 2rem;
}
.hero-header__review span {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
}
.hero-header__text {
  font-weight: 200;
  font-size: 1.4rem;
}
.hero-main {
  font-size: 8.8rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.hero-main strong {
  color: #7f36ff;
}
@media (max-width: 991px) {
  .hero-main {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .hero-main {
    font-size: 5rem;
  }
}
@media (max-width: 575px) {
  .hero-main {
    font-size: 3rem;
  }
}
@media (max-width: 340px) {
  .hero-main {
    font-size: 2.4rem;
  }
}
.hero-main__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 8rem;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 575px) {
  .hero-main__wrapper {
    padding: 2rem 0 5rem;
  }
}
.hero-main__logo {
  height: 14rem;
  width: auto !important;
}
@media (max-width: 991px) {
  .hero-main__logo {
    height: 11rem;
  }
}
@media (max-width: 767px) {
  .hero-main__logo {
    height: 10rem;
  }
}
@media (max-width: 575px) {
  .hero-main__logo {
    height: 5.5rem;
  }
}
.hero-text {
  display: block;
  margin: auto;
  width: 90rem;
  max-width: 100%;
}
.hero-ctas {
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}

.tracks {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 35rem;
  margin-bottom: 4rem;
  overflow: hidden;
}
@media (max-width: 1500px) {
  .tracks {
    height: 30rem;
  }
}
@media (max-width: 1199px) {
  .tracks {
    height: 25rem;
  }
}
@media (max-width: 767px) {
  .tracks {
    height: 20rem;
  }
}
@media (max-width: 500px) {
  .tracks {
    height: 15rem;
  }
}
.tracks .track {
  position: absolute;
  width: 120%;
  left: 50%;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}
.tracks .track--purple {
  background-color: #7f36ff;
  transform: rotate(5deg) translate(-50%);
  top: 190px;
  z-index: 1;
}
@media (max-width: 1500px) {
  .tracks .track--purple {
    top: 150px;
  }
}
@media (max-width: 1199px) {
  .tracks .track--purple {
    top: 120px;
  }
}
@media (max-width: 991px) {
  .tracks .track--purple {
    top: 98px;
  }
}
@media (max-width: 767px) {
  .tracks .track--purple {
    top: 68px;
  }
}
@media (max-width: 500px) {
  .tracks .track--purple {
    top: 53px;
  }
}
@media (max-width: 400px) {
  .tracks .track--purple {
    top: 50px;
  }
}
.tracks .track--yellow {
  background-color: #f6c86a;
  top: 25px;
  transform: rotate(-5deg) translate(-50%);
}
.tracks .track h2 {
  width: max-content;
  color: #000;
  font-weight: 900;
  font-size: 10rem;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  text-align: left;
  transition: all 0.2s linear;
}
@media (max-width: 1500px) {
  .tracks .track h2 {
    font-size: 7rem;
  }
}
@media (max-width: 991px) {
  .tracks .track h2 {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .tracks .track h2 {
    font-size: 5rem;
  }
}
@media (max-width: 500px) {
  .tracks .track h2 {
    font-size: 4rem;
  }
}
@media (max-width: 400px) {
  .tracks .track h2 {
    font-size: 3.2rem;
  }
}

.call {
  max-width: 100%;
  text-align: center;
}
.call-title {
  width: 102.6rem;
  margin: auto;
  max-width: 100%;
  text-align: center;
}
.call-title span {
  font-family: "Gochi Hand", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #70f0aa;
  font-size: 4rem;
}
.call-title h2 {
  font-weight: 500;
  color: #fff;
  font-size: 4.8rem;
}
@media (max-width: 991px) {
  .call-title h2 {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .call-title h2 {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .call-title h2 {
    font-size: 2.8rem;
  }
}
.call-cta {
  margin: auto;
  margin-top: 2.4rem;
}
.call-banner {
  margin-top: 4rem;
}
.call-banner img {
  width: 100%;
}

.testimonial {
  padding: 6rem 0;
}
.testimonial-text {
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 0;
}
@media (max-width: 575px) {
  .testimonial-text {
    padding: 0 3.2rem;
  }
}
.testimonial-text__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
  margin-bottom: 4rem;
}
.testimonial-text__header img {
  width: 2rem;
}
.testimonial-text__header span {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
}
.testimonial-text__title {
  font-size: 6rem;
  width: 54.8rem;
  max-width: 100%;
  line-height: 1;
}
.testimonial-text__title strong {
  color: #f6c86a;
}
@media (max-width: 991px) {
  .testimonial-text__title {
    font-size: 5rem;
  }
}
@media (max-width: 767px) {
  .testimonial-text__title {
    font-size: 4rem;
  }
}
@media (max-width: 575px) {
  .testimonial-text__title {
    font-size: 3rem;
  }
}
.testimonial-text__paragraph {
  width: 66.2rem;
  max-width: 100%;
  font-size: 2.4rem;
}
.testimonial-text__paragraph span {
  color: #70f0aa;
}
@media (max-width: 575px) {
  .testimonial-text__paragraph {
    font-size: 2rem;
  }
}
.testimonial-text__seals {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .testimonial-text__seals {
    justify-content: center;
  }
}
.testimonial-text__seals img {
  height: 10rem;
  width: auto;
}
@media (max-width: 575px) {
  .testimonial-text__seals img {
    height: 7rem;
  }
}
@media (max-width: 400px) {
  .testimonial-text__seals img {
    height: 5rem;
  }
}
.testimonial-items {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.testimonial .testimonial-item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 3.2rem;
}
.testimonial .testimonial-item__stars {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.testimonial .testimonial-item__stars i {
  color: #7f36ff;
}
.testimonial .testimonial-item__text {
  color: #fff;
  font-size: 1.4rem;
}
.testimonial .testimonial-item__person {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.testimonial .testimonial-item__person-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial .testimonial-item__person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial .testimonial-item__person-avatar span {
  border-radius: 50%;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7f36ff;
  color: #fff;
  font-weight: 1.8rem;
  font-weight: 600;
}
.testimonial .testimonial-item__person-infos {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.testimonial .testimonial-item__person-name {
  font-weight: 600;
  color: #fff;
  font-size: 1.4rem;
}
.testimonial .testimonial-item__person-role {
  font-size: 1.2rem;
}

.work {
  background: url("../images/work-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 12rem 0;
  position: relative;
  background-attachment: fixed;
}
.work::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 8rem;
  background: linear-gradient(to bottom, #000, transparent);
}
.work::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 8rem;
  background: linear-gradient(to top, #000, transparent);
}
.work-box {
  width: 69rem;
  max-width: 100%;
  padding: 6rem 8rem;
  background-color: rgba(0, 0, 0, 0.83);
  border-radius: 2.5rem;
}
@media (max-width: 991px) {
  .work-box {
    margin: auto;
  }
}
@media (max-width: 575px) {
  .work-box {
    padding: 4rem;
  }
}
.work-box__title {
  font-family: "Gochi Hand", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 8rem;
  color: #fff;
  line-height: 0.7;
}
.work-box__title span {
  color: #7f36ff;
}
@media (max-width: 991px) {
  .work-box__title {
    font-size: 7rem;
  }
}
@media (max-width: 767px) {
  .work-box__title {
    font-size: 6rem;
  }
}
@media (max-width: 575px) {
  .work-box__title {
    font-size: 4rem;
  }
}
.work-box__text {
  font-weight: 300;
  font-size: 2rem;
  margin-top: 3.2rem;
}
@media (max-width: 767px) {
  .work-box__text {
    font-size: 1.6rem;
  }
}

.guarantee {
  padding: 6rem 0;
}
.guarantee-text h2 {
  font-family: "Gochi Hand", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 7.2rem;
  margin-bottom: 3.2rem;
  line-height: 0.7;
}
.guarantee-text h2 strong {
  color: #7f36ff;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .guarantee-text h2 {
    font-size: 6.2rem;
  }
}
@media (max-width: 767px) {
  .guarantee-text h2 {
    font-size: 5.2rem;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .guarantee-text h2 {
    font-size: 4.2rem;
  }
}
.guarantee-text p {
  font-weight: 300;
  font-size: 1.8rem;
}
.guarantee-text p strong {
  font-weight: 900;
}
@media (max-width: 767px) {
  .guarantee-text p {
    text-align: center;
  }
}
.guarantee-image {
  border-radius: 3.2rem;
  overflow: hidden;
  width: 90%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .guarantee-image {
    width: 50%;
    margin: auto;
    margin-top: 2rem;
  }
}
.guarantee-image img {
  width: 100%;
  height: auto;
}

.choose {
  padding: 6rem 0;
  width: 105rem;
  max-width: 100%;
  margin: auto;
  text-align: center;
}
.choose h2 {
  font-size: 4.8rem;
  font-weight: 500;
}
.choose h2 strong {
  color: #7f36ff;
  font-weight: 500;
}
@media (max-width: 991px) {
  .choose h2 {
    font-size: 3.8rem;
  }
}
@media (max-width: 767px) {
  .choose h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .choose h2 {
    font-size: 2.4rem;
  }
}
.choose h3 {
  font-family: "Gochi Hand", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  margin: auto;
  margin-top: 3rem;
  line-height: 0.9;
  max-width: 100%;
  width: 80rem;
}
.choose h3 strong {
  color: #7f36ff;
  font-weight: 400;
}
@media (max-width: 991px) {
  .choose h3 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .choose h3 {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .choose h3 {
    font-size: 2.4rem;
  }
}

.service {
  padding-bottom: 6rem;
}
.service-image {
  width: 100%;
}
.service-image img {
  width: 100%;
}
.service-text {
  width: 60rem;
  max-width: 100%;
  padding: 4rem;
}
@media (max-width: 575px) {
  .service-text {
    padding: 2rem;
  }
}
.service-text__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.service-text__heading span {
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 9999px;
  padding: 0.4rem 2rem;
  font-weight: 500;
}
.service-text__heading h2 {
  font-family: "Gochi Hand", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 7.2rem;
  line-height: 0.9;
  margin-bottom: 1.2rem;
}
.service-text__heading h2.blue {
  color: #4dacf8;
}
.service-text__heading h2.yellow {
  color: #f6c86a;
}
.service-text__heading h2.light-purple {
  color: #dc91f2;
}
.service-text__heading h2.purple {
  color: #7f36ff;
}
.service-text__heading h2.green {
  color: #70f0aa;
}
@media (max-width: 991px) {
  .service-text__heading h2 {
    font-size: 6.2rem;
  }
}
@media (max-width: 767px) {
  .service-text__heading h2 {
    font-size: 5.2rem;
  }
}
@media (max-width: 575px) {
  .service-text__heading h2 {
    font-size: 4.2rem;
  }
}
.service-text__heading p {
  font-weight: 700;
}
.service-text__description {
  font-weight: 300;
}

.price {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 1.5rem;
  padding-bottom: 6rem;
}
.price-card {
  max-width: 100%;
  margin: auto;
  background-color: #fff;
  padding: 2.4rem;
  border-radius: 3.2rem;
  display: inline-block;
  display: flex;
  flex-direction: column;
}
.price-card__header {
  display: flex;
  flex-direction: column;
}
.price-card__header > img {
  align-self: flex-end;
}
.price-card__header > span {
  display: block;
  color: #000;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.25;
}
.price-card__header > span s {
  font-weight: 700;
}
@media (max-width: 767px) {
  .price-card__header > span {
    font-size: 1.6rem;
  }
}
.price-card__header p {
  font-weight: 700;
  color: #7f36ff;
  font-size: 8.2rem;
  margin-bottom: 0;
  line-height: 1.25;
  letter-spacing: -5px;
}
.price-card__header p span {
  font-size: 5.4rem;
}
@media (max-width: 991px) {
  .price-card__header p span {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .price-card__header p span {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .price-card__header p span {
    font-size: 2.8rem;
  }
}
@media (max-width: 991px) {
  .price-card__header p {
    font-size: 7rem;
    letter-spacing: -3px;
  }
}
@media (max-width: 767px) {
  .price-card__header p {
    font-size: 6rem;
  }
}
@media (max-width: 575px) {
  .price-card__header p {
    font-size: 4.4rem;
  }
}
.price-card__topics {
  color: #000;
  list-style: none;
  padding: 0;
  margin: 2rem 0 4rem 0;
}
.price-card__topics li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 2;
}
.price-card__topics li span {
  color: #7f36ff;
  font-size: 2rem;
}
.price-card .btn {
  width: 90%;
  align-self: center;
  padding: 0.8rem 2rem;
}
.price-card .btn img {
  height: 3.2rem;
}
.price-footer {
  width: 68rem;
  max-width: 100%;
  margin: auto;
  margin-top: 2rem;
  text-align: center;
}
.price-footer p span {
  color: #7f36ff;
  display: block;
}

.faq {
  padding-bottom: 10rem;
}
.faq-title {
  color: #fff;
  text-align: center;
  line-height: 0.7;
  font-family: "Gochi Hand", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 6.4rem;
}
.faq-title span {
  color: #7f36ff;
}
@media (max-width: 991px) {
  .faq-title {
    font-size: 5.4rem;
  }
}
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faq-item {
  padding: 2rem;
}
.faq-item__question {
  background-color: transparent;
  color: #fff;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1.8rem;
  transition: all 0.2s ease-in;
  text-align: left;
}
.faq-item__question.collapsed {
  color: #dedde5;
}
@media (max-width: 575px) {
  .faq-item__question {
    font-size: 1.6rem;
  }
}
.faq-item__answer {
  color: #fff;
}

.page-404 {
  background-image: url(../images/404-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.page-404 .container {
  width: 80rem;
}
.page-404-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #70f0aa;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.page-404-main * {
  max-width: 100%;
}
.page-404-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.page-404-main h1 span {
  font-size: 8rem;
  display: block;
  color: #292929;
}
.page-404-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.page-404-main p {
  color: #fff;
}
.page-404-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
  margin-bottom: 2rem;
}

.thanks {
  background-image: url(../images/404-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.thanks .container {
  width: 80rem;
}
.thanks-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #70f0aa;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.thanks-main * {
  max-width: 100%;
}
.thanks-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.thanks-main h1 span {
  font-size: 8rem;
  display: block;
  color: #292929;
}
.thanks-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.thanks-main p {
  color: #fff;
}
.thanks-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
}

.container {
  max-width: 1170px;
}

/*# sourceMappingURL=main.css.map */
