body {
  font-family: "Outfit", sans-serif;
  color: #161616;
  background-color: white;
  position: relative;
}

html {
  overflow-x: hidden;
}

.corner {
  --b: 1px; /* border thickness */
  --c: #0000 25%, #fff 0; /* define the color here */
  background: conic-gradient(from 90deg at top var(--b) left var(--b), var(--c))
      0 0,
    conic-gradient(from 180deg at top var(--b) right var(--b), var(--c)) 100% 0,
    conic-gradient(from 0deg at bottom var(--b) left var(--b), var(--c)) 0 100%,
    conic-gradient(from -90deg at bottom var(--b) right var(--b), var(--c)) 100%
      100%;
  background-size: 0px 0px;
  background-repeat: no-repeat;
  transition: 0.5s;
  cursor: pointer;
}

.corner-dark {
  --b: 1px; /* border thickness */
  --c: #0000 25%, #000 0; /* define the color here */
  background: conic-gradient(from 90deg at top var(--b) left var(--b), var(--c))
      0 0,
    conic-gradient(from 180deg at top var(--b) right var(--b), var(--c)) 100% 0,
    conic-gradient(from 0deg at bottom var(--b) left var(--b), var(--c)) 0 100%,
    conic-gradient(from -90deg at bottom var(--b) right var(--b), var(--c)) 100%
      100%;
  background-size: 0px 0px;
  background-repeat: no-repeat;
  transition: 0.5s;
  cursor: pointer;
}

.corner:hover {
  background-size: 15% 15%;
}

.corner-dark:hover {
  background-size: 15% 15%;
}

.description ul {
  list-style: disc;
}

.description h3 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  margin: 12px 0px;
}
.description h2 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
  margin: 12px 0px;
}
.description h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 12px 0px;
}

.description p {
  margin-top: 12px;
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .description h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin: 12px 0px;
  }
  .description h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin: 12px 0px;
  }
  .description h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    margin: 12px 0px;
  }
}
@media screen and (min-width: 1368px) {
  .description h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin: 12px 0px;
  }
  .description h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 12px 0px;
  }
  .description h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin: 12px 0px;
  }
}

.rnv-swiper_slide {
  flex: none;
  position: relative;
}

.rnv-swiper_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.rnv-swiper_wrapper-wrapper {
  height: 100%;
}

.swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.2);
}

.swiper-pagination-progressbar-fill {
  background: white !important;
}

.swiper-button-disabled {
  opacity: 0.3;
}

.main-wrapper_inner.in-transition {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
}

.hamburger path {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
}

.loader {
  z-index: 99;
  pointer-events: none;
  width: 100%;
  height: 100dvh;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.loader-bar {
  background-color: #000;
  flex: 1;
}

.fullpage-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  display: none;
  z-index: 999;
}

.fullpage-menu-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 100px 60px;
}

.menu-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  opacity: 0;
}

.fullpage-menu nav {
  position: relative;
  z-index: 1;
  text-align: center;
}

.fullpage-menu nav ul {
  list-style-type: none;
}

.fullpage-menu nav li {
  overflow: hidden;
}

.fullpage-menu nav li + li {
  margin-top: 30px;
}

.fullpage-menu nav li a {
  font-size: 5vh;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  line-height: 1.2;
  letter-spacing: 5px;
  color: #fff;
}

.fullpage-menu nav li a span {
  position: relative;
  display: block;
}


.fullpage-menu nav li:hover a span:before {
  height: 100%;
}

@media screen and (max-width: 767px) {
  .header-row {
    padding: 30px;
  }
  .fullpage-menu nav li a {
    font-size: 36px;
  }
}

/* cursor */

#dot {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  width: 40px;
  height: 40px;
  background: #fff;
  z-index: 999;
}
