
.icon{
    width: 18px;
    height: 18px;
    object-fit: contain;
}
header{
    position: relative;
}
.header-align{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 80px;
    background: var(--white);
    position: relative;

}
.scroll-start header{
    top: 0px;
    left: 0;
    transition: .3s;
    width: 100%;
    position: fixed;
    background: var(--white);
    z-index: 999;
    box-shadow: 0px 15px 35px 0px #AFBEDF4D;


}
.modal-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.modal-wrapper {
    width: 300px;
    height: 300px;
    background: ghostwhite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.open-modal-btn-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-modal-btn,
.open-modal-btn {
    padding: 8px;
    background: slateblue;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    color: ghostwhite;
    font-weight: 5px;
    margin-left: auto;
    margin-top: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.close-btn-wrapper {
    display: flex;
}

.modal-content {
    margin: 20px auto;
    max-width: 210px;
    width: 100%;
}

.hide {
    display: none;
}

h1 {
    text-align: center;
}


.logo{
    align-items: center;
    display: flex;
    z-index: 9999;
    width: 250px;

   

}
.logo img{
    max-width: 250px;
    height:70px;
    object-fit: contain;
}
.header-center{
    width: calc(100% - 500px);
}
.header-right{
    display: flex;
    justify-content: flex-end;
    gap: 80px;
    z-index: 999;
    width: 250px;
}
.nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}
.nav a{
    color: var(--black);
    align-items: center;
    display: flex;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    height: fit-content;
    cursor: pointer;
    line-height: initial;

}
.nav a.active:before{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--blue);
}
.nav a.active{
    color: var(--blue);
 }
.nav a:hover:before{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--blue);
    animation: tab_border .3s;
}
.nav a.active:hover:before{
    animation: none;
}
@keyframes tab_border {
    0%{width: 0px;}
    100%{width: 100%;}


    
}


.nav-buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.button-cr2{
    background: var(--blue);
    padding: 10px 26px!important;
    border-radius: 4px;
    border: 2px solid var(--blue);
    border-radius: 10px;
    min-height: 30px;
    align-items: center;
    display: flex;
    cursor: pointer;
    color:  var(--white2);
    line-height: 20px;
}
.button-cr{
    background: transparent;
    padding: 8px 26px!important;
    border-radius: 4px;
    border: 2px solid var(--white)!important;
    border-radius: 10px;
    min-height: 30px;
    align-items: center;
    display: flex;
    cursor: pointer;
    color: var(--white2);
    font-size: 18px;
}
.button-cr3{
    background: linear-gradient(240deg,  var(--violet), var(--blue));
    /* background-color: #002878;
    background-image: #33d9de; */
    background-position: 100% 0;
    background-size: 200% 200%;
    padding: 8px 22px;
    border-radius: 4px;
    border: 2px solid var(--white);
    border-radius: 10px;
    min-height: 30px;
    align-items: center;
    display: flex;
    cursor: pointer;
    color: var(--white2);
    font-size: 18px;
    gap: 7px;

  transition: all 0.5s ease;
}
.button-cr3:hover {
    box-shadow: 0 0px 0px 0 rgba(0, 40, 120, 0);
    background-image: linear-gradient(45deg, var(--blue) 0%, var(--blue)55%, var(--violet) 90%);
    background-position: 0 0;
  }
.button-cr:hover, .button-cr2:hover{
    background: linear-gradient(90deg,  var(--violet), var(--blue));
    background-size: 400% 400%;
    animation: gradient 3s ease;
    color: var(--white)!important;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.button-cr:hover:before{
    display: none;
}

.menu{
    width: 25px;
    height: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.menu span{
    height: 2px;
    width: 100%;
    background: var(--blue);

}
.menu span:nth-child(2){
    width: 80%;
}
.min-d-none-990{
    display: none;
}




/* header end */
/* hero start */
.hero{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: linear-gradient(260deg, var(--blue), var(--violet));
    min-height: calc(100vh - 80px);
    align-items: stretch;
    position: relative;
    overflow: hidden;
}
.page .hero {
    background: linear-gradient(260deg, var(--blue), var(--violet));
    min-height: auto;
    padding-top: 40px;
}
.page-sec .hero {
    min-height: auto;
}
.hero:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/shape1.png);
    background-size: over;
    background-repeat: no-repeat;
    background-position: bottom;
}
.hero:after{
    content: "";
    position: absolute;
    bottom: -120px;
    left: calc(50% - 100px);
    transform: translateX(-50%);
    width: 240px;
    height:240px;
    background: url(../images/shape2.png);
    background-repeat: no-repeat;
    background-position: bottom;
    animation-name: spin;
    animation-duration: 12000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background-size: contain;
}
@keyframes spin { 
    from { 
        transform: rotate(0deg); 
    } to { 
        transform: rotate(360deg); 
    }
}
.page .hero:after, .page-sec .hero:after{
    display: none;
}
.hero-shape img{
    width: 200px;
    height: 400px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    object-fit: cover;
    animation-name: spin2;
    animation-duration: 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes spin2 { 
   0% { 
      opacity: 0;
    } 50%{ 
        opacity: 1;
    }
    100%{ 
        opacity: 0;
    }
}
.hero > div{
    width: 50%;
    align-items: center;
    display: flex;
    z-index: 99;

}
.hero-left{
    width: 50%;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    justify-content: center;
    align-items: flex-start!important;
}
.page .hero-left{
    height: auto;
    padding-bottom: 40px;
}
.hero-right{
    justify-content: flex-end;
    align-items: flex-end!important;
    position: relative;
    overflow: hidden;
}
.page .hero-right{
    overflow: visible;
}
.hero-right > div{
    z-index: 99;
}
.hero-right img{
   height: calc(100vh - 150px);
    vertical-align: bottom;
}
.page .hero-right img{
    height: auto;
     vertical-align: bottom;
    max-height: 460px;

 }
.hero-slide-img{
    display: flex!important;
    justify-content: flex-end!important;
    position: relative;
    margin: 0 auto;
}
.hero-slide-img img{
    z-index: 99;
    object-position: bottom;
}

.hero-slide-img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(42, 170, 148, 1) -4.46%, var(--blue) 66.67%);
    filter: blur(40px);
    animation-name: spin2;
    animation-duration: 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.ratings {
    position: absolute !important;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--white2);
    max-width: 290px !important;
    align-items: start !important;
    width: 100% !important;
    height: 200px !important;
    /* overflow: auto !important; */
    padding-left: 40px;
}
.rating-shape{
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.ratings > div{
    left: 30px;
}
.stars{
    display: flex;
    gap: 10px;
    align-items: center;
}
.stars img{
    height: 30px;
    object-fit: contain;
}
.ratings *{
    color: var(--white2);
    text-align: left;

}
.slide
.slide-child{
    max-width: 650px;
}
.hero-flex{
    display: flex;
    gap: 20px;
    align-items: center;
} 
.hero-flex a{
    color: var(--white2);
    cursor: pointer;
    padding: 0 5px;
    border-bottom: 1px solid transparent;
}
.slider-one-text{
    max-width: 540px;
}
.slider {
    width: 100%;
    height: calc(100vh  - 80px);

    position: relative;
    overflow: hidden;

  }
  .page-sec .slider{
    height: 520px;
  }
  .slider.slider-one {
    height: 370px;

  }
  .about-us .slider.slider-one {
    height: 260px;

  }
  .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transition: opacity .3s ease;
  }
  .slider-three .slide2 {
    width: calc(100% - 30px);

    height: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transition: opacity .3s ease;
  }
.hero-flex a:hover{
    border-bottom: 1px solid var(--white2);
}
.hero-input{
    background-color: var(--white);
    padding: 10px 10px 10px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 500px;

    width: 100%; 
}
.hero-input input{
    padding: 0;
    font-size: 16px;
    outline: none;
    border:none;
    width: 100%;
    background: transparent;
    
}
::placeholder{
    color: var(--black2);
    font-size: 16px;
}

/* hero end */




/* teachings start */
.teachings{
    clear: both;
    background:linear-gradient(45deg, #F5F9FD, rgba(42, 170, 148, 0.1));
    position: relative;
    padding-top: 60px;
 }
.teaching-container{
    background: var(--white);
    border-radius: 0 30px 30px 0 ;
    padding-bottom: 10px;
    padding-top: 30px;
    z-index: 1;
    position: relative;

}

.teaching-col-row{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap:30px;
    padding: 30px;
    margin-top: 20px;
}
.teaching-col{
    width: calc(33.333% - 20px);
   


    
}
.teaching-col .teaching-card {

    height: 100%;
    position: relative;
}
.teaching-col .teaching-card .teaching-card-content {

    padding-bottom: 80px;
}
.teaching-col .teaching-card  .button-cr2{
    position: absolute;
    left: 25px;
    bottom: 25px;
}
 .teaching-card{
    border-radius: 20px;
    box-shadow:0px 2px 14px 0px #00000030;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: .3s;

 }
 .teaching-card:hover{
    transform: scale(1.02);
 }
 .card-img {
    display: flex;
    align-items: center;
    background: white;
    justify-content: center;
    padding: 25px;
   
}
 .teaching-card-content{
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
   align-items: start;
   background-color: #f2f1ff;
    
 }
 .teaching-card-content h4,
 .teaching-card-content h5,
 .teaching-card-content h6 {
     overflow: hidden;
     text-overflow: ellipsis;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
 }
 
 .teachings .slick-arrow{
    display: none!important;
 }
 .badge-row{
    display: flex;
    align-items: start;
    gap: 10px;
    flex-wrap: wrap;
 }
 .badge-row h6{
    background-color: white;
    border-radius: 6px;
    padding: 3px 8px;
 }
 .teachings .slick-track {
    padding: 20px 0;
    display: flex;
    gap: 40px;
    margin-top: 20px;
}
.teachings .slick-dots li button {
    width: 10px;
    background-color: #AFBEDF;
    height: 10px;
    border-radius: 50%;
    padding: 0;
}
.teachings .slick-dots li.slick-active button {
    background: #1A94FF;
}
.teachings .slick-dots{
    text-align: center;
    bottom: -50px;
}
.seperation{
    padding: 20px;
}

.page .teachings{
    padding-bottom: 80px;
}
.page .teachings:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 70%;
    height: 100%;
    background: url(../images/about-shape2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.page .teaching-container {
    background: var(--white);
    border-radius:  30px 0 0px 30px;
    padding-bottom: 10px;
    padding-top: 30px;
    z-index: 1;
    position: relative;
}
/* teachings end */
/* app start */
.app-sec{
    background:linear-gradient(239deg, #d8eeed, rgb(244 249 253));
    overflow: hidden;
    padding-top: 150px!important;
    padding-bottom: 150px!important;
}
.app{
    background:  linear-gradient(240deg, rgba(46, 103, 167, 1) 1.04%, rgba(74, 22, 189, 1) 96.78%);
     position: relative;
     padding: 60px;
     border-radius: 30px;
     /* margin: 50px 0; */
   
 }
 .app:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../images/shape1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    border-radius: 30px;
}
.app::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background:rgba(42, 170, 148, 1);
    filter: blur(50px);

}
.course-details .app::after{
    display: none;
}

.course-details .app-right {
    width: fit-content;
    left: -50px;
    right: auto;
}
.course-details .app-right img {
    height: 400px;
}
.course-details .app-left {
    width: 100%;
    padding-left: 180px;
}
 .app-row{
     display: flex;
     align-items: stretch;
 
 }
 .app-left{
     width: calc(100% - 400px);
     /* padding-top: 80px;
     padding-bottom: 80px; */
     display: flex;
     flex-direction: column;
     gap: 10px;
     align-self: center;
     max-width: 630px;
 }
 .app-left::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background:rgba(42, 170, 148, 1);
    filter: blur(60px);
    opacity: .7;

}
.page .app-left::before{
    display: none;
}
.app-left *{
    z-index: 9;
}
 .app-right{
     width: 400px;
     display: flex;
   align-items: center;
   gap: 10px;
   justify-content: flex-end;
   position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 1;
    

   
 }

 .app-right img{
    position: relative;
    height: 300px;
}
.app-right img:nth-child(2){
    position: relative;
    height: 380px;
}

/* app end */
/* about start */
.about{
   
     position: relative;
     padding-top: 80px;
 }
 .about:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 70%;
    height: 100%;
    background: url(../images/about-shape2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.page .about:before{
    display: none;
}
 .about-row{
     display: flex;
     align-items: flex-end;
 
 }
 .about-right{
     width: 50%;
     z-index: 9;
     display: flex;

 }
 .about-right img{
     width: 100%;
     z-index: 9;
     width: 100%;
     display: flex;


 }

 .about-right > div{
    position: relative;
 }

 .about-shape {

    position: absolute;
    top: -7%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
   object-fit: contain;
    /* animation-name: spin;
    animation-duration: 6000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear; */
    background-size: contain;
    animation: rotate 12s normal linear infinite;

}
@keyframes rotate {
    0% {
      -webkit-transform: rotate3d(0, 0, 1, 0deg);
      transform: rotate3d(0, 0, 1, 0deg);
    }
    25% {
      -webkit-transform: rotate3d(0, 0, 1, 90deg);
      transform: rotate3d(0, 0, 1, 90deg);
    }
    50% {
      -webkit-transform: rotate3d(0, 0, 1, 180deg);
      transform: rotate3d(0, 0, 1, 180deg);
    }
    75% {
      -webkit-transform: rotate3d(0, 0, 1, 270deg);
      transform: rotate3d(0, 0, 1, 270deg);
    }
    100% {
      -webkit-transform: rotate3d(0, 0, 1, 360deg);
      transform: rotate3d(0, 0, 1, 360deg);
    }
  }
  
 .about-left{
     width: 50%;
     display: flex;
     flex-direction: column;
     gap: 20px;
     align-items: flex-start;
     z-index: 9;
     padding-right: 40px;
     padding-bottom: 80px;
   
 }
 .won-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 540px;
    padding-top: 20px;
 }
 .won-child{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
 }
 .won-child img{
    width: 40px;
    object-fit: contain;
 }
/* about end */

/* request start */

 .request-row{
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
 
 }
 .request-row:before{
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 70%;
    height: 100%;
    background: url(../images/request-shape.png);
    background-size:contain;
    background-repeat: no-repeat;
    background-position:bottom;

}
.request-row:after{
    content: "";
    position: absolute;
    bottom: -130px;
    left: -130px;
    width: 260px;
    height: 260px;
    background: url(../images/request-shape2.png);
    background-size:contain;
    background-repeat: no-repeat;
    background-position:bottom;
    filter: grayscale(1);
    opacity: .5;
    animation: rotate 12s normal linear infinite;

}
.page .request-row:after{
    display: none;
}
.page.contact-us .request-row:after{
    display: block;
    filter: invert(1);
}
 .request-left{
   
     width: calc(100% - 450px);
     display: flex;
     flex-direction: column;
     gap: 20px;
     z-index: 9;
     position: relative;
 }

 .request-right{
    width: 400px;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     margin-left: 50px;
     box-shadow: 0px 15px 35px 0px #AFBEDF4D;
     padding: 30px;
     border-radius: 20px;
     position: relative;
     background: white;
     z-index: 9;
     position: relative;

   
 }
 .request-left > div{
    max-width: 700px;
 }
 .form{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
 }
 .form > div{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
 }
 .form label{
    margin: 0;
    color: var(--black2);
    font-size: 18px;
 }
 .form input,  .form select,  .form textarea{
    width:100%;

    color: var(--blue);
    font-size: 16px;
 }
 .request-row .button-cr{
    font-weight: 700;
    color: var(--blue);
    border: 1px solid var(--blue)!important;
    width:100%;
    text-align: center;
    justify-content: center;

 }
 .form-seperator{
    width: 100%;
    height: 1px;
    background-color:#4F4F4F;
    margin: 25px 0;
 }
 .form ::placeholder{
    color: #4F4F4F;
    font-size: 16px;
}
.request-row .won-flex {
    border-bottom: 1px solid var(--blue);
    padding-bottom: 15px;
    padding-right: 70px;
    border-radius: 0 0 60px 0;
}
.request-row  .radius-b{
    border-bottom: 1px solid var(--blue);
    padding-bottom: 15px;
    padding-right: 70px;
    border-radius: 0 0 60px 0;
    margin-top: 50px;
    font-size: 18px;
}
/* request end */

/* blogs start */
.blogs{
    background: white;
    padding-left: 5%;

    position: relative;
}
.blogs:before{
    content: "";
    position: absolute;
    top: 40px;
    right: 0px;
    width: 90%;
    height: calc(100% - 40px);
    background: url(../images/blog-shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position:center;
    opacity: .8;

}
.blog_details .blogs:before{
    top: 0;
    display: none;
}
.blogs-row{
    margin-top: 20px;
    position: relative;
    z-index: 9;
   padding-top: 20px;
}
.blog_page .blogs-row{
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    padding-top: 20px;
}
.blog_page .blogs:before {
    content: "";
    position: absolute;
    bottom: 0px;
    top: auto;
    right: auto;
   left: 0px;
    width: 90%;
    height: calc(100% + 20px);
    background: url(../images/blog-page-shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .8;
}
.blog_page .blogs {
    background: linear-gradient(45deg, #F5F9FD, rgba(42, 170, 148, 0.1));
}
.blog_page .blogs-row > a{
    width: 50%;
}
.blogs-card {
    margin: 0 15px;
    display: flex;
    padding: 25px;
    background: var(--white);
    border-radius: 50px;
    transition: .3s;
}
.blogs-card:hover{
    transform: scale(1.02);
}
.blog-left{
    width: 40%;
    padding-right: 25px;
    position: relative;
}
.blog-right{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 60%;
}
.blog-right h3{
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-right h6{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blogs-card .blog-left  img{
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    aspect-ratio: 1/1;
    height: 100%;

}
.read-more{
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
}
.read-more img{
    width: 10px;
    cursor: pointer;
}
.blog-badge{
    background-color: var(--white);
    padding: 3px 15px;
    border-radius: 20px;
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--blue);
    font-size: 16px;
}
.blogs .slick-prev, .blogs .slick-next{
    position: absolute;
    bottom: -60px;
    right: 10px;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    transform: none;
    top: auto;
    border-radius: 50%;
    background: white;
}
.blogs .slick-prev {
    left: calc(50% - 50px);
}
.blogs .slick-next {
    right: calc(50% - 50px);
}


    .blogs .slick-next:before, .blogs .slick-prev:before {
        content: '';
        position: absolute;
        background: url(../images/arrow-right.png);
        background-size: contain;
        background-position: center;
        width: 10px;
        height: 10px;
        background-repeat: no-repeat;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .blogs .slick-prev:before {

        transform: translate(-50%, -50%) rotate(180deg);
    }

/* blogs end */

/* details page start */
.course-detail{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.papers{
    padding-left: 200px;
    padding-top: 50px;
}
.details-row{
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}
.detail-left {
    width: calc(100% - 440px);
}
.detail-left > img{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}
.detail-right {
    width: 380px;
}
.details-card-slide{
    background: var(--blue);
    padding: 30px 25px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
}
.details-card-slide h3{
    color: var(--white2);
    margin-bottom: 5px;
}
.course-details .teaching-card:hover {
    transform: scale(1);
}
.course-details .teaching-card {
   margin: 0 5px;
}
.details-img img{
    width: 100%;
    margin-bottom: -40px;
}
/* details page end */

/* pagination start */
.pagination{
display: flex;
align-items: center;
gap: 15px;
margin: 40px auto;
margin-bottom: 0;
width: fit-content;
position: relative;
z-index: 9;
}
.pagination > *{
    width: 40px;
    height: 40px;
    background: #fafafa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E2A59;
    cursor: pointer;
   
}
.pagination .page-number{
    background-color: #EFF0FF;
}
.page-number.active{
    color: var(--white2);
    background-color: #1E2A59;
}
/* pagination end */
.justify-text{
    max-width: 800px;
    margin: 0 auto;
}
.justify-text img {
    float: left;
    margin: 5px;
    width: 100%;
    padding: 10px;
}

.justify-text  p {
    text-align: justify;
}
/* footer start */
footer{
    background: #25167C url(../images/footer-bg.png);
    padding-top: 60px;
    padding-bottom: 20px;
    position: relative;
    background-size: cover;
    overflow: hidden;
}

footer:after{
    content: "";
    position: absolute;
   top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: url(../images/footer-shape2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;

}

footer:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: url(../images/footer-shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;


}
.first-footer{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px 2%;
    z-index: 9;
    position: relative;
}

.footer-child:nth-child(1){
    width: 29%;
}
.footer-child:nth-child(2){
    width: 25%;
}
.footer-child:nth-child(3){
    width: 20%;
}
.footer-child:nth-child(4){
    width: 20%;
}
.footer-child h5{
    color: var(--white);
}
.footer-child h5, .footer-child a{
    color: var(--white2);
}
.footer-social img{
    width: 15px;
    height: 15px;
    object-fit: contain;
    background-color: #01539D;
    border-radius: 50%;
    padding: 5px;
}

.footer-links{
    display: flex;
   flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
    list-style: none;
    padding: 0;
}
.footer-links li{
    width: calc(50% - 7px);
}
.footer-links img{
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
.last-footer{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    z-index: 9;
    position: relative;
}
.footer-flex{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--white2);
}
.footer-flex img{
    height: 24px;
    object-fit: contain;
}
.contact-us .request-left .footer-flex img{
    height: 22px;
    filter: invert(1);
}
.footer-flex.social{
    gap: 30px;
}
.footer-flex.social img{
    height: 30px;
    transition: .3s;
    cursor: pointer;
}
.footer-flex.social img:hover{
   transform: scale(1.2);
}
/* footer end */

/* contact start */
.contact-row{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-row > div{
    width: calc(50% - 10px);
}
/* contact end */

  



@media(max-width: 1360px){
   .ratings{
    left: 58%;
   }
   .hero-slide-img::before {

    width: 400px;
    height: 400px;
   }
   .hero-input {
    max-width: 400px;
}
.course-details .app-left {
    padding-left: 100px;
}
    
}
@media(max-width: 1200px){
    .ratings {
        left: auto;
        right: 40px;
        transform: none;
        top: 20px;
        align-items: end!important;
        display: none!important;


        

    }
    .slider.slider-one {
        height: 260px;
    }
    .ratings * {
        text-align: right;
    }
    .rating-shape {
        right: -30px;
        left: auto;
    }
    .hero-slide-img::before{
        display: none;
    }
    .teachings .slick-track {
        gap: 20px;
    }
    .request-right {

        padding: 20px;
        padding-bottom: 50px;

    }
    .request-row .button-cr {
        right: 20px;
    }
    .blog_page .blogs-row > a {
        width: 100%;
    }
    .blog_page .blogs::before{
        width: 100%;
    }

}
@media(max-width: 1100px){
    .nav{
        gap: 10px;
    }
    .hero-left{
        width: calc(100% - 400px)!important;
    }
    .hero-right{
        width: 400px!important;
    }
    .hero-right img {
        width: 400px;
        object-position: bottom;
    }


   
.first-footer {
    gap: 50px 0;
}
.app {
    padding: 30px;
}
.course-details .app-right img {
    height: 330px;
}
.papers {
    padding-left: 140px;
}
.page-sec .slider{
    height: 450px;
}
.footer-child{
    width: 50%!important;
    padding: 10px;
}
.hero{
    min-height: auto;
}
.hero-left.slider.hero-slide.slider-left, .hero-right {
    height: 550px;
}
}
@media(max-width: 1024px){
    .teaching-col {
        width: calc(50% - 15px);
    }
}
@media(max-width: 990px){
    
    .hero-input {
      width: auto;
    }
    .slider.slider-one {
        height: 240px;
    }
    .max-d-none-990{
        display: none;
    }
    .min-d-none-990{
        display: block;
    }
    .nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    align-items: center;
    flex-direction: column;
    width: 100%;
    left: 0px;
    position: relative;
    padding: 15px;
}
.nav a{
    font-size: 22px;
}



    .menu{
        display:flex;
        z-index: 9999;
    }
    .open .menu span:nth-child(3) {
        transform: translate(0%, -6px) rotate(-45deg);
        transition: .3s;
    }
    .open .menu span:nth-child(1) {
        transform: translate(0%, 10px) rotate(45deg);
        transition: .3s;
    }
    .open .menu span:nth-child(2) {
        display: none;
    }
    .header-center {
        flex-direction: column;
        height: 100vh;
        background: var(--white);
        width: 100vw;
        position: fixed;
        top: 0;
        right: -100vw;
        justify-content: flex-start;
        transition: .3s;
        padding-top: 180px;
        gap: 40px;
    }
    .header-right{
width: auto;
padding-right: 40px;
    }
    .open .header-center{
        right: 0;
        z-index: 999;
    }
    .open ~ .menu span:nth-child(1) {
        transform: translate(0%, 10px) rotate(45deg);
        transition: .3s;
    }
    .open ~ .menu span:nth-child(2) {
        display: none;
    }
    .open ~ .menu span:nth-child(3) {
        transform: translate(0%, -6px) rotate(-45deg);
        transition: .3s;
    }


.app-right img {
    max-height: 350px;
}
.teachings {
    margin-top: 0px;

    padding-bottom: 40px!important;
}
.about-left{
    padding-right: 0px;
  
}
.request-left {
    width:100%;
}
.request-right {
    width: 100%;
}




.blogs{
    padding-bottom: 80px!important;
}
.blog_page .blogs{
    padding-bottom: 40px!important;
}
.about-left{
    gap: 10px;
}
.about-left {
    padding-bottom: 40px;
}

.detail-left, .detail-right {
    width:100%;
}
.course-details  .app-sec{
    padding: 80px 0 80px 50px!important;
}
.app-sec {

    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

}
@media(max-width: 900px){
    .hero-left, .hero-right {
        width: 100%!important;
    }
    .slider-one-text {
        max-width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .ratings{
        display: none!important;
    }
    .hero-input {
        margin: 0 auto;
        width: 100% !important;
    }
    .hero-left.slider.hero-slide.slider-left, .hero-right{
        height: 450px;
    }
    .page .hero-right{
        height: auto;

    }
    .hero-right img {
       height: 450px;
       width: auto;
    }
    .hero:after{
        left: -120px;
        transform: none;
    }
    .app-left {
        width: 100%;
        max-width: 630px;
    }
    .app-right{
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        transform: none;
        justify-content: center;
    }
    .app-row{
        flex-direction: column;
       
    }
    .about-row{
        flex-direction: column-reverse;
        gap: 30px;
    }
    .about-right, .about-left{
        width: 100%;
    }
    .about:before {
        width: 100%;
    }
    .about {
        padding-top: 40px;
    }
    .about-right {
        max-width: 500px;
        margin: 0 auto;
    }
    .app-right img {
        max-height: 220px;
    }
    .request-row {
        flex-wrap: wrap;
        gap: 20px;
     }
    .request-left {
        width: 100%;
    }
    .request-right {
        margin-left: 0px;
    }
    .last-footer{
        flex-direction: column;
    }
    .last-footer > div{
        width: 100%;
        justify-content: center;
    }
    .course-details .app-left {
        padding-left: 0px;
    }
    .course-details .app-right {
        left: auto;
        right: auto;
        transform: none;
        margin: 0 auto;
    }
    .course-details .app-sec {
        padding: 80px 0 !important;
    }
    .papers {
        padding-left: 0px;
    }
    .course-details .app-sec {
        padding: 40px 0 !important;
    }

}
@media(max-width: 768px){

    .teaching-container {
        background: initial;
        border-radius:0;
    }
    .teaching-row{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .teaching-row > a{
        width: 100%;
    }
    .teaching-row > div{
        width: calc(50% - 10px);
    }


    .slick-dots{
        bottom: 0!important;
    }

    .card-count h2 {
        line-height: 22px;
    }
    

.app-right img {
    max-height: 300px;
}
.about-row {
    flex-direction: column-reverse;
    gap: 20px;
}
.about-right {
    justify-content: center;
    width: 100%;
}
.about-left {
    width: 100%;
}

.request-right {
   margin: 0;
   border-radius: 15px;
}
.request-left {
    margin: 0 auto;
    gap: 10px;
}
.teachings .slick-dots {
    bottom: -50px!important;
}
.teachings-2 {
    padding: 0px!important;
}
.teachings{
    padding-left: 0px!important;
    padding-right: 0px!important;

}
.teaching-container{
padding: 15px;
border-radius: 0!important;
}
.teachings .seperation{
    padding: 0;
    
}
.teaching-slides{
    padding: 30px 0;
}
.blogs {
    padding-left: 15px;
}
.details-card-slide {
    padding: 20px;
    border-radius: 20px;
}
.details-row {
    gap: 30px;
}
.details-img img {
    margin-bottom: -30px;
}
.teaching-col-row {

    padding: 0px;
}
}
@media(max-width: 600px){
    .blogs-card{
        flex-direction: column;
        gap: 20px;
    }
    .blog-left {
        padding-right: 0px;
        width: 100%;
    }
    .blogs {
        padding-right: 15px;
    }
    .blog-right {
        gap: 10px;
        width: 100%;
    }
    .teaching-row > div{
        width: 100%;
    }

    .app-row {

        flex-direction: column;
    }
    .app-left {
        width: 100%;
        padding-bottom: 0;


    }
    .app-right {
        width: 100%;
        justify-content: center;
    }
    .app-right img {
        height: 100%;
        margin-top: 40px;
    }
    .about-right img {

        width: 300px;
        height: 300px;
        object-position: bottom;

    }
    .blogs-card {
        border-radius: 20px;
        padding: 15px;
        margin: 0;
    }
    .blogs-card .blog-left img {
        border-radius: 10px;
    }
    .app{
        padding: 15px;
        border-radius: 15px;
    }
    .teaching-card-content{
        padding: 15px;
    }
    .app-right img {
        max-height: 200px;
    }
    .about-shape{
        width: 240px!important;
        height: 240px!important;
        left: 13%;
        top: 0;
    }
    .request-row .won-flex, .request-row .radius-b{
        padding-right: 30px;
        border-radius: 0 0 40px 0;
    }
    .contact-row > div{
        width: 100%;
    }
    .page-sec .slider{
        height: 400px!important;
    }
    .footer-links li{
        width: 100%;
    }
    .footer-child:nth-child(2){
        width: 100%;
    }
    .footer-child:nth-child(3){
        width: 100%;
        padding: 0;
    }
    .footer-child:nth-child(4){
        width: 100%;
    }
    .footer-child{
        width: 100%!important;
        padding: 0px;
    }
    .teaching-col {
        width: 100%;
    }
    .teaching-col .teaching-card  .button-cr2{
        left: 15px;
        bottom: 15px;
    }
    .logo {

        width: 180px;
    }

}
@media(max-width: 480px){
    .logo img {
        max-width: 170px;
    }

    .hero-flex a {
        font-size: 16px;
    }
    .hero-flex {
        gap: 10px;
    }
    .button-cr, .button-cr2, .button-cr3{
        font-size: 16px;
    }
    .hero-input {
        padding: 5px 5px 5px 15px;
    }
    .page .hero-right img {
        max-height: 230px;
    }
    .page-sec .slider{
        height: 340px!important;
    }
    .button-cr2 {

        padding: 10px 16px !important;
    }
}
@media(max-width: 380px){
    

    h1 {
        font-size: 35px;
    }

}

body[data-aos-duration="400"] .app-right img[data-aos] {
    transition-duration: .8s;
}