/********** CSS **********/
/*********************** Qnsmarti *****************************/

:root {
    --primary: linear-gradient(to bottom right, #AA27F3, #6291FF);
    --dark: #343F50;
    --primary1: #AA27F3;
    --bg-light: #F6E9FE;
    --bg-light1: #F0F5FF;
    --linear: linear-gradient(90deg, #AA27F3, #6291FF);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Urbanist", serif;
    color: #343F50;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey;  */
    border-radius: 7px;
}


::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}


/************************ Common ************************/

section {
    padding: 70px 0px;
}

.text-primary {
    /* color: var(--primary) !important; */
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}
.bg-light1 {
    background-color: var(--bg-light1) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Figtree", serif;
}

h1 {
    font-weight: 700 !important;
    color: var(--dark);
}

h2 {

}

h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 20px;
    line-height: 29px;
    font-weight: 600;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    line-height: 25px;
    text-align: justify;
}

a {
    font-size: 18px;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--primary);
}

img {
    width: auto;
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}
.border5{
    border-radius: 5px;
}
h1{
    font-size: 45px;
    font-weight: 800 !important;
    /* color: var(--primary); */
    margin-bottom: 15px;
    line-height: 40px;
    position: relative;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h1 span{
    color: var(--dark);
     background: var(--dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h2.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h2.section-title span{
    color: var(--dark);
     background: var(--dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-sub-title{
    background: var(--primary);
    display: inline-block;
    color: white;
    font-size: 16px;
    line-height: 16px;
    padding: 7px 10px;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 10px !important;
}
.book-demo-btn {
    padding: 12px 25px;
    border-radius: 5px;
    border: 2px solid transparent; /* transparent border for gradient effect */
    background-image: linear-gradient(white, white), linear-gradient(to bottom right, #AA27F3, #6291FF);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #A134F4 !important;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.book-demo-btn:hover {
    color: white !important;
    background: linear-gradient(to bottom right, #AA27F3, #6291FF);
    border: 2px solid transparent;
    background-clip: border-box;
}

/********************************* Qnsmart-Banner ************************************/
.qnsmart-banner{
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    background-position: center center;
    object-fit: cover;
    /* z-index: 99; */
    /* background-color: #E6F3EE; */
    /* background: linear-gradient(to left, #E1B4FA, #FFFFFF); */
    background: linear-gradient(to left, #e8c5fb, #FFFFFF);
}
/* .qnsmart-banner::before {
    background-image: url(../img/pic1.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    background-position: left;
    left: 0;
    top: 30px;
    opacity: 0.5;
    content: '';
    width: 100px;
    height: 75px;
}
.qnsmart-banner::after {
    background-image: url(../img/pic2.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    background-position: left;
    right: 0;
    bottom: 30px;
    opacity: 0.5;
    content: '';
    width: 80px;
    height: 85px;
} */

.qnsmart-banner img{
    height: 320px;
    width: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 130px 0 130px 0;
}
.qnsmart-banner h3{
    font-size: 28px;
}
/************************ About ************************/
.about h3{
    /* margin-bottom: 15px; */
}
.about ul{
    padding: 0;
    margin-bottom: 40px;
}
.about ul li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
}

.about ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: url(../img/list-icon-check.svg) no-repeat center center;
  background-size: contain;
}
/************************ Counter ************************/
.counter-sec {

}

.counter-box{
    justify-content: center;
    align-items: center;

    border: 2px solid transparent; /* transparent border for gradient effect */
    background-image: linear-gradient(#F0F5FF), linear-gradient(to bottom right, #AA27F3, #6291FF);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 20px;
    padding: 20px 10px;
    min-height: 275px;
}
.counter-sec h3 {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}
.counter-sec h4 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}
.counter-box p{
    font-size: 17px;
    text-align: center;
}

.counter-sec img{
    height: 70px;
    width: auto;
    margin: 0 auto 20px;
}
.counter-sec .slick-slide {
    margin-right: 10px; 
}

/************************ Features ************************/

.features h3{
    margin-bottom: 30px;
}
.features-content{
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    height: 250px;
}
.features img{
    /* margin: 0 auto;
    display: block; */
    height: 45px;
    width: auto;
    margin-bottom: 15px;
}
.features h4{
    margin-bottom: 12px;
}
.features-content p{
    padding: 0;
}
.features1:nth-child(odd) .features-content{
    background: var(--bg-light);
}
.features1:nth-child(even) .features-content{
    background: var(--bg-light1);
}

/************************ Institutions ************************/
.institutions{
}
  .institution-logo {
      background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 15px 10px;
    transition: all 0.3s ease;
    height: 185px;
    margin-top: 25px;
    }

    .institution-logo:hover {
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transform: translateY(-5px);
    }
.institutions img{
    min-height: 60px;
    max-height: 65px;
    width: auto !important;
    margin: 0 auto 15px;
}
.institutions h3{
    font-size: 18px;
}
.institutions h6{
    font-size: 17px;
}
/************************ Experts ************************/
.experts{
    background: var(--bg-light);
}
.expert-details{
    background: rgba(255, 255, 255, 0.52);
    padding: 40px 30px;
    border-radius: 20px;
}
.experts-connect img{
    height: 180px;
    width: auto;
    object-fit: cover;
    object-position: top;
}
.experts-connect h3{
    margin-bottom: 5px;
}
.experts-connect h3, .experts-connect p{
    margin: 0;
    text-align: center;
}
.experts-connect i{
    font-size: 22px;
    color: #0077B5;
    margin-top: 15px;
}
.experts-connect i:hover{
    opacity: 0.8;
}

.workshops img{
    height: 270px;
    width: auto;
    object-fit: cover;
    object-position: top;
    margin: 0 auto 20px;
    display: block;
}
.workshops h4{
    font-size: 18px;
}
.workshops-carousel .slick-slide{
    margin-right: 15px;
}
.experts .book-demo-btn {

    background-image: linear-gradient(#F6E9FE, #F6E9FE), linear-gradient(to bottom right, #AA27F3, #6291FF);
}
.experts .book-demo-btn:hover {
    background: linear-gradient(to bottom right, #AA27F3, #6291FF);
    border: 2px solid transparent;
    background-clip: border-box;
}
/************************ Specialities ************************/
.specialities{
}
.specialities .features1:nth-child(odd) .features-content{
    background: var(--bg-light1);
}
.specialities .features1:nth-child(even) .features-content{
    background: var(--bg-light);
}
.specialities .features-content{
    /* height: 275px; */
}
/************************ Smart Savings ************************/
.smart-savings{

}
.smart-saving-img1{
    position: relative;
}
.smart2{
    position: absolute;
    left: 50px;
    top: 90px;
}
.smart-savings img{
    height: 500px;
    width: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}
.smart-savings ul li h3{
    margin-bottom: 5px;
}
.smart-savings li{
    margin-bottom: 20px;
}
/************************ Testimonials ************************/
.testimonials .item{
    padding: 30px 20px 60px;
    background: rgba(255, 255, 255, 0.52);
    border-radius: 20px;
    min-height: 365px;
}
.testimonials img{
    height: 100px;
    width: 100px !important;
    margin: 0;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    margin: 0 auto;
}
.testimonial-info{
    padding: 10px 0px;
    /* gap: 15px;
    justify-content: center;
    align-items: center; */
}
.testimonials h3{
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}
.testimonials p{
    font-size: 17px;
    margin: 0;
    font-weight: 500;
    margin-bottom: 5px;
     /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden; */
}
/* .testimonials .slick-dots li button{
    background: var(--primary1);
} */
 .testimonials h6{
    font-size: 16px;
 }
.testimonials .slick-dots li button:before{
    font-size: 12px;
    color: #9D9FA1;
}
.testimonials .slick-dots li.slick-active button:before{
    color: var(--primary1);

}
.testimonials .slick-dots li{
    margin: 0 -2px;
}

.vdo-testimonial-carousel{
     padding: 30px 20px 80px;
    background: rgba(255, 255, 255, 0.52);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    min-height: 365px;
}
.video-testimonial .vdo-thumbnail{
    position: relative;
    height: 250px !important;
    width: 100% !important;
    object-fit: cover;
    object-position: center;
    border-radius: 20px !important;
}
.vdo1{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0px;
}

.video-testimonial .fancybox{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-testimonial .fancybox button{
    background: none;
    border: none;
}
.video-testimonial a.fancybox:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 27%);
    border-radius: 20px !important;

}
.play-button img{
    height: 35px !important;
    width: auto !important;
    border-radius: 0 !important;
}
.vdo1 button:hover{
    opacity: 0.8;
}

 .video-testimonial .slick-slide{
    margin-right: 20px;
 }
 .video-testimonial .slick-slide:last-child{
    margin-right: 0;
 }
 .testimonials .slick-dots{
    bottom: 15px;
 }
/************************ Work ************************/
.work img{
    height: 170px;
    width: auto;
    margin: 0 auto;
    display: block;
}
.work-mob{
    height: auto !important;
    margin-top: 40px !important;
}
/************************ Master Minds ************************/

.master-minds{

}
.master-mind-main{
    padding: 30px 30px;
    background: rgba(255, 255, 255, 0.52);
    border-radius: 20px;
    gap: 20px;
}
.master-mind-main img{
    height: 180px;
    width: auto;
    object-fit: cover;
    object-position: top;
}

.master-mind{
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.52);
    border-radius: 20px;
    height: 330px;
}
.master-mind img{
    height: 130px;
    width: 130px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}
.master-mind h3{
    margin-bottom: 10px;
}
.master-minds p{
    font-size: 17px;
}
.master-mind p{
    text-align: center;
}
/************************ FAQ ************************/
/* .accordion-item{
    background: rgba(255, 255, 255, 0.52);
    padding: 20px 30px;
}
.accordion-button{
    background: transparent;
} */
 .accordion-button{
    display: flex;
    align-items: center;
 }
.accordion h4{
    font-size: 21px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
    padding-left: 10px;
    padding-top: 7px;
}
.accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none !important;
    color: var(--primary) !important;
    padding: 10px 20px;
}
.accordion-button:focus{
    box-shadow: none !important;
}
.accordion-item{
    margin-bottom: 10px;
    border: none;
}
.accordion-body{
    padding: 0px 20px;
}
.accordion-button{
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: normal;
}
.accordion-button::before {
    font-family: "Font Awesome 5 Free";
    content: "\2b";
    font-size: 21px;
    font-weight: 900;
    color: var(--primary1);
    opacity: 1;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-button::after {
    display: none;
}
.accordion-button:not(.collapsed)::before {
    font-family: "Font Awesome 5 Free";
    content: "\f068";
}

.faq p{
    padding-left: 50px;
}


/************************************** Responsive *******************************/
@media (min-width: 1400px) {

}
@media (min-width: 1200px) and (max-width: 1400px) {

}
  @media (max-width: 1400px) {
    .features h4{
        font-size: 20px;
    }
    .smart-savings img {
    height: 420px;
    }
.master-mind {
    min-height: 355px;
}
  }
  @media (max-width: 1200px) {
    .features-content{
        height: 280px;
    }
    .smart-savings img{
    height: 350px;
    }
    .master-mind{
    min-height: 380px;
}
.workshops img{
    height: 230px;
}
/* .video-testimonial .vdo-thumbnail{
    height: 300px !important;
  } */
   .testimonials .item, .vdo-testimonial-carousel{
    min-height: auto;
   }
}
  @media (max-width: 992px) {
    section {
    padding: 40px 0px;
  }
        .qnsmart-banner{
    background: linear-gradient(to bottom, #e8c5fb, #FFFFFF);
    }
    .qnsmart-banner img{
        margin: 0 auto;
        display: block;
    }
    .features p{
        padding: 0;
    }
    .features-content{
        padding: 25px 10px 25px 15px;
        height: 260px;
        /* min-height: auto; */
    }
    .institution-logo{
        height: 160px;
    }
    .specialities .features1{
        margin: 0 auto;
    }
.smart-img-sec{
    display: flex;
    justify-content: center;
    margin-bottom: 120px;
}
.master-mind{
    min-height: auto;
}
.video-testimonial .vdo-thumbnail{
    height: 250px !important;
  }
  .accordion h4{
    font-size: 19px !important;
    line-height: 25px !important;
    }
  }
  
  @media (max-width: 768px) {
.qnsmart-banner img {
    height: 250px;
    border-radius: 90px 0 90px 0;
}
   .features1{
    /* text-align: center; */
   }
      .features-content{
        padding: 25px 15px;
        height: auto;
    }
    .specialities .features-content{
        height: auto;
    }
    .institution-logo{
        height: 180px;
    }
    .accordion h4{
    font-size: 18px !important;
    line-height: 24px !important;
    }
  }
  
  @media (max-width: 576px) {
    .counter-box{
        max-width: 80%;
        margin: 0 auto;
    }
    .institution-logo{
        height: auto;
    }
    .testimonials img {
    height: 70px;
    width: 70px !important;
    }

    
  }

