@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  /* define all the color variables */
  --primary: #1f3576;
  --font_playfair: "Playfair Display", serif;
  --font_plus_jakarta: "Plus Jakarta Sans", sans-serif;
  --text-white: #ffffff;
  --heading-black: #181a20;
  --paragraph-black: #636363;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: var(--font_plus_jakarta);
}

*:focus {
  box-shadow: none !important;
  outline: none !important;
}

svg {
  flex: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0 !important;
}

.container-lg,
.container-fluid {
  padding: 0 !important;
}

a {
  display: inline-block !important;
  text-decoration: none !important;
  color: inherit;
}

.row {
  margin: 0 !important;
}

[class*="col-"] {
  padding: 0 !important;
}

.swiper-slide {
  user-select: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:focus {
  outline: none;
}

/* for hiding the scroller */
::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;
}

nav .navbar-nav li a {
  padding: 0 !important;
}

/* .navbar-toggler-icon {
    background-image: url(../images/menu.png);
} */

.image-reveal {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.text-reveal {
  display: inline-block;
  overflow: hidden;
  padding: 4px;
}

.text-reveal span {
  display: inline-block;
  white-space: pre;
}

ul {
  margin-bottom: 0 !important;
}

.text-justify {
  text-align: justify;
  text-justify: inter-word;
}

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: var(--lines, 3);
  line-clamp: var(--lines, 3);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scroll-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-content {
  display: flex;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.parallax {
  position: relative;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.neu_shadow {
  background: #f0f0f0;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1),
    -6px -6px 10px rgba(255, 255, 255, 0.7);
}

.custom-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  transition: transform 0.1s ease-out, width 0.2s, height 0.2s;
}

.hover-target:hover ~ .custom-cursor {
  width: 40px;
  height: 40px;
}
 
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.navbar-toggler img {
  width: 40px;
  height: 40px;
}

.nav_logo {
  width: 110px;
}

.nav_options li a {
  color: var(--text-white) !important;
  font-family: var(--font_playfair);
}

.hero_section {
  min-height: 740px;
  height: 100%;
  background: url(../images/hero_banner.webp) no-repeat center center;
  background-size: cover;
}

.harry_img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 460px;
}

.banner_heading {
  font-size: 5rem;
  font-family: var(--font_playfair);
}

.gradient_orange {
  background: linear-gradient(102.67deg, #ffffff 1.36%, #fdcd68 104.65%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.vision_btn {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 25%,
    rgba(253, 205, 104, 1) 100%
  );
  color: #12161d;
  font-weight: 650;
  font-size: 14px;
  padding: 12px 25px;
  border-radius: 50px;
  user-select: none;
  transition: all 0.3s ease;
  &:hover {
    transform: scale(0.95);
  }
}

.heading_two {
  font-family: var(--font_playfair);
  color: var(--heading-black);
}

p {
  color: var(--paragraph-black);
}

.ul_points li {
  display: flex;
  align-self: center;
  gap: 5px;
  margin-bottom: 14px;
}

.ul_points li span {
  color: #181a20;
}

.aspect_img {
  aspect-ratio: 16 / 13;
  object-fit: cover;
  object-position: center;
}

.vision_section {
  background: linear-gradient(102.67deg, #f0f0f0 1.36%, #fdcd68 104.65%);
}

.vision_card {
    height:100%;
  user-select: none;
  transition: all 0.3s ease;
  &:hover {
    transform: scale(0.95);
  }
}

.vision_card img{
        aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.scale_swiper .swiper-slide.swiper-slide {
  transition: transform 0.35s ease;
}

.scale_swiper .swiper-slide.swiper-slide-prev,
.scale_swiper .swiper-slide.swiper-slide-next {
  transform: scale(0.4);
}

.scale_swiper .swiper-slide.swiper-slide-active {
  transform: scale(1);
}

.scale_nav {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1.5px solid var(--heading-black);
  border-radius: 100%;
} 

.scale_nav svg {
  width: 14px;
  height: 14px;
  stroke: var(--heading-black);
}

.gradient_border {
  background: linear-gradient(102.67deg, #f0f0f0 1.36%, #fdcd68 104.65%);
}

.way_cards,
.way_cards .bg-white {
  height: 100%;
}

.way_cards img {
  width: 60px;
}

.legacy_content_height {
  min-height: 180px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_border {
  border-top: 1px solid #d9d9d9;
}

.mix_bg {
  background: url(../images/mix-bg.webp) no-repeat right center;
  background-size: cover;
}

.future_card img {
  width: 60px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.cta_banner {
  background: url(../images/cta-banner.webp) no-repeat right center;
  background-size: cover;
}

.overly_black {
  background: rgb(0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.footer_bg {
  background: linear-gradient(102.67deg, #f0f0f0 1.36%, #fdcd68 104.65%);
}

.modal-header{
     border-bottom: none !important;
}

.modal-footer{
    border-top:none !important;
}