@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --headerheight: 96px;
  --headersidewidth: 165px;
  --bannerimagewidth: 470px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.oakslider {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: #22273C;
  color: #fff;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.oakslider__ui {
  /* position: relative; */
  z-index: 2;
  /* max-width: 1200px; */
  /* min-width: 60%; */
  /* margin: 0 auto; */
  /* margin-top: 10%; */
  display: flex;
  justify-content: space-between;
}

.oakslider__ui .oakslider__controls {
  display: flex;
}

.oakslider__ui .oakslider__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #fff;
  /* opacity: 0.5; */
  /* background: #fff; */
  /* margin-left: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  position: absolute;
  right: 100px;
  bottom: 40px;
  font-size: 22px;
  cursor: pointer;
}

.oakslider__navpoint {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 400;
  justify-content: end;
}

.oakslider__navpoint:first-of-type .oakslider__timer {
  width: 95px;
}

.oakslider__navpoint:first-of-type .oakslider__label {
  opacity: 1;
}

.oakslider__navpoint .oakslider__label {
  opacity: 1 !important;
  font-weight: 400;
}

.oakslider__navpoint .oakslider__timer {
  position: relative;
  width: 55px;
  height: 2px;
  background: rgb(255 255 255 / 18%);
  margin: 0 7px;
  overflow: hidden;
  border-radius: 50px;
}

.oakslider__navpoint .oakslider__timer .timer__progress {
  position: absolute;
  top: 0;
  left: 0;
  background: #f84438;
  height: 2px;
  width: 100%;
  transform: translateX(-100%);
}

.oakslider__slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.oakslider__slide.slide--active {
  display: block;
}

.slide__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide__image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: .8;
  z-index: 1;
}

.slide__image img {
  position: absolute;
  object-fit: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.slide__container {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 45%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: start;
  z-index: 2;
}

.slide__content {
  padding-top: 0;
  width: 100%;
  /* min-width: 60%; */
  font-family: sans-serif;
}

.slide__title {
  font-size: 262px;
  /* max-width: 650px; */
  line-height: 303px;
  font-weight: 300;
  text-align: left;
  font-family: 'Six Caps', sans-serif;
  text-transform: uppercase;
  border-bottom: 1px solid white;
}

.slide__link {
  margin-top: 25px;
  text-align: left;
}

.oakslider__nav {
  position: absolute;
  right: 40px;
  bottom: 100px;
}

.oakslider__ui .oakslider__arrow.oakslider__next {
  left: inherit;
  right: 40px;
}

.slide__link a {
  /* border: 2px solid white; */
  /* border-radius: 50px; */
  display: inline-block;
  color: white;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  position: relative;
  width: 150px;
  height: 30px;
  overflow: hidden;
  font-size: 20px;
}

.slide__link a i {
  transform: rotate(45deg);
  transition: .8s;
  animation: bounce2 8s ease infinite;
}
@keyframes bounce2 {
	0%, 100% {transform: translateY(0) translateX(0px) rotate(45deg);}
	10%, 30%, 50%, 70%, 90% {transform: translateY(-4px) translateX(-1px) rotate(45deg);}
	20%, 40%, 60%, 80% {transform: translateY(4px) translateX(1px) rotate(45deg);}
}
.slide__link a:hover i {
    animation-play-state: paused;
      transform: rotate(-45deg) !important;
  transition: .85s;
}
/* .slide__link a .slide_link_arrow {
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .8s;
  font-size: 32px;
  color: #ffffff;
  border-radius: 50px;
} */

.slide__link a .slide_link_txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .8s;
}



/* .slide__link a:hover .slide_link_txt {
  left: 100%;
  transition: .8s;
} */

.slide__image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: #000000; */
  background-image: linear-gradient(180deg, #c59788, #000000);
  mix-blend-mode: multiply;
}

.home-header {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  top: 0;
}

.home-head-inner {
  display: flex;
  align-items: center;
  height: var(--headerheight);
}

.head-lft {
  height: 100%;
  width: var(--headersidewidth);
  border-bottom: 1px solid #ffffff36;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: white !important;
  font-size: 17px;
}

.head-mid {
  height: 100%;
  width: calc(100% - calc(var(--headersidewidth) * 2));
  text-align: center;
  border: 1px solid #ffffff36;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 0;
}
.head-mid a{
    height: 77%;
}
.head-mid img {
  height: 100%;
  filter: brightness(18.5);
}

.head-rt {
  height: 100%;
  width: var(--headersidewidth);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ffffff36;
  gap: 15px;
  color: white !important;
  font-size: 17px;
}

.mnu-bar {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mnu-bar i {
  width: 33px;
  display: inline-block;
  height: 2px;
  background: white;
}

.circular-progress {
  position: relative;
  height: 600px;
  width: 600px;
  border-radius: 50%;
  background: conic-gradient(#ff5f2d 3.6deg, #ffffff4f 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circular-progress::before {
  content: "";
  position: absolute;
  height: 590px;
  width: 590px;
  border-radius: 50%;
  background-color: #1c1c1c;
}

.progress-value {
  position: relative;
  font-size: 40px;
  font-weight: 600;
  color: #7d2ae8;
}

.loading-screen {
  width: 100%;
  height: 100%;
  background: #1c1c1c;
  position: fixed;
  top: 0;
  left: 0;
  color: #fff;
  pointer-events: none;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  z-index: 2;
}

.progress-value {
  color: #1c1c1c;
}

.counter {
  position: fixed;
  top: 50%;
  left: 50%;
  display: flex;
  height: 255px;
  font-size: 190px;
  line-height: 255px;
  clip-path: polygon(0 0, 100% 0, 100% 212px, 0 212px);
  font-weight: 400;
  color: #ff5f2d;
  transform: translate(-50%, -50%);
}

.counter-1,
.counter-2,
.counter-3 {
  position: relative;
  top: -12px !important;
}

.num1offset1 {
  position: relative;
  right: -12px;
}

.num1offset2 {
  position: relative;
  right: -10px;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 50px;
  transform: translate(-50%, -50%);
  display: flex;
  background: rgb(80, 80, 80);
}

.loader-1 {
  position: relative;
  background: #fff;
  width: 200px;
}

.loader-2 {
  position: relative;
  background: #fff;
  width: 100px;
}

.bar {
  height: 50px;
}

.slide__container.con-desk {
    /* left: auto; */
    /* right: 40px; */
    /* bottom: inherit; */
    /* top: calc(var(--headerheight) + 40px); */
}
.slide__container.con-desk .slide__link {
    /* text-align: right; */
}
