@font-face {
  font-family: 'AreaNormalTrial-Thin';

  src: url('../fonts/ares-normal/AreaNormalTrial-Thin-BF65ea75c6d622a.otf') format('opentype');
}

@font-face {
  font-family: 'AreaNormalTrial-Light';

  src: url('../fonts/ares-normal/AreaNormalTrial-Light-BF65ea75c6c87b9.otf') format('opentype');
}

@font-face {
  font-family: 'AreaNormalTrial-Regular';

  src: url('../fonts/ares-normal/AreaNormalTrial-Regular-BF65ea75c666f34.otf') format('opentype');
}

@font-face {
  font-family: 'AreaNormalTrial-Medium';

  src: url('../fonts/ares-normal/AreaNormalTrial-Medium-BF65ea75c66b01c.otf') format('opentype');
}

@font-face {
  font-family: 'AreaNormalTrial-Semibold';

  src: url('../fonts/ares-normal/AreaNormalTrial-Semibold-BF65ea75c6b547e.otf') format('opentype');
}

@font-face {
  font-family: 'AreaNormalTrial-Bold';

  src: url('../fonts/ares-normal/AreaNormalTrial-Bold-BF65ea75c6a7619.otf') format('opentype');
}

@font-face {
  font-family: 'Bristone';

  src: url('../fonts/Bristone\ Reg.otf') format('opentype');
}

@font-face {
  font-family: 'Garet';

  src: url('../fonts/garet/Garet-Book.otf') format('opentype');
}


body {
  scroll-behavior: smooth !important;
}

/* nav */

.custom-scroll-bar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 0px;
  background-color: #252525;
}

.custom-scroll-bar::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

.custom-scroll-bar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

:root {
  --screen-width: 100%;
  --screen-height: 80vh;
  --splash-bg-color: #000;
}

.nav__toggle {
  display: inline-block;
  z-index: 10;
  padding: 0;
  border: 0;
  background: transparent;
  outline: 0;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.15s linear;
  background-color: rgba(0, 0, 0, 0.4);
}

.nav__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: var(--screen-height);
  position: absolute;
  top: -58px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  visibility: hidden;
}

.nav__item {
  opacity: 0;
  transition: all 0.3s cubic-bezier(0, 0.995, 0.99, 1) 0.3s;
}

.nav__item:nth-child(1) {
  transform: translateY(-40px);
}

.nav__item:nth-child(2) {
  transform: translateY(-80px);
}

.nav__item:nth-child(3) {
  transform: translateY(-120px);
}

.nav__item:nth-child(4) {
  transform: translateY(-160px);
}

.nav__item:nth-child(5) {
  transform: translateY(-200px);
}

.nav__link {
  color: white;
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 1.25rem;
  text-decoration: none;
  padding: 1rem;
}

.nav__link:hover,
.nav__link:focus {
  outline: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.menuicon {
  display: block;
  cursor: pointer;
  color: white;
  transform: rotate(0deg);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menuicon__bar,
.menuicon__circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}

.menuicon__bar {
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-in-out;
}

.menuicon__circle {
  transition: stroke-dashoffset 0.3s linear 0.1s;
  stroke-dashoffset: 144.513262038;
  stroke-dasharray: 144.513262038;
}

.splash {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 1px;
  height: 1px;
}

.splash::after {
  content: "";
  display: block;
  position: fixed;
  border-radius: 50%;
  background-color: var(--splash-bg-color);
  width: 284vmax;
  height: 284vmax;
  top: -142vmax;
  left: -142vmax;
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
  will-change: transform;
}

.nav:target>.splash::after,
.nav--open>.splash::after {
  transform: scale(1);
}

.nav:target .menuicon,
.nav--open .menuicon {
  color: white;
  transform: rotate(180deg);
}

.nav:target .menuicon__circle,
.nav--open .menuicon__circle {
  stroke-dashoffset: 0;
}

.nav:target .menuicon__bar:nth-child(1),
.nav:target .menuicon__bar:nth-child(4),
.nav--open .menuicon__bar:nth-child(1),
.nav--open .menuicon__bar:nth-child(4) {
  opacity: 0;
}

.nav:target .menuicon__bar:nth-child(2),
.nav--open .menuicon__bar:nth-child(2) {
  transform: rotate(45deg);
}

.nav:target .menuicon__bar:nth-child(3),
.nav--open .menuicon__bar:nth-child(3) {
  transform: rotate(-45deg);
}

.nav:target .nav__menu,
.nav--open .nav__menu {
  visibility: visible;
}

.nav:target .nav__item,
.nav--open .nav__item {
  opacity: 1;
  transform: translateY(0);
}

.viewport {
  width: var(--screen-width);
  height: var(--screen-height);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background-color: white;
}


.accordion .content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

.accordion .content.open {
  max-height: 500px;
  /* Adjust this value according to your content height */
}

.accordion button svg {
  transition: transform 0.3s ease-out;
}

.accordion button svg.rotate {
  transform: rotate(180deg);
}


.swiper-pagination-bullet {
  padding: 6px 6px;
  border-radius: 0;
  width: auto;
  height: 3px;
  margin: 0 4px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  color: transparent;
  opacity: 1 !important;
  border: 1.5px solid white !important;
  background: transparent !important;
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #fff !important;

}

.swiper-button-next:after {
  color: #000;
  font-size: 25px !important;
  font-weight: 700 !important;
}

.swiper-button-prev:after {
  color: #000;
  font-size: 25px !important;
  font-weight: 700 !important;
}

.swiper-button-next {
  top: 67% !important;
}

.swiper-button-prev {
  top: 67% !important;
}

input[type="radio"]:checked {
  accent-color: #404040; /* Sets the color of the radio button when checked */
}