body {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  color: var(--gray-500);
  background-color: var(--primary-950);
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

h3 {
	font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
}

h4 {
	font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
}

img {
    max-width: 100%;
}

a:not(.btn) {
    color: var(--primary-500);
}


/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
                            START ANIMATION
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* SCROLL ANIMATION */


.reveal, .reveal_fade-auto {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.reveal.active, .reveal_fade-auto.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.reveal_up, .reveal_auto {
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.reveal_up.active, .reveal_auto.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.reveal_down, .reveal_down-auto {
  -webkit-transform: translateY(-150px);
          transform: translateY(-150px);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.reveal_down.active, .reveal_down-auto.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.reveal_left, .reveal_left-auto {
  position: relative;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.reveal_left.active, .reveal_left-auto.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.reveal_right, .reveal_right-auto {
  position: relative;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.reveal_right.active, .reveal_right-auto.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

@media (max-width: 575px) {
  .reveal_left {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  .reveal_right {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
                            START BOOTSTRAP
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.container-2xl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media(min-width:1600px){
    .container-2xl {
        max-width: 1560px;
    }
}

.btn {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  font-weight: 500;
}

.btn-primary {
  --bs-btn-color: #fff !important;
  --bs-btn-bg: var(--primary-500) !important;
  --bs-btn-border-color: var(--primary-500) !important;
  --bs-btn-hover-color: #fff !important;
  --bs-btn-hover-bg: var(--primary-600) !important;
  --bs-btn-hover-border-color: var(--primary-700) !important;
  --bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
  --bs-btn-active-color: #fff !important;
  --bs-btn-active-bg: var(--primary-700) !important;
  --bs-btn-active-border-color: var(--primary-800) !important;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
  --bs-btn-disabled-color: #fff !important;
  --bs-btn-disabled-bg: var(--primary-500) !important;
  --bs-btn-disabled-border-color: var(--primary-500) !important;
}

.btn-secondary {
  --bs-btn-color: #000 !important;
  --bs-btn-bg: var(--secondary-500) !important;
  --bs-btn-border-color: var(--secondary-500) !important;
  --bs-btn-hover-color: #000 !important;
  --bs-btn-hover-bg: var(--secondary-600) !important;
  --bs-btn-hover-border-color: var(--secondary-700) !important;
  --bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
  --bs-btn-active-color: #000 !important;
  --bs-btn-active-bg: var(--secondary-700) !important;
  --bs-btn-active-border-color: var(--secondary-800) !important;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
  --bs-btn-disabled-color: #000 !important;
  --bs-btn-disabled-bg: var(--secondary-500) !important;
  --bs-btn-disabled-border-color: var(--secondary-500) !important;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: var(--gray-200);
  --bs-btn-border-color: var(--gray-200);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: var(--gray-300);
  --bs-btn-hover-border-color: var(--gray-300);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: var(--gray-300);
  --bs-btn-active-border-color: var(--gray-300);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: var(--gray-200);
  --bs-btn-disabled-border-color: var(--gray-200);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary-500);
  --bs-btn-border-color: var(--primary-500);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary-500);
  --bs-btn-hover-border-color: var(--primary-500);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-500);
  --bs-btn-active-border-color: var(--primary-500);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--primary-500);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--primary-500);
  --bs-gradient: none;
}

.form-control {
  border-color: var(--primary-700);
  background-color: var(--primary-950);
}

.form-control::placeholder {
  color: var(--primary-400);
}

.form-control:focus {
  color: var(--primary-200);
  outline: none;
  border-color: var(--secondary-500);
  background-color: var(--primary-950);
  box-shadow: none;
}

/* ::::::::::::::::::
   NAV MENU STYLES
:::::::::::::::::: */

.header.sticky-fixed {
  background-color: rgba(6, 10, 39, 0.5);
  backdrop-filter: blur(5px);
}

.nav-logo {
  width: 165px;
  height: 165px;
  background-color: rgba(255,255,255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 300ms;
}

.sticky-fixed .nav-logo {
  width: 100px;
  height: 100px;
  background-color: transparent;
}

.nav-logo img {
  height: auto !important;
}

/*  */

.bg-gradient-bt-primary {
  background: linear-gradient(
    to top,
    rgba(6, 10, 39, 1) 0%,
    rgba(6, 10, 39, 0) 100%
  );
}

.bg-gradient-bt-20-primary {
  background: linear-gradient(
    to top,
    rgba(6, 10, 39, 1) 20%,
    rgba(6, 10, 39, 0) 100%
  );
}

.bg-gradient-tb-primary {
  background: linear-gradient(
    to bottom,
    rgba(6, 10, 39, 1) 0%,
    rgba(6, 10, 39, 0) 100%
  );
}

.bg-gradient-tb-20-primary {
  background: linear-gradient(
    to bottom,
    rgba(6, 10, 39, 1) 20%,
    rgba(6, 10, 39, 0) 100%
  );
}

.home-intro {
  height: calc(100vh - 200px);
  overflow: hidden;
  position: relative;
}

@media (min-width:992px) {
  .home-intro {
    height: 100vh;
  }
}

.home-intro video {
  height: 100%;
  object-fit: cover;
}

.home-intro-content {
  color: #fff;
}

.home-intro-content h1 {
  /* font-size: clamp(2.25rem, 0.95rem + 6.5vw, 8.75rem); */
  font-size: clamp(2.25rem, 1.45rem + 4vw, 6.25rem);
  font-weight: 700;
  text-transform: uppercase;
}

.home-intro-content h1 strong,
.home-intro h1 b {
  font-weight: 700;
  color: var(--secondary-500);
}

.home-intro-content p {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.cms-content h2 {
  font-size: clamp(1.5rem, 1.1rem + 2vw, 3.5rem);
  text-transform: uppercase;
}

.cms-content h3 {
  font-size: clamp(1.25rem, 0.975rem + 1.375vw, 2.625rem);
  text-transform: uppercase;
}

.cms-content h3 strong {
  font-weight: 500;
  color: var(--secondary-500);
}

.cms-content h4 {
  font-size: clamp(1.125rem, 1.025rem + 0.5vw, 1.625rem);
  text-transform: uppercase;
}

.cms-content p {
  color: #62778C;
}

.badge-custom{
  border:1px solid #c9a24d;
  color:#fff;
  border-radius:50px;
  padding:6px 14px;
  font-size:14px;
}

.play-btn{
  flex: none;
  width:60px;
  height:60px;
  border-radius:50%;
  background-color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#000;
  font-size:24px;
  border: 0;
}

.wave{
    opacity:.4;
    font-size:20px;
    line-height:1;
    display: flex;
    white-space: nowrap;
}


.testimonial-box {
  background-color: #090D33;
}

.testimonial-slider .slick-arrow {
  z-index: 1;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: #012656;
}

.testimonial-slider .slick-prev {
  left: -0.625rem;
}

.testimonial-slider .slick-next {
  right: -0.625rem;
}

.testimonial-slider .slick-prev:before, .testimonial-slider .slick-next:before {
  color: var(--secondary-500);
}

.author-bg {
  background-image: url(../images/img7.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 148% 55%;
}

@media(min-width:768px) {
  .author-bg {
    background-position: 321% -84px;
  }
}
@media(min-width:1200px) {
  .author-bg {
    background-position: 120% -135px;
  }
}

@media(min-width:1536px) {
  .author-bg {
    background-position: 124% -135px;
  }
  .author-img {
    margin-left: 112px;
  }
}

.newslatter-box {
  background-color: #090D33;
}

.social-list ul,
.footer-menu ul {
  margin: 0;
  padding: 0;
  column-gap: 2rem;
  row-gap: 0.5rem;
  display: inline-flex;
}

.social-list ul li,
.footer-menu ul li {
  list-style: none;
}

.social-list ul li a,
.footer-menu ul li a {
  text-decoration: none;
  color: #fff;
  transition: ease-in-out all 300ms;
}

.social-list ul li a:hover,
.footer-menu ul li a:hover {
  color: var(--secondary-500);
}

.social-list ul li i {
  font-size: 1.25rem;
}

.divider-footer {
  width: 100%;
  height: 1px;
  background-color: var(--primary-700);
}

.footer-menu ul {
  flex-wrap: wrap;
}

.slick-dots li button:before {
  font-size: 3.125rem;
  color: var(--secondary-500);
}

.slick-dots li.slick-active button:before {
  color: var(--secondary-200);
}


.spinner {
  animation: spin 3.5s linear infinite;/
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.list-unstyled p:last-of-type {
  margin-bottom: 0;
}

@media(min-width:1200px) {
  .journy-list .col:nth-of-type(1) {
    margin-top: 6%;
  }

  .journy-list .col:nth-of-type(2) {
    margin-top: 14%;
  }

  .journy-list .col:nth-of-type(4) {
    margin-top: 11%;
  }

  .journy-list .col:nth-of-type(5) {
    margin-top: 5%;
  }

  .touch-mountaint {
    margin-bottom: -200%;
  }

  .h-xl-auto {
    height: auto !important;
  }
}

.radial-gradient {
  background: radial-gradient(ellipse at center,  rgba(125,185,232,0) 60%,var(--primary-950) 70%);
}

@media(min-width:768px) {
  .recent-podcasts-img {
    margin-top: -450px;
  }
}

.column-4-slider .slick-list .slick-track {
  display: flex;
}

.column-4-slider .slick-list .slick-track .slick-slide {
  height: auto !important;
}

.column-4-slider .slick-list .slick-track .slick-slide > div {
  height: 100%;
}

.text-transform-normal {
  text-transform: none !important;
}


ul {
  &.listNumbering {
    li {
      counter-increment: listNumbering;
      list-style: none;
      &:not(:last-of-type) {
        border: 1px solid var(--primary-200)
      }
      &::before {
        content: counter(listNumbering, decimal-leading-zero);
        letter-spacing: -5px;
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        align-items: center;
        justify-content: center;
        font-size: 3.5rem;
        line-height: 1;
        font-weight: 900;
      }      
    }
  }
}
ul.listNumbering-box {
  > li {
    counter-increment: listNumbering;
    &:before {
      content: counter(listNumbering, decimal-leading-zero);
    }
  }
}

.icon-white {
  filter: invert(99%) sepia(62%) saturate(2%) hue-rotate(206deg) brightness(103%) contrast(100%);
}

.iframe-container {
  width: 100%;
}

.iframe-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
