/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/InstrumentSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/InstrumentSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*MAIN*/

html {
  scroll-behavior: smooth;
}

.main {
  background: black;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.main * {
  color: white;
}

.orange-link {
  color: #ffad35;
  text-transform: uppercase;
  font-size: 1.125rem;
}
.sticker {
  color: #ffad35;
  padding: 0.65rem 1rem;
  background: #212121;
  margin-bottom: 2.75rem;
  width: fit-content;
  border: 1px solid #323232;
  border-radius: 5rem;
}
/*HEADER*/

header {
  display: flex;
  justify-content: center;
  padding: 1rem 6rem 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: #000000;
  position: fixed;
}

.header-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1250px;
  padding-bottom: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: #858585;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-link:hover {
  color: white;
}

.white-btn {
  background: white;
  border-radius: 0.75rem;
  font-family: "Instrument Serif", serif;
  padding: 0.75rem 1.5rem;
  color: black;
  text-decoration: none;
  font-size: 1.5rem;
  transition: opacity 0.2s;
}
.white-btn:hover {
  opacity: 0.8;
}

.mob-btn {
  display: none;
}
.mobile-menu {
  display: none;
  transition: height 0.3s ease;
}
.mob-btns {
  display: none;
}
.logo{
    max-width: 100px;
}

@media (max-width: 1024px) {
  header {
    padding: 1rem 2rem 0;
    display: flex;
    flex-direction: column;
  }
  div.nav {
    display: none;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);

    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      transform 0.25s ease;
    will-change: max-height, opacity, transform;
  }
  .menu__inner {
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mobile-menu.active {
    max-height: calc(100vh - 80px);
    opacity: 1;
    transform: translateY(0);
  }

  header .white-btn {
    display: none;
  }
  .mob-btns {
    display: flex;
    gap: 1rem;
  }
  .mob-btns .white-btn {
    display: block;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
  }
  .mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    line-height: 1.35;
    border-bottom: 1px solid #ffffff10;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }
  .open-menu {
    width: 55px;
    height: 50px;
    background-size: contain;
    background: url("../img/open-mob-btn.svg") no-repeat center;
  }
  .open-menu.opened {
    background: url("../img/close-mob-btn.svg") no-repeat center;
  }
}
@media (max-width: 480px) {
  header {
    padding: 1rem 0 0;
  }
  .header-container {
    width: 95%;
    margin: 0 auto;
  }
}

/*HERO-SECTION*/
.hero-section {
  padding: 11.5rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  background-image: url("../img/back.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 80%,
    #000 100%
  );
  pointer-events: none;
  z-index: 2;
}
.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 200px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 80%,
    #000 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-container {
  max-width: 770px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 6rem;
  font-family: "Instrument Serif", serif;
  margin-bottom: 3.375rem;
  line-height: 1.1;
}

.yellow-circle {
  font-style: italic;
  position: relative;
}

.yellow-circle::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: -17%;
  top: 15px;
  transform: rotate(-8deg);
  width: 400px;
  height: 100px;
  border: 2px solid #ffad35;
  border-radius: 100%;
}

.hero-text {
  font-size: 1.25rem;
  line-height: 1.4;
  width: 95%;
  margin-bottom: 6.25rem;
  color: #ffffff80;
}

@media (max-width: 1024px) {
  .hero-section {
    padding: 10rem 2rem;
  }
  .hero-title {
    font-size: 5rem;
  }
  .yellow-circle::after {
    width: 250px;
    height: 70px;
    left: 0;
  }
  .hero-text {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-section {
    padding: 10rem 1rem;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-text {
    font-size: 0.75rem;
  }
  .yellow-circle::after {
    width: 200px;
    height: 55px;
    left: -10%;
    top: 10px;
    transform: rotate(-5deg);
  }
  .hero-text {
    width: 100%;
  }
}

/*SWIPER-SECTION*/

.slider-section {
  padding: 8rem 6rem 11rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slider-container {
  max-width: 1250px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding-top: 6.5rem;
}

.slider-title-container {
  font-size: 5.875rem;
  font-family: "Instrument Serif", serif;
  position: absolute;
  top: 0;
  left: 320px;
}

.slider-title-container h2 {
  width: fit-content;
}

.slider-title-first {
  color: rgba(255, 255, 255, 0.5);
}
.slider-title-second {
  margin-left: 6.5rem;
  font-style: italic;
}

.slider-title-second .yellow-circle::after {
  left: 0;
}

.mySwiper {
  align-self: stretch;
  width: 100%;
  overflow: visible;
}

.swiper-wrapper {
  margin-bottom: 1rem;
  cursor: grab;
}
.swiper-wrapper:active {
  cursor: grabbing;
}

.slide-img {
  margin-bottom: 4.5rem;
  max-height: 560px;
  width: 100%;
}
.slide-title {
  font-size: 2.5rem;
  font-family: "Instrument Serif", serif;
  margin-bottom: 1.25rem;
}
.slide-text {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #b3b3b3;
}

.swiper-slide {
  width: 350px;
  flex-shrink: 0;
}
.slide-2 {
  padding-top: 10rem;
}
.slide-3 {
  padding-top: 20rem;
}
.slide-4 {
  padding-top: 10rem;
}

.swiper-navigation {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  height: 90px;
  width: 90px;
  background: url("../img/swiper-btn.svg");
  margin-top: 0;
}

.swiper-button-prev {
  transform: rotate(180deg);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

@media (max-width: 1024px) {
  .slider-section {
    padding: 8rem 2rem 7rem;
  }
  .slider-title-container {
    position: static;
    margin-bottom: 1.5rem;
  }
  .slider-title-container h2 {
    font-size: 4rem;
  }
  .swiper-slide {
    width: 250px;
  }
  .slide-img {
    margin-bottom: 2rem;
  }
  .slide-title {
    font-size: 2rem;
  }
  .slide-text {
    font-size: 0.75rem;
  }
  .slide-text {
    font-size: 0.875rem;
  }
  .slide-2 {
    padding-top: 5rem;
  }
  .slide-3 {
    padding-top: 10rem;
  }
  .slide-4 {
    padding-top: 5rem;
  }
}
@media (max-width: 480px) {
  .slider-section {
    padding: 0 1rem 7rem;
  }
  .slider-title-container {
    margin-bottom: 2rem;
  }
  .slider-title-container h2 {
    font-size: 2.5rem;
  }
  .slider-title-second .yellow-circle::after {
    left: -10%;
    top: -10%;
    transform: rotate(-8.5deg);
  }
  .swiper-slide {
    width: 300px;
  }
  .slider-title-second {
    margin-left: 2rem;
  }
}

/*FAQ-SECTION*/
.faq-section {
  padding: 0 6rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-container {
  max-width: 1250px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.faq-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-left h2 {
  font-size: 5.875rem;
  font-family: "Instrument Serif", serif;
}
.faq-title-first {
  color: rgba(255, 255, 255, 0.5);
}

.faq-title-second span::after {
  width: 260px;
  left: -10%;
}

.faq-title-second {
  margin-bottom: 4rem;
}
.faq-text {
  color: #b3b3b3;
  line-height: 1.4;
  margin-bottom: 3.5rem;
  max-width: 500px;
}

.faq-item {
  border-top: 1px solid #ffffff1a;
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff80;
  font-size: 2rem;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Instrument Serif", serif;
}
.faq-question .faq-question-text {
  color: #ffffff80;
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.faq-question-line {
  width: 0;
  height: 1px;
  background: white;
  margin-right: 0;
  transition:
    width 0.3s ease,
    margin-right 0.3s ease;
}

.faq-icon {
  transition: transform 0.3s ease;
  width: 95px;
  height: 87px;
  background: url("../img/faq-open.svg");
}

.faq-item.active .faq-question .faq-question-text {
  color: white;
  font-style: italic;
}

.faq-item.active .faq-question .faq-question-text .faq-question-line {
  width: 32px;
  margin-right: 1rem;
}

.faq-item.active .faq-icon {
  background: url("../img/faq-close.svg");
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.2s ease;
  opacity: 0;
  padding-bottom: 0.5rem;
  line-height: 1.4;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 0 2rem 8rem;
  }
  .faq-container {
    display: block;
  }
  .faq-left-container h2 {
    font-size: 4rem;
  }
  .faq-title-second span::after {
    width: 210px;
    height: 80px;
    top: 0;
  }
  .faq-text {
    max-width: 100%;
  }
  .faq-left-container {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
  }
  .faq-left-container .white-btn {
    margin: 0 auto;
  }
  .faq-question-text {
    font-size: 1.5rem;
  }
  .faq-question {
    padding: 0.75rem 0;
  }
}
@media (max-width: 480px) {
  .faq-section {
    padding: 0 1rem 8rem;
  }
  .faq-left-container h2 {
    font-size: 2.5rem;
  }
  .faq-title-second span::after {
    width: 150px;
    height: 45px;
    top: 0;
    left: -35%;
    transform: rotate(-8.5deg);
  }
  .faq-text {
    max-width: 100%;
  }
  .faq-left-container {
    margin-bottom: 3rem;
  }
  .faq-left-container .white-btn {
    margin: 0;
    text-align: center;
  }
  .faq-question-text {
    font-size: 1.5rem;
  }
  .faq-question {
    padding: 0.75rem 0;
  }
  .faq-icon,
  .faq-item.active .faq-icon {
    width: 70px;
    height: 65px;
    background-size: cover;
  }
}

/*BENEFITS-SECTION*/
.benefits-section {
  padding: 0 6rem 16rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefits-container {
  max-width: 1250px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.benefits-container .white-btn {
  margin: 0 auto;
}
.benefits-title-container {
  font-size: 5.875rem;
  font-family: "Instrument Serif", serif;
  left: 320px;
  margin-bottom: 3.125rem;
}
.benefits-title-container h2 {
  width: fit-content;
}
.benefits-title-first {
  color: rgba(255, 255, 255, 0.5);
}
.benefits-title-second {
  margin-left: 6.5rem;
  font-style: italic;
}
.benefits-title-second span {
  color: #ffad35;
}
.benefits-title-second .yellow-circle::after {
  left: -10%;
  top: 0;
  width: 300px;
  height: 100px;
}

.benefits-text {
  max-width: 575px;
  margin: 0 auto 3.125rem;
  line-height: 1.4;
  color: #b3b3b3;
}

.benefits-item {
  display: flex;
  flex-direction: column;
  background: #0f0f0f;
  padding: 2.5rem 2.5rem 0;
}
.benefits-item-title {
  font-size: 2.5rem;
  font-family: "Instrument Serif", serif;
  margin-bottom: 1rem;
}
.benefits-item-text {
  line-height: 1.4;
  color: #ffffff80;
}
.benefits-item-list {
  margin-top: 2.5rem;
}

.benefits-item-list-item {
  margin-bottom: 1rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.benefits-item-list-item div {
  color: #ffffff80;
}
.accent {
  color: white;
  font-weight: bold;
}
.list-dot {
  margin-right: 1.5rem;
}

.benefits-slide {
  width: 610px;
}
.benefits-item {
  min-height: 710px;
}
.secondSwiper {
  align-self: stretch;
  width: 100%;
  overflow: visible;
  position: static;
}

.benefits-accordion {
  display: flex;
  flex-direction: column;

  margin-top: 2.5rem;
}

.benefits-acc-item {
  border-top: 1px solid #323232;
  padding-top: 1rem;
  cursor: pointer;
}

.benefits-acc-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.benefits-acc-title {
  line-height: 1.4;
  color: #fff;
}

.benefits-acc-icon {
  line-height: 1;
  font-size: 22px;
  transition: transform 0.25s ease;
}

.benefits-acc-panel {
  max-height: 0;
  margin-top: 1rem;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.2s ease;
}

.benefits-acc-panel-inner {
  color: #b3b3b3;
  line-height: 1.5;
  padding-bottom: 1rem;
}

.benefits-acc-item.is-open .benefits-acc-panel {
  opacity: 1;
}

.benefits-acc-item.is-open .benefits-acc-icon {
  transform: rotate(180deg);
}

.secondSwiper-nav-container {
  position: absolute;
  top: 233px;
  display: flex;
  right: 0;
}
.secondSwiper {
  margin-bottom: 3.5rem;
}
@media (max-width: 1024px) {
  .benefits-section {
    padding: 0 2rem 7rem;
  }
  .benefits-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .benefits-title-container h2 {
    font-size: 4rem;
  }
  .benefits-title-second span::after {
    width: 210px !important;
    height: 70px !important;
    top: 0;
  }
  .benefits-text {
    margin: 0 0 2.5rem;
    max-width: 430px;
  }
  .secondSwiper-nav-container {
    top: 190px;
  }
}

@media (max-width: 480px) {
  .benefits-section {
    padding: 0 1rem 7rem;
  }
  .benefits-title-container h2 {
    font-size: 2.5rem;
  }
  .benefits-title-second {
    margin-left: 2rem;
  }
  .benefits-title-second span::after {
    width: 150px !important;
    height: 50px !important;
    top: 0;
    transform: rotate(-8.5deg);
  }
  .benefits-text {
    margin: 0 0 2.5rem;
    max-width: 430px;
  }
  .secondSwiper-nav-container {
    position: static;
    justify-content: center;
  }
  .benefits-slide {
    width: 100%;
  }
  .benefits-item {
    padding: 1.5rem 1.5rem 7rem;
  }
  .benefits-container .white-btn {
    margin: 0;
    text-align: center;
  }
}

/*TABS SECTION*/

.tabs-section {
  padding: 0 6rem 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tabs-container {
  max-width: 1250px;
  width: 100%;
  position: relative;
}
.tabs-title-container {
  font-size: 5.875rem;
  font-family: "Instrument Serif", serif;
  left: 320px;
  margin-bottom: 3.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tabs-title-container h2 {
  width: fit-content;
}
.tabs-title-first {
  color: rgba(255, 255, 255, 0.5);
}
.tabs-title-second {
  margin-left: 6.5rem;
  font-style: italic;
}
.tabs-title-second span {
  color: #ffad35;
}
.tabs-title-second span::after {
  width: 400px;
  height: 120px;
  left: -5%;
  top: 0;
}
.tabs-nav {
  list-style: none;
  margin: 0 auto 4.5rem;
  display: flex;
  justify-content: center;
  font-size: 2rem;
  text-transform: uppercase;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  gap: 40px;
  border-bottom: 1px solid #ffffff1a;
  width: fit-content;
  padding-bottom: 1rem;
}

.tabs-nav a {
  text-decoration: none;
  color: #888;
}

.tabs-nav li.active a {
  color: #fff;
  border-bottom: 5px solid #ffad35;
  padding-bottom: 0.5rem;
}

.tabs-panels {
  position: relative;
}

.tab-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background: #0f0f0f;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.tab-left {
  padding: 2.5rem;
}

.tab-panel.active {
  position: relative;
}

.tab-panel.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.tab-item-main-text {
  color: #ffffff80;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.tab-item-subtext {
  margin-bottom: 3rem;
  line-height: 1.4;
}

.tab-left {
  position: relative;
}

.tab-left .white-btn {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
}

.tab-img {
  width: 100%;
}

.tab-bottom-text {
  color: #ffffff80;
  line-height: 1.4;
}

.tab-bottom-text + .tab-bottom-text {
  color: #ffffff;
  margin-top: 3rem;
}

#tab-1 .tab-right {
  background: url("../img/tab1-img.webp") no-repeat center center;
  background-size: cover;
}
#tab-2 .tab-right {
  background: url("../img/tab2-img.webp") no-repeat center center;
  background-size: cover;
}
#tab-3 .tab-right {
  background: url("../img/tab3-img.webp") no-repeat center center;
  background-size: cover;
}
#tab-4 .tab-right {
  background: url("../img/tab4-img.webp") no-repeat center center;
  background-size: cover;
}

@media (max-width: 1024px) {
  .tabs-section {
    padding: 0 2rem 7rem;
  }
  .tabs-title-container h2 {
    font-size: 4rem;
  }
  .tabs-title-second span::after {
    width: 240px;
    height: 90px;
    top: -5%;
    left: -15%;
  }
  .tabs-nav {
    margin: 0 0 2rem;
    width: 100%;
    justify-content: space-between;
  }
  .tabs-nav a {
    font-size: 1.25rem;
  }
  .tab-panel {
    grid-template-columns: 1fr;
  }
  .tab-left {
    padding-bottom: 11rem;
  }
  .tab-right {
    min-height: 335px;
    background-position: top;
  }
}

@media (max-width: 480px) {
  .tabs-section {
    padding: 0 1rem 7rem;
  }
  .tabs-title-container h2 {
    font-size: 2.5rem;
  }
  .tabs-title-second span::after {
    width: 150px;
    height: 60px;
    transform: rotate(-8.5deg);
    top: -5%;
    left: -15%;
  }
  .tabs-nav {
    margin: 0 0 2rem;
    width: 100%;
    justify-content: space-between;
  }
  .tabs-nav a {
    font-size: 0.65rem;
  }
  .tab-left {
    padding: 1.5rem 1.5rem 10rem;
  }
  .tab-left .white-btn {
    left: 1.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
    text-align: center;
  }
  .tab-right {
    min-height: 225px;
  }
}

/*CTA*/
.cta-section {
  padding: 0 6rem 6.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-container {
  max-width: 1250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-text {
  font-size: 6rem;
  text-align: center;
  font-family: "Instrument Serif", serif;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5rem;
}
.cta-text .italic {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}
.js-reveal-white .word {
  --p: 0;
  color: rgba(255, 255, 255, calc(0.5 + (var(--p) * 0.5)));
  transition: color 0.08s linear;
}
@media (max-width: 1024px) {
  .cta-section {
    padding: 0 2rem 5rem;
  }
  .cta-text {
    font-size: 4rem;
  }
}
@media (max-width: 480px) {
  .cta-section {
    padding: 0 1rem 5rem;
  }
  .cta-text {
    font-size: 2.5rem;
  }
}

/*FOOTER*/
footer,
.mobile-footer {
  padding: 0 6rem;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
footer::after,
.mobile-footer::after {
  content: "";
  position: absolute;
  background: radial-gradient(circle at center, #ffad35 0%, #ffad35 100%);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  width: 800px;
  height: 100px;
  bottom: -50px;
  border-radius: 50%;
  filter: blur(80px);
}
footer > *,
.mobile-footer > * {
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1250px;
  width: 100%;
  padding: 2.25rem 0 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #323232;
}
.footer-nav {
  display: flex;
  gap: 2.5rem;
}

.footer-nav a {
  padding: 20px;
  border: 1px solid #323232;
  display: inline-flex;
  border-radius: 50%;
  transition: background 0.2s;
}
.footer-nav a:hover {
  background: #323232;
}

.footer-nav a img {
  width: 20px;
  height: 20px;
}

.policies {
  display: flex;
  gap: 2.25rem;
}

.policies a {
  text-decoration: none;
}
.mobile-policies {
  display: none;
}

@media (max-width: 1024px) {
  footer,
  .mobile-footer {
    padding: 0 2rem;
  }
  .policies {
    display: none;
  }
  .mobile-policies {
    margin-top: 1.5rem;
    display: flex;
  }
  .footer-nav {
    gap: 1rem;
  }
  .footer-nav a {
    padding: 15px;
  }
  .footer-nav a img {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 480px) {
  footer,
  .mobile-footer {
    padding: 0 1rem;
  }
  .policies {
    display: none;
  }
  .mobile-policies {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  .footer-container {
    flex-direction: column-reverse;
    gap: 3rem;
  }
}


/*FOOTER*/
footer,
.mobile-footer {
  padding: 0 6rem;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
footer::after,
.mobile-footer::after {
  content: "";
  position: absolute;
  background: radial-gradient(circle at center, #ffad35 0%, #ffad35 100%);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  width: 800px;
  height: 100px;
  bottom: -50px;
  border-radius: 50%;
  filter: blur(80px);
}
footer > *,
.mobile-footer > * {
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1250px;
  width: 100%;
  padding: 2.25rem 0 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #323232;
}
.footer-nav {
  display: flex;
  gap: 2.5rem;
}

.footer-nav a {
  padding: 20px;
  border: 1px solid #323232;
  display: inline-flex;
  border-radius: 50%;
  transition: background 0.2s;
}
.footer-nav a:hover {
  background: #323232;
}

.footer-nav a img {
  width: 20px;
  height: 20px;
}

.policies {
  display: flex;
  gap: 2.25rem;
}

.policies a {
  text-decoration: none;
}
.mobile-policies {
  display: none;
}

@media (max-width: 1024px) {
  footer,
  .mobile-footer {
    padding: 0 2rem;
  }
  .policies {
    display: none;
  }
  .mobile-policies {
    margin-top: 1.5rem;
    display: flex;
  }
  .footer-nav {
    gap: 1rem;
  }
  .footer-nav a {
    padding: 15px;
  }
  .footer-nav a img {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 480px) {
  footer,
  .mobile-footer {
    padding: 0 1rem;
  }
  .policies {
    display: none;
  }
  .mobile-policies {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  .footer-container {
    flex-direction: column-reverse;
    gap: 3rem;
  }
}

/*404*/
.error-section {
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  position: relative;
}
.error-container {
  position: relative;
  z-index: 5;
}

.error-num {
  font-size: 12.5rem;
  font-family: "Instrument Serif", serif;
  font-style: normal !important;
}

.error-num.yellow-circle::after {
  content: "";
  position: absolute;
  bottom: calc(50% - 80px);
  left: calc(50% - 215px);
  top: 15px;
  transform: rotate(-8deg);
  width: 430px;
  height: 166px;
  border: 2px solid #ffad35;
  border-radius: 100%;
}
.error-title {
  margin-top: 2rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 400;
}
.error-text {
  font-size: 1.25rem;
  margin-top: 1rem;
  max-width: 600px;
  color: #ffffff80;
  line-height: 1.4;
  font-weight: 400;
}

.error-btn-container {
  margin-top: 3rem;
}

.error-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 300px;
  background: radial-gradient(circle, #ffad35 0%, transparent 70%);
  filter: blur(400px);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 480px) {
  .error-num.yellow-circle::after {
    content: "";
    position: absolute;
    bottom: calc(50% - 80px);
    left: calc(50% - 180px);
    top: 15px;
    transform: rotate(-8deg);
    width: 360px;
    height: 166px;
    border: 2px solid #ffad35;
    border-radius: 100%;
  }
}


/*Policies*/
.policy-section {
  padding: 12.5rem 6rem 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.policy-container {
  max-width: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.policies-main-title {
  font-size: 6.25rem;
  font-family: "Instrument Serif", serif;
  margin-bottom: 1.375rem;
}

.policies-subtitle,
.policies-text {
  line-height: 1.4;
  color: #ffffff80;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.policies-sec-title {
  width: 100%;
  font-size: 2rem;
  font-family: "Instrument Serif", serif;
  margin-bottom: 1rem;
}

.policies-text ul,
ul.policies-text {
  width: 100%;
  color: #ffffff80;
  font-size: 1.25rem;
  line-height: 1.4;

  margin: 0 0 2.5rem 0;
  padding-left: 1.5rem;

  list-style: disc;
}

.policies-text li,
ul.policies-text li {
  margin-bottom: 0.75rem;
}

.policies-text li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .policy-section {
    padding: 10rem 2rem 7rem;
  }
  .policies-main-title {
    font-size: 6rem;
  }
}

