/* -------------------------------- 

File#: _1_feature-v9
Title: Feature v9
Descr: A feature section with 2 blocks
Usage: codyhouse.co/license

-------------------------------- */
.feature-v9:hover .feature-v9__block:not(:hover) .feature-v9__content {
  opacity: 0.5;
}
.feature-v9:hover .feature-v9__block:not(:hover)::after {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.8);
  -webkit-backdrop-filter: grayscale(100%);
          backdrop-filter: grayscale(100%);
}

.feature-v9__block {
  position: relative;
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: var(--space-xl) var(--space-md);
  min-height: 350px;
}
.feature-v9__block::before, .feature-v9__block::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: 0.2s;
}
.feature-v9__block::before {
  height: 70%;
  background: linear-gradient(hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0), hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.8));
  mix-blend-mode: multiply;
}
.feature-v9__block::after {
  height: 100%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0);
}
.feature-v9__block:hover .feature-v9__content {
  transform: translateY(-10px);
}
@media (min-width: 48rem) {
  .feature-v9__block {
    min-height: 450px;
  }
}
@media (min-width: 64rem) {
  .feature-v9__block {
    min-height: 600px;
  }
}
@media (min-width: 80rem) {
  .feature-v9__block {
    min-height: 700px;
  }
}

.feature-v9__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  margin: auto auto 0;
  transition: 0.2s;
}

.feature-v9__link {
  color: var(--color-black);
  text-decoration: none;
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background-color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.8);
  border-radius: var(--radius-md);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: background-color 0.2s;
}
.feature-v9__link:hover {
  background-color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 1);
}

.text-j{
  
    letter-spacing: 4px;
}
.text-j2{
    font-size: 3.4em;
}
.text-exl{
    font-size:5em; 
}
.bg-illustration{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.v2span{
    font-size:40px;margin-left:10px    
}

.animation-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    perspective: 1400px;
    transform-style: preserve-3d;
    overflow: hidden; 
  }
  .animation-pages-container {
    top:0px;
    right: -5%;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
    pointer-events: none;
    position: absolute;
    transform-style: preserve-3d;
    transform: rotateY(30deg) rotateX(36deg) rotateZ(1deg) scale(1) translate(0, 5em);
    width: 100%;
    opacity: 1;
  }
  
  .animation-parts-page {
    animation: add-page 0.4s 1.5s cubic-bezier(0.21, 0.91, 0.39, 0.99) forwards;
    background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0.50) 7%, rgba(255, 255, 255, 0) 100%);
    height: 42em;
    margin: 0 2em;
    opacity: 0;
    padding: 1em 0;
    position: absolute;
    transform-style: preserve-3d;
    transition: all 2.5s cubic-bezier(0.43, 0, 0.31, 1);
    width: 24em;
  }
  .animation-parts-page:nth-child(1) {
    left: -28em;
  }
  .animation-parts-page:nth-child(2) {
    left: 0;
  }
  .animation-parts-page:nth-child(3) {
    left: 28em;
  }
  .animation-parts-page:nth-child(4) {
    left: 56em;
  }
  .animation-parts-page:nth-child(5) {
    left: 84em;
  }
  .animation-parts-page:nth-child(6) {
    left: 112em;
  }
  .animation-parts-page.initial-load {
    animation: add-page-initial 1s 0.5s cubic-bezier(0.77, 0, 0.35, 1) forwards;
  }
  .animation-parts-page.initial-load .box1 {
    animation-delay: 0.4s;
  }
  .animation-parts-page.initial-load .box2 {
    animation-delay: 0.6s;
  }
  .animation-parts-page.initial-load .box3 {
    animation-delay: 0.8s;
  }
  .animation-parts-page.initial-load .box4 {
    animation-delay: 1s;
  }
  .animation-parts-page.removing {
    animation: remove-page 0.6s ease-out forwards;
    opacity: 0.8;
  }
  .animation-parts-page .box {
    animation: add-box 0.5s cubic-bezier(1, -0.74, 0, 1.48) forwards;
    opacity: 0;
    background: rgba(255, 255, 255, .7);
  }
  .animation-parts-page .box1 {
    animation-delay: 2s;
    width: 90%;
    height: 20%;
    margin: 2.5% auto;
  }
  .animation-parts-page .box2 {
    animation-delay: 2.5s;
    width: 40%;
    height: 10%;
    margin: 2.5% auto;
  }
  .animation-parts-page .box3 {
    animation-delay: 3s;
    width: 90%;
    height: 40%;
    margin: 2.5% auto;
  }
  .animation-parts-page .box4 {
    animation-delay: 3.5s;
    width: 90%;
    height: 20%;
    margin: 2.5% auto;
  }
  @keyframes add-page {
    0% {
      transform: translateY(10em) translateZ(10em) rotateZ(20deg);
      opacity: 0;
    }
    30% {
      opacity: 0.8;
    }
    100% {
      transform: none;
      opacity: 0.8;
    }
  }
  @keyframes add-page-initial {
    0% {
      transform: translateZ(-10em);
      opacity: 0;
    }
    30% {
      opacity: 0.8;
    }
    100% {
      transform: none;
      opacity: 0.8;
    }
  }
  @keyframes remove-page {
    0% {
      transform: none;
      opacity: 0.8;
    }
    100% {
      transform: translateZ(-10em) rotateZ(-45deg) scale(0.3);
      opacity: 0;
    }
  }
  @keyframes add-box {
    0% {
      opacity: 0;
      transform: translateY(-0.25em) scale(0.8);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes fade-up {
    from {
      opacity: 0;
      transform: translateY(0.5em);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  #jhero{
   
    position: relative;
    height: 25em;

}
  #jhero .container{
     
      position: relative;
  }
  .margin-negative{
    margin-top: -11em;
  }
  .bg-orange{
    background: #fede9a;
  }
  .bg-orange2{
   background: rgb(254,222,154);
   background: linear-gradient(180deg, rgba(254,222,154,1) 35%, rgba(255,255,255,0.48783263305322133) 100%);
  }
  .bg-orange3{
    background: #fede9a;
  }
  #jlogo{
 /* position: relative; */
}
.features-v2__item svg{
  width: 5em!important;
  height: 5em;
  font-size: 0.7em;
  margin-top: 0.8em;
  margin-right: 2em;
  padding: 1.3em;
  color:#003440;
  background: white;
  border-radius: 100%;
  box-shadow: 0 10px 20px rgba(0,0,0,.1);
}
.text-exl2{
  font-size: 2em;
}
.text-exl3{
  font-size: 3em;
}
.bgpurple{
  background:rgba(254,222,154,1);
}
a.standard{
  color:#0000EE;
}
.slideshow-pm__item{
  align-items: flex-end;
}
.slideshow-pm__item .container{
  background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(232,232,232,0.9) 22%);
  width: 100%;
  max-width: 100%;
  padding: 2em;
}
.text-bg-fx--underline-bold2 {
  background-size: 100% 100%;
  background-image: linear-gradient(transparent 50%, alpha(var(--color-primary), 0.2) 50%);
}
@media (min-width: 64rem){
  .testimonial-slideshow .slideshow__item {
      height: 520px;
  }
 
}
.feature__item--media img.refund{
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
}
footer .emailinline{
  display: inline;
}
.thefloat{
  position: fixed;
  top: 0px;
  right: -174px;
  background: rgba(255,255,255,0.9);
  border-radius: 0px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.thefloat.active{

  right: 0px;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
}
.barrow{
  float: right;
  margin-top: 0.4em;
}
.visa {
    width: 101px;
    margin-left: 7px;
    border: 1px solid #c9c9c9;
    /* margin-top: 0px; */
}
.formcontainer{
  border-radius: 10px;
}
.coursedetails{
  border: 1px solid black;
  border-radius: 10px;
}
.features-v2__item.v3 svg {
  width: 3em!important;
  height: 3em;
  font-size: 0.6em;
  margin-top: 0.8em;
  margin-right: 1em;
  padding: 0.7em;
  color: #003440;
  background: white;
  border-radius: 100%;
  box-shadow: 0 10px 20px rgba(0,0,0,.1);
}
.notfinished{
  font-style: italic;
  font-weight: 100;
}

.countdown--grid .countdown__item{
  background: none;
}
.countdown--grid .countdown__label {
  display: block;
  text-transform: uppercase;
  font-size: 0.3em;
  letter-spacing: 0.1em;
  color: black;
}
.slideshow-pm__item{
  min-height: 370px;
}
.main-footer__nav-list{
  display: none;
}
.coursedetails .applyform{
  text-align: left;
}
.basewrap{
        background: white;
    padding: 1em;
    width: 3.5em;
    height: 3.5em;
    border-radius: 100%;  
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
    color: #003440;
}
.jenroll{
    background:white;
    width:100%;
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}
.nopadmob{
    padding-left:0px;
    padding-right:0px;
}
.seoicon img{
    width:30px;    
}
.colorgrey{
    color: hsl(240,1%,48%);
}
.thborder{
  border: 4px solid #8b8b8c;
}
.seobox .thebox{  
    background: white;
    padding: 2em 4em 3em 4em;
    box-shadow: 0px 1px 2px rgb(3 43 76 / 10%);
}
.seobox .text-component ul li{
        line-height: 1.8;    
}
.seov3 .card-v3__content,.seov3 .card-v3__footer{
    background:white!important;    
}
.seotest .testimonial-slideshow .slideshow__item{
    background:white!important;    
}
.rightpayment{
    background:white;    
    z-index: 999;
    position: relative;
    height: 378px;
}
.paddingbottomccc{
    padding-bottom: 12px!important;
}
.bgwhite{
    background:white;    
}


@media (min-width: 64rem){
  #jhero{
   
    height: 30em;

  }
  .text-exl {
    font-size: 7em;
  }
  .feature__item--media img.refund{
    width: 400px;
  }
  .main-footer__nav-list{
    display: -webkit-box;
    display: flex;
  }
  .slideshow-pm__item {
    min-height: 480px;
  }
  .coursedetails .applyform{
    text-align: right;
  }
}


@media (max-width: 1024px) {
	.v2span {
        font-size: 23px;
        margin-left: 7px;
    }
}
@media (max-width: 507px) {

    .mmtext{
        font-size: 32px!important;
    }
}
@media (max-width: 400px) {
   /* #jlogo.margin-negative{
        margin-top: -10em;    
    } */
    #lastsection{
        padding-left: 1.5em;
        padding-right: 1.5em;    
    }
}