/* Nav bar css */

.nav-but-wrap {
  display: none;
}

.nav__content {
  display: block;
}

.nav-but-wrap {
  position: absolute;
  top: 30px;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 999;
  transition: all 0.3s ease-out;
}

.menu-icon {
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 999;
  cursor: pointer;
  display: block;
  left: -35px;
  top: -4px;
}

.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: var(--red);
  margin-bottom: 7px;
  cursor: pointer;
  -webkit-transition:
    background-color 0.5s ease,
    -webkit-transform 0.2s ease;
  transition:
    background-color 0.5s ease,
    -webkit-transform 0.2s ease;
  transition:
    transform 0.2s ease,
    background-color 0.5s ease;
  transition:
    transform 0.2s ease,
    background-color 0.5s ease,
    -webkit-transform 0.2s ease;
}

.menu-icon__line-left {
  width: 16.5px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.menu-icon__line-right {
  width: 16.5px;
  float: right;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 30px;
}

.nav {
  position: fixed;
  z-index: 98;
}

.nav::before {
  background: var(--dark-red) !important;
}

.nav::before,
.nav::after {
  content: "";
  position: fixed;
  top: 20px;
  right: 10px;
  width: 0;
  height: 0;
  background-color: #fff;
  border-bottom-right-radius: 200%;
  z-index: -1;
  transition:
    border-radius linear 0.8s,
    width cubic-bezier(0.77, 0, 0.175, 1) 0.6s,
    height cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
  clip-path: polygon(100% 0px, 75% 50%, 100% 100%, 0px 100%, 0px 0px, 50% 0px);
}

.nav:after {
  background-color: #fff;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 300%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  box-shadow: 6px 7px 28px 0 rgba(16, 16, 16, 0.3);
}

.nav:before {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.nav__content {
  position: fixed;
  visibility: hidden;
  top: 60px;
  right: 20px;
  width: 340px;
  text-align: left;
  transition:
    transform 0.4s ease,
    opacity 0.3s ease;
}

header.scrolled-header .nav__content {
  top: 40px;
}

.nav__list {
  position: relative;
  padding: 0;
  margin: 0;
  z-index: 2;
  top: 0px;
}

.nav__list-item {
  position: relative;
  /* display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px; */
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  opacity: 0;
  text-align: left;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 2px;
  -webkit-transform: translate(30px, 0%);
  transform: translate(30px, 0%);
  -webkit-transition:
    opacity 0.2s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
  margin-top: 7px;
  margin-bottom: 7px;
}

.nav__list-item a {
  position: relative;
  text-decoration: none;
  color: #3a3a3a;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
  padding-left: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  text-transform: capitalize;
  font-size: 18px;
}

.nav__list-item a:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 5px;
  height: 0;
  opacity: 0;
  background-color: #dd2b1cb5;
  /* background-color: #ffb300; */
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.nav__list-item a:hover:after,
.nav__list-item a.act-link:after,
.nav__list li.act-link>a::after {
  height: 100%;
  opacity: 1;
  top: 0;
}

.nav__list-item a:hover,
.nav__list-item a.act-link,
.nav__list li.act-link>a {
  color: #131313 !important;
}

.nav__list-item.active-nav a {
  color: var(--red);
}

.nav__list-item.active-nav a:after {
  height: 100%;
  opacity: 1;
  top: 0;
}

.footer-act.act-quick {
  color: #f5b01a;
}

.act-quick {
  color: #f5b01a !important;
}

#nav-body.nav-active .nav__content {
  visibility: visible;
}

#nav-body.nav-active .menu-icon__line {
  background-color: var(--dark-red);
  -webkit-transform: translate(0px, 0px) rotate(-45deg);
  transform: translate(0px, 0px) rotate(-45deg);
}

#nav-body.nav-active .menu-icon__line-left {
  width: 15px;
  -webkit-transform: translate(2px, 4px) rotate(45deg);
  transform: translate(2px, 4px) rotate(45deg);
}

#nav-body.nav-active .menu-icon__line-right {
  width: 15px;
  float: right;
  -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
  transform: translate(-3px, -3.5px) rotate(45deg);
}

#nav-body.nav-active .menu-icon:hover .menu-icon__line-left,
#nav-body.nav-active .menu-icon:hover .menu-icon__line-right {
  width: 15px;
}

#nav-body.nav-active .nav {
  visibility: visible;
}

#nav-body.nav-active .nav:before,
#nav-body.nav-active .nav:after {
  width: 350px;
  height: 550px;
  border-radius: 9px 9px 0 0;
}

.nav-par {
  position: relative;
  right: 325px;
}

.nav-par::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: flex;
  border-top: 70px solid #09090c;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  visibility: hidden;
  opacity: 0;
}

#nav-body.nav-active .nav-par::before {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

#nav-body.nav-active .nav:after {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

#nav-body.nav-active .nav:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

#nav-body.nav-active .nav__list-item {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition:
    opacity 0.3s ease,
    color 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    color 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease,
    -webkit-transform 0.3s ease;
}

#nav-body.nav-active .nav__list-item:nth-child(0) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

#nav-body.nav-active .nav__list-item:nth-child(1) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

#nav-body.nav-active .nav__list-item:nth-child(2) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

#nav-body.nav-active .nav__list-item:nth-child(3) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

#nav-body.nav-active .nav__list-item:nth-child(4) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

#nav-body.nav-active .nav__list-item:nth-child(5) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

#nav-body.nav-active .nav__list-item:nth-child(6) {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

#nav-body.nav-active .nav__list-item:nth-child(7) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

#nav-body.nav-active .nav__list-item:nth-child(8) {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

#nav-body.nav-active .nav__list-item:nth-child(9) {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

#nav-body.nav-active .nav__list-item:nth-child(10) {
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
}

.nav-close {
  display: none !important;
  pointer-events: none !important;
}

.nav-open {
  display: block !important;
  pointer-events: visible !important;
  padding: 30px 0 0;
}

.active-inner {
  background: var(--dark-red);
  width: 100%;
  max-width: 250px;
}

#nav-open li a {
  width: 100%;
  max-width: 250px;
}

.header {
  width: 100%;
}

.head-act {
  opacity: 1;
  visibility: visible;
  background: #000000e3;
  transition: all 0.5s ease-in;
}

.banner-wrapper {
  height: 100vh;
  position: relative;
  width: 100%;
}

.banner-brand {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1250px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 60px;
  max-height: 150px;
}

.b-scroll {
  width: 100%;
  max-width: 250px;
  position: relative;
  top: 8px;
  left: -40px;
}

.nav__list-item span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 20px;
}

.nav__list-item span img {
  width: 100%;
  max-width: 20px;
  filter: invert(18%) sepia(92%) saturate(4207%) hue-rotate(356deg) brightness(93%) contrast(85%);
}

header.scrolled-header #nav-body.nav-active .nav-par::before {
  bottom: -384px;
}

header.scrolled-header .nav::before,
header.scrolled-header .nav::after {
  top: 0;
}

header.scrolled-header #nav-body.nav-active .nav::before,
header.scrolled-header #nav-body.nav-active .nav::after {
  border-radius: 0;
}

header.scrolled-header .menu-icon {
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 999;
  cursor: pointer;
  display: block;
  left: -35px;
  top: -13px;
}


#nav-rem {
  display: none;
}

.know-us-act {
  position: relative;
    z-index: 9999;
}

.know-us-act #nav-open {
  display: block !important;
  position: relative;       
  left: 0;
  top: 0;
  margin: 6px 0 0 40px;      
  padding: 0;
}

.know-us-act #nav-open .nav__list-item {
  opacity: 1;
  transform: none;
  font-size: 16px;
  margin: 4px 0;
}

#nav-open {
  pointer-events: auto !important;
}

/* Nav Bar Css */

/* Header */
.header-inner-wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 250px;
  color: #3a3a3a;
  /* color: var(--red); */
}

.header-inner-wrapper a img {
  width: 100%;
  max-width: 250px;
}

.header-main-wrapper {
  padding: 7px 0 7px 0;
  position: relative;
}

header .header-main-wrapper ul li {
  position: relative;
}

.header-inner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

header .header-wrapper ul li {
  position: relative;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  position: relative;
  gap: 50px;
  padding-right: 5px;
}

.nav-links li a,
.nav-links li>span {
  height: 100%;
  font-size: 18px;
  padding: 20px 0;
}

.nav-links li a.act-link,
.nav-links li a:hover {
  /* color: var(--gery) !important; */
  color: var(--red) !important;
}

.first-child-route li a:hover,
.first-child-route li a.act-link {
  color: var(--red) !important;
}

.nav__list li a.act-link,
.nav__list li a:hover {
  /* color: var(--gery) !important; */
  color: var(--red) !important;
}

.nav-links li:hover .first-route {
  opacity: 1;
  visibility: visible;
  top: 66px;
}

.first-route {
  position: absolute;
  width: 300px;
  opacity: 0;
  visibility: hidden;
  top: 69px;
  display: block;
  transition: 0.5s;
  left: -50px;
  margin: auto;
  z-index: 3;
  display: flex;
  padding: 0px 2px;
  border-bottom: 4px solid var(--red);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.24);

}

.first-route::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
}

.first-route li a {
  display: block;
  padding: 0 !important;
  color: #fff !important;
  text-transform: capitalize;
}

.first-child-route {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.first-child-route:last-child {
  border: none;
}

.first-child-route li {
  margin: 0px 16px;
  border-bottom: 1px dashed #373333a8;
  padding: 10px 0;
  display: flex;
  justify-content: flex-start;
}

.first-child-route li:last-child {
  border-bottom: none;
}

.first-child-route li a {
  font-size: 16px !important;
  color: var(--bright-grey) !important;
  font-weight: initial !important;
  padding: 10px 24px;
  display: block;
  line-height: 1.6;
  margin: 0px 0;
  width: 100%;
  max-width: 100%;
}

/* Header */

/* Scrolled Header */
header.scrolled-header {
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  z-index: 99;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

header.scrolled-header .header-main-wrapper {
  background: #fff;
}

header.scrolled-header .header-inner-wrapper a img,
header.scrolled-header .header-inner-wrapper a {
  max-width: 250px;
}

/* Scrolled Header */

/* index slider */
.index-page-slider {
  position: relative;
  height: calc(100vh - 100px);
  width: 100%;
  max-width: calc(100% - 40px);
  margin: auto;
  overflow: hidden;
}

.index-page-slider .fluid-container {
  position: relative;
  z-index: 2;
}

.index-page-slider .slider-txt {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 60px 30px;
  max-width: 1800px;
  margin: auto;
}

.slider-txt,
.slider-txt h2,
.slider-txt h1 {
  position: relative !important;
  z-index: 2;
}

.slider-txt h2,
.slider-txt h1 {
  font-size: 60px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 10px;
  text-align: right;
  margin-left: auto;
  width: 100%;
  transition: all 0.8s ease-in-out;
  max-width: 1000px;
  line-height: 1;
}

.slider-txt>p {
  font-size: 18px;
  color: #fff;
  z-index: 1;
  text-align: center;
  margin: 20px 0;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  background: #00221dcc;
  width: 100%;
  max-width: fit-content;
  padding: 10px;
}

.index-page-slider .owl-dots {
  margin: 0;
  position: absolute;
  bottom: 31px;
  width: 100%;
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  right: 72px;
}

.index-page-slider .owl-dots span {
  display: none !important;
}

.index-page-slider .owl-dots .owl-dot {
  width: 100%;
  height: 3px;
  margin: 0;
  background: #fff3;
  max-width: 30px;
}

.index-page-slider .owl-dots .owl-dot.active {
  background: #fff;
}

.index-page-slider .custom-pagination {
  position: absolute;
  bottom: 20px;
  font-size: 20px;
  color: #fff;
  width: 100%;
  max-width: fit-content;
  min-width: 215px;
  right: 40px;
  display: flex;
  justify-content: space-between;
}

.slider-txt {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin: auto;
}

.slider-txt>span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
}

.slider-txt>span img {
  width: 100%;
  max-width: 400px;
  opacity: 0.13;
}

.slider-txt-right>span {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.slider-txt-right>span img {
  width: 100%;
  max-width: 134px;
  padding: 0 18px 10px 0px;
  filter: invert(1);
}

.slider-txt-right {
  width: 100%;
  max-width: 1000px;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 100px);
}

/* index slider */

/* 0. owl css */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 0;
  position: static;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  color: #d0630e;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
}

.owl-dots {
  text-align-last: center;
  margin-top: 32px;
}

/* 0. owl css */

/* About */
.about-klaado-wrapper {
  padding: 80px 0 0px;
}

.about-klaado-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.about-klaado-inner-wrapper>span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

.about-klaado-inner-wrapper>span img {
  width: 100%;
  max-width: 400px;
}

.about-klaado {
  width: 100%;
  max-width: 900px;
}

.about-klaado-wrapper>.fluid-container>h2 {
  display: none;
}

/* About */