/**************************/
/*     General Styles     */
/**************************/
/*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --black: #0F1B24;
  --dark: #0F1722;
  --hero-bg: #0F1C25;
  --white: #fff;
  --theme-black: #000312;
  --gray: #3c3b3b;
  --yellow: #FDE755;
  --green: #1D7141;
  --RajdhaniFont: "Rajdhani", sans-serif;
  --kumbhSansFont: "Kumbh Sans", sans-serif;
  --outfitFont: 'Outfit', sans-serif;
}

/* ===========common colors and font clasess start here=========== */
.text-black {
  color: var(--black);
  color: var(--theme-black);
}

.text-white {
  color: var(--white);
}

.text-gray {
  color: var(--gray);
}

.text-yellow {
  color: var(--yellow);
}

.text-green {
  color: var(--green);
}

.rajdhaniFont {
  font-family: var(--RajdhaniFont);
}

.outfitFont {
  font-family: var(--outfitFont);
}

.kumbhSansFont {
  font-family: var(--kumbhSansFont);
}

.navbar-dark {
  background-color: var(--dark);
}



/* ===========common colors and font clasess end here=========== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--outfitFont);
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  /* font-family: var(--RajdhaniFont); */
  font-family: var(--kumbhSansFont);
}

/* common-font-sizes */
h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 85px;
  color: var(--white);
}

h2 {
  font-size: 48px;
  line-height: 55px;
  font-weight: bold;
  color: var(--black);
}

h3 {
  font-size: 30px;
  line-height: 34px;
  font-weight: bold;
  color: var(--white);
}

h4 {
  font-size: 24px;
  line-height: 28px;
  font-weight: bold;
}


p {
  padding: 0;
  margin: 0;
}



a,
a:hover {
  text-decoration: none !important;
  color: inherit;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.inner-padding {
  padding: 250px 0 200px;
}

.banner-inner-pages {
  position: relative;
  z-index: 2;
}

.banner-inner-pages::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #09192aeb;
  mix-blend-mode: multiply;
}

.dark-bg {
  background-color: #09192A;
}

/* ======== Custom Utility Classes ======== */



/* ===== Common Button CSS ===== */
.common-btn {
  background-color: var(--white);
  border-radius: 4px;
  padding: 12px 16px 12px 25px;
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
  gap: 10px;
  color: var(--theme-black);
  font-family: var(--outfitFont);
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.5s linear;
}

/* .common-btn span {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.28999999165534973);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out .5s;
} */

.common-btn span iconify-icon {
  font-size: 25px;
  position: relative;
  top: 3px;
  transform: rotate(-35.57deg);
  color: var(--theme-black);
  transition: all ease-in-out .5s;
}

.common-btn::after {
  content: "";
  background-color: var(--white);
  position: absolute;
  transition: all ease-in-out .5s;
  z-index: -1;
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(30deg);
  transition-duration: .5s;
  transform-origin: top left;
  width: 0;
}

.common-btn:hover {
  color: var(--theme-black);
}

/* .common-btn:hover span {
background-color: rgba(255, 255, 255, .5);

} */
/* .common-btn:hover span iconify-icon {

  transform: scale(1.5);
  -webkit-animation: bounceright 0.5s alternate ease-in-out infinite;
  animation: bounceright 0.5s alternate ease-in-out infinite;
} */
.common-btn:hover span iconify-icon {

  transform: scale(1.05);
}

.common-btn.grd-yellow-btn {
  background: linear-gradient(126.59deg, #ffb629 21.67%, #ffda56 66.89%, #ffd7a6 110.83%);
  color: var(--theme-black) !important;
  font-weight: 600;
  padding: 12px 20px;
  line-height: normal;
  margin-left: 30px;
}

.common-btn:hover::after {
  background: linear-gradient(126.59deg, #ffb629 21.67%, #ffda56 66.89%, #ffd7a6 110.83%);
  height: 100%;
  width: 135%;
}



@-webkit-keyframes bounceright {
  from {
    -webkit-transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(3px);
  }
}

@keyframes bounceright {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(3px);
  }
}


/* ===== Common Button CSS ===== */

.py-100 {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.py-80 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.lh-25 {
  line-height: 25px;
}

.text-trim-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.sub-heading h3 {
  padding: 5px 10px;
  background-color: var(--yellow);
  font-family: var(--outfitFont);
  display: inline-block;
  font-size: 14px;
  line-height: normal;
  font-weight: bold;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.top-area {
  margin-bottom: 55px;
}

.sec-heading {
  margin-bottom: 2.25rem;
}