@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
:root {
--primary-blue: #1c75bc;
--accent-orange: #F26522;
--dark-bg: #002C54;
--light-bg: #f9f9f9;
--white-bg: #ffffff;
--darkblue-bg: #1c75bc;
}
body {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: "Sora", sans-serif;
}
input{
      padding: 1.575rem .75rem .575rem !important;
    }
.darkblue-bg{
    background:var(--darkblue-bg) ;
}
input, textarea{
  border-radius: 4px !important;
}
.white-bg{
    background: #fff;
}
.light-bg{
    background: #f8f8f8;
}
.dark-bg{
    background: #1c75bc;
}
.form-control:focus {
    border-color: unset !important;
    outline: 0;
    box-shadow: unset !important;
}
.navbar-toggler{
   border-color: #e8783d;
}
.navbar-toggler-icon{
    filter: invert(57%) sepia(61%) saturate(1117%) hue-rotate(337deg) brightness(97%) contrast(94%);
}
.navbar-toggler:focus {
    box-shadow: unset;
}
.top-header {
    background: var(--primary-blue);
    font-weight: 300;
    font-size: 14px;
    padding: 12px 0;
}
.navbar-brand img {
    width: 200px;
}
.top-header a {
   color: #fff;
}

.navbar-white {
   background: var(--white-bg);
}

.navbar-white .navbar-nav .nav-link {
   color: #000;
   font-weight: 400;
}

.navbar-white .navbar-nav .nav-link:hover,
.navbar-white .navbar-nav .nav-link.active {
   color: var(--primary-blue);
}

/*==== Navbar-CSS-Close ====*/

.main-banner-sec {
   display: flex;
   flex-wrap: wrap;
   min-height: 82vh;
}

.hero-left {
  background-color: #1e73be;
  color: #fff;
  padding: 60px 40px 60px 100px;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-left:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background-shape.webp');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.13 !important;
}

.hero-left h1 {
  font-size: 5rem;
  line-height: 1.2;
  margin: 20px 0;
}

.hero-left p {
  margin-bottom: 30px;
  font-size: 1rem;
}
.main-banner-sec .sub-text,
.about-us .sub-text {
  font-weight: 300;
  font-size: 14px;
  padding: 7px 10px;
  border-radius: 4px;
   background-color: #fff;
    color: #1e73be;
    width: fit-content;
    border: 1px solid #fff;
    text-decoration: none;
}
.main-banner-sec .btn {
    background-color: #fff;
    color: #1e73be;
    padding: 10px 20px;
    border-radius: 0;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    width: fit-content;
    border: 1px solid #fff;
    transparent: 0.5s ease;
}
.main-banner-sec .btn:hover {
    border: 1px solid var(--white-bg);
    background: transparent;
    color: var(--white-bg);
}
.hero-right {
   position: relative;
   flex: 1 1 50%;
   background-color: #000;
   display: flex;
   justify-content: center;
   align-items: center;
}
.hero-video-wrapper, .videos-sec-video-bg-1, .videos-sec-video-bg-2 {
  width: 100%;
  height: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  background-image: url('../img/banner.png');
  background-size: cover;
  background-position: center;
}.videos-sec-video-bg-1{  background-image: url('../img/Dr-Het-Desai-Video-Thumbnail.webp');}
.videos-sec-video-bg-2 {  background-image: url('../img/Dr-Dhara.webp');}
.videos-sec-video-bg-1 video, .videos-sec-video-bg-2 video {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
}.hero-video-wrapper video{	width: 100%;  height: 100%;  display: none;  object-fit: contain;  background: #000;}

 .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}

.play-button::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid var(--white-bg);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
.main-banner-sec .hero {
  flex-direction: column;
}

.hero-left, .hero-right {
  flex: 1 1 100%;
  text-align: center;
  align-items: center;
}

.hero-left h1 {
  font-size: 3rem;
}
}

/*==== Hero-Banner-CSS-Close ====*/

section.fav-topics{
      padding: 60px 0 60px;
      background:#fff;
    }

    .section-eyebrow{
      font-size:.95rem;
      letter-spacing:.06em;
      color:var(--brand);
      font-weight:400;
      color: var(--primary-blue);
      text-transform:uppercase;
    }

.fav-topics .section-title{
      font-weight:800;
      letter-spacing:.5px;
    }
.browse-btn{
      background: var(--primary-blue);
      border-color:var(--primary-blue) !important;
      border-radius: 0;
      color: var(--white-bg);
      font-weight: 300;
      transparent: 0.5s ease
}
.browse-btn:hover{
      color: var(--primary-blue);
}
/* Card */
.topic-card{
  position:relative;
  background:var(--white-bg);
  border:0;
  border-radius:18px;
  box-shadow:var(--white-bg);
  transition: transform .5s ease, box-shadow .5s ease;
  height:100%;
}
.topic-card:hover .topic-media {
    background: var(--primary-blue);
}
.topic-card:hover .topic-media img{
      /*filter: brightness(1) invert(1)*/
}
.topic-card:hover .price-badge{
      background: var(--white-bg);
      color: var(--primary-blue);
}
    .topic-media{
      width:100%;
      aspect-ratio: 1 / 1;              
      display:grid;
      place-items:center;
      padding:10px;
      box-shadow: 0 16px 30px rgba(0, 0, 0, .15);
      border-radius: 4px;
       transparent: 0.5s ease;
       border: 1px solid #1c75bc;
    }

    .topic-media img,
    .topic-media svg{
     /* width:64%;
      max-width:140px;
      height:auto;
      filter: brightness(0) saturate(100%); 
       transparent: 0.5s ease*/
    }

    .price-badge{
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      bottom:60px;                
      background:var(--primary-blue);
      color: var(--white-bg);
      font-weight:600;
      border-radius:4px;
      padding:.35rem .9rem;
      font-size:18px;
      box-shadow:0 6px 14px rgba(30,115,190,.35);
      white-space:nowrap;
       transparent: 0.5s ease
    }

    .topic-title{
      text-align:center;
      padding:16px 14px 22px;
      font-weight:500;
      color:#0f2235;
      line-height:1.3;
      font-size: 16px;
      position: relative;
      top: 20px;
    }

    @media (min-width: 1200px){
      .fav-topics .cards-row > [class^="col"]{ padding-left:5px; padding-right:5px; }
    }
/*==== fav-topics-CSS-Close ====*/

.about-us{
      padding: 60px 0;
       background:var(--primary-blue);
}
.about-us p {
    font-weight: 300;
    line-height: 27px;
    margin: 0;
}
.about-us .sub-text {
    border-radius: 0;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 7px 20px;
    text-transform: uppercase;
}
/*==== about-us-CSS-Close ====*/

.videos-sec{
  padding: 60px 0;
}
.videos-sec-text p.sub-text {
    color: #000;
    background: #1c75bc17;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 50px;
    width: fit-content;
        margin-top: 0;
}
.videos-sec-video iframe {
    border-radius: 20px;
}
.videos-sec-text h2{
    font-weight: 800;
}
.btn.sec {
    background: #1c75bb;
    color: #fff;
    border: 1px solid #1c75bb;
    transparent: 0.5s;
}
.btn.sec:hover{
    background: transparent;
    color: #1c75bb;
}
.videos-sec-text p {
    margin: 1.3rem 0;
}
/*==== Videos-CSS-Close ====*/


.course-details{
    padding: 20px 0 60px;
}
.course-details-left, .course-details-right{
      background: rgba(28, 117, 188, 0.04);
      border:0;
      border-radius:14px;
      box-shadow:var(--card-shadow);
      padding:22px 22px 12px;
      height:100%;
    }
    .course-details-left-title,
    .course-details-right-title{
      font-weight: 600;
      color:#10243e;
      margin-bottom:1rem;
    }
    .course-details-left-subtitle,
    .course-details-right-subtitle{
      font-weight: 600;
      color:#10243e;
      margin-top:1.25rem;
      margin-bottom:.5rem;
      font-size:1.05rem;
    }
    .course-details-right .check-list {
        display: flex;
        flex-wrap: wrap;
         padding:0;
          gap:.50rem .5rem;
    }
    /* List with blue check markers */
    .course-details-left .check-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      grid-template-columns: 1fr;
      gap:.50rem .5rem;
    }
    .course-details-left .check-list li,
    .course-details-right .check-list li{
      display:flex; gap:.5rem; align-items:flex-start;
      color:#2c3e55;
      line-height:1.3;
    }
    .course-details-right .check-list li .text-small {
        font-size: 14px;
    }
    .course-details-left .check-list i,
    .course-details-right .check-list i{
      color:var(--primary-blue);
      font-size: 1.1rem;
      margin-top:.2rem;
      flex:0 0 auto;
    }
  
    .course-details-right .check-list i.fa-circle {
        font-size: 0.5rem;
    }
    /* Make two columns inside each card on >= md like the screenshot */
    @media (min-width: 768px){
     
     .course-details-left .check-list.cols-2{
      grid-template-columns: 1fr 1fr; 
  }
    }

    /* Chips row */
    .course-details-left .chip{
      display:inline-flex; 
      align-items:center; 
      gap:.35rem;
      color:#0f2235;
      border-radius:999px;
      padding:.25rem .6rem;
      font-weight:600;
      margin:.3rem .35rem .3rem 0;
      font-size:.9rem;
    }
    .course-details-left .chip i{ color:var(--primary-blue); }

    .course-details-right .note{
      background:rgba(30,115,190,.08);
      font-size:.9rem; 
      color:#52637a;
      border-left:4px solid var(--primary-blue);
      padding:.6rem .75rem;
      border-radius:8px;
    }

/*==== course-details-CSS-Close ====*/



/*====pricing-section-Css-Start===*/
.pricing-section {
      padding: 60px 20px;
    }

    .pricing-section h1 {
      margin-bottom: 10px;
    }

    .pricing-section p {
      max-width: 800px;
      margin: 10px auto 10px;
      color: #555;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .pricing-section .popular p {
      color: #fff;
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .pricing-section .card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      transition: all 0.3s ease;
    }

    .pricing-section .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgb(28 117 188 / 10%);
    }

    .pricing-section .card.popular {
      border: 2px solid #1c75bc;
      box-shadow: 0 8px 20px rgb(28 117 188 / 20%);
      background: #024a83;
    color: #fff;
    }

    .pricing-section .popular-label {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: #e8783d;
      color: #fff;
      font-size: 0.9rem;
      font-weight: bold;
      padding: 5px 12px;
      border-radius: 12px;
    }

    .pricing-section .card h2 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    
    .pricing-section .popular h2 {
      color: #fff;
    }

    .pricing-section .price {
      font-size: 2rem;
      margin: 15px 0;
      font-weight: bold;
      border-bottom: 1px solid #cecccc;
      padding-bottom: 15px;
    }

    .pricing-section .features {
      list-style: none;
      padding: 0;
      margin: 10px 0;
      height: 300px;
    overflow: auto;
    }

    .pricing-section .features li {
      margin: 10px 0;
      display: flex;
      align-items: start;
    }

    .pricing-section .features li::before {
      content: "✔";
      color: #222;
      margin-right: 8px;
    }
    
    .pricing-section .popular .features li::before { 
 color: #fff;
}

    .pricing-section .btn {
      margin-top: auto;
      padding: 12px;
      background: #111;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .pricing-section .btn:hover {
      background: #333;
      color: #e8783d;
    }

    .pricing-section .btn-alt {
      background: #eee;
      color: #e8783d;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .pricing-section h1 {
        font-size: 2rem;
      }
      .pricing-cards {
        gap: 15px;
      }
    }

/*====pricing-section-Css-Close===*/
.image-text-sec{
    padding: 60px 0;
    overflow: hidden;
}
.image-text-sec .order-lg-2{
    padding: 0;
}
.image-text-box {
    background: #f9f9f9;
    padding: 30px;
}
.image-text-sec .section-title{
      font-weight:800;
      color:#10243e;
    }
.image-text-sec.section-title span{
      color:#1e73be;
    }
.image-text-sec .check-list{
      list-style:none;
      padding:0;
      margin:0;
    }
.image-text-sec .check-list li{
      display:flex;
      gap:.5rem;
      align-items:flex-start;
      margin-bottom:.4rem;
      color:#333;
      font-size:.95rem;
    }
.image-text-sec .check-list i{
      color:#1e73be;
      font-size:.9rem;
      margin-top:.2rem;
      flex:0 0 auto;
    }


/*====image-text-grid-Css-Close===*/

.faq-sec{
    background:var(--primary-blue);
    padding: 60px 0;
  }
  .faq-title{
    color:#fff;
    font-weight:800;
    letter-spacing:.3px;
    text-align:center;
    margin-bottom:28px;
  }

  /* FAQ card built with details/summary */
  details.faq-item{
    background:var(--white-bg);
    border-radius: 4px;
    box-shadow:0 10px 24px rgba(0,0,0,.1);
    overflow:hidden;
    margin-bottom: 7px;
  }
  details.faq-item[open]{ box-shadow:0 12px 28px rgba(0,0,0,.14); }
  details.faq-item[open] .faq-question{
    color: var(--primary-blue);
  }
  summary.faq-summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:18px 22px;
    list-style:none;
    cursor:pointer;
    user-select:none;
  }
  summary.faq-summary::-webkit-details-marker{ display:none; }

  .faq-question{
    font-size:1.15rem;
    font-weight: 400;
    color: #000;
    margin:0;
  }
  .faq-icon{
    width:36px; height:36px;
    border-radius:50%;
    display:grid; place-items:center;
    background: var(--primary-blue);
    color:var(--brand);
    transition:transform .2s ease;
    flex:0 0 36px;
  }
  .faq-icon i {
    color: var(--white-bg);
}
  details[open] .faq-icon{ transform:rotate(180deg); }

  .faq-content{
    padding:0 22px 20px 22px;
    color:#111;
    font-size:1.1rem;
  }

  /* spacing between columns on lg+ like your layout */
  @media (min-width: 992px){
    .faq-cols > [class^="col"]{ padding-left:18px; padding-right:18px; }
  }

/*====FAQ-Css-Close===*/


/*====gallery-section-Css-Close===*/

.gallery-title {
  border-left: 3px solid #111;
  padding-left: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  height: 250px; /* 🔹 Set same height for all items */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔹 Keeps aspect ratio while filling box */
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/*====gallery-section-Css-Close===*/

.testimonial_section {
  display: block;
  overflow: hidden;
}
.testimonial_section:after {
  display: block;
  clear: both;
  content: "";
}
.testimonial_section .about_content {
  background-color: #1c75bc;
  padding-top: 77px;
  padding-right: 210px;
  padding-bottom: 62px;
  position: relative;
}
.testimonial_section .about_content .background_layer {
  background-color: #1c75bc;
  width: auto;
  margin-left: -200px;
  right: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.testimonial_section .about_content .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}
.testimonial_section .about_content .layer_content .section_title {
  margin-bottom: 24px;
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title:after {
  display: block;
  clear: both;
  content: "";
}
.testimonial_section .about_content .layer_content .section_title h5 {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  margin-top: -5px;
  margin-bottom: 6px;
}
.testimonial_section .about_content .layer_content .section_title h2 {;
  font-weight: 300;
  font-size: 45px;
  line-height: 50px;
  padding-bottom: 51px;
  margin-bottom: 0px;
  color: #fff;
}
.testimonial_section .about_content .layer_content .section_title h2 strong {
  font-weight: 600 !important;
  width: 100%;
  display: block;
}
.testimonial_section .about_content .layer_content .section_title .heading_line {
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title .heading_line span {
  transition: all 0.5s ease-in-out 0s;
  position: relative;
}
.testimonial_section .about_content .layer_content .section_title .heading_line span:after {
  content: "";
  right: auto;
  left: 69px;
  position: absolute;
  bottom: 28px;
  width: 17px;
  margin-left: 0;
  border-bottom-width: 3px;
  border-bottom-color: #cacaca;
  border-bottom-style: solid;
}
.testimonial_section .about_content .layer_content .section_title .heading_line:after {
  content: "";
  left: 1%;
  margin-left: 0;
  position: absolute;
  bottom: 28px;
  width: 59px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: var(--white-bg);
}
.testimonial_section .about_content .layer_content .section_title p {
  color: #fff;
  margin: 0 0 15px;
}
.testimonial_section .about_content .layer_content a {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  background: #115a94;
    padding: 10px;
    border-radius: 2px;
}
.testimonial_section .about_content .layer_content a i {
  font-size: 18px;
  vertical-align: middle;
}
.testimonial_section .about_content .layer_content a:hover {
  background: #e8783d;
}
.testimonial_section .testimonial_box {
  margin-top: 60px !important;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container {
  background-color: #e8783d;
  margin-left: -170px !important;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .background_layer {
  background-color: rgba(243, 243, 243, 1);
  width: auto;
  margin-right: -200px;
  right: 0;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel {
  display: block;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
  margin: 10px 0 10px 0;
  padding: 62px 0px 72px 50px;
  position: relative;
  text-align: center;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
  margin-left: 150px;
  margin-top: 69px;
  padding: 45px 40px 45px 40px;
  z-index: 1;
  position: relative;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0s;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption {
  margin-bottom: 15px;
  position: relative;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption:after {
  content: "";
  width: 30px;
  display: block;
  height: 2px;
  text-align: center;
  left: 46%;
  margin-top: 6px;
  background-color: var(--primary-blue);
  position: absolute;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption h6 {
  padding-top: 0;
  margin-bottom: -5px;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: #1c75bc;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption span {
  font-size: 12px;
  color: #9f9f9f;
  margin: 0;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content p {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #5d6576;
  font-style: italic;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
  border: none;
  position: absolute;
  top: 0;
  left: 55px;
  top: 80px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {
  border: 5px solid #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  width: 35%;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev {
  position: absolute;
  top: 165px;
  right: 42px;
  border-radius: 0;
  background: var(--primary-blue);
  display: block;
  outline: 0;
  width: 34px;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:hover {
  background: var(--accent-orange);
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
  position: absolute;
  top: 165px;
  right: 5px;
  border-radius: 0;
  display: block;
  background: var(--primary-blue);
  outline: 0;
  width: 34px;
  text-align: center;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:hover {
  background: var(--accent-orange);
}

@media all and (max-width: 991px) {
  .testimonial_section .about_content {
    padding-right: 15px !important;
  }
  .testimonial_section .about_content .background_layer {
    width: 200% !important;
  }
  .testimonial_section .testimonial_box {
    margin-top: 0 !important;
  }
  .testimonial_section .testimonial_box .background_layer {
    width: 200% !important;
    margin-left: -200px;
  }
  .testimonial_section .testimonial_box .about_content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 28% !important;
  }
  .testimonial_section .testimonial_box .testimonial_container {
    margin-left: -15px !important;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials {
    margin: 0px 0 20px 0;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials .testimonial_content {
    margin-left: -36px !important;
  }
  .testimonial_section .testimonial_box .testimonial_container .testimonials .images_box {
    display: none;
  }
}

/*====Testimonial-Css-Close===*/

/*====Certification-Css-Start===*/
.certification-box p.fw-semibold {
    background: #ffffff0d;
    color: #ffffff;
    padding: 10px;
    box-shadow: 0 0 1px 0 #ffc0a2;
}

.gallery img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s;
}
/*====Certification-Css-Close===*/

.videos-sec-video.main-banner-sec {
    position: relative;
    min-height: auto;
}

/*====Footer-Css-Start===*/
.footer {
    padding: 50px 0;
    position: relative;
    background-image: url('../img/footer-bg.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.footer-contact_form .footer-frm{
    position: relative;
}
.footer-contact_form .footer-frm:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 90px;
    width: 100px;
    background-image: url(../img/plane-2.png);
    filter: invert(15%) sepia(60%) saturate(50%) hue-rotate(348deg) brightness(98%) contrast(77%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    animation: linear infinite alternate;
    animation-name: run;
    animation-duration: 5000ms;
}   
@-webkit-keyframes run {
    0% {
      left: 20%;
      transform: translateX(20%);
    }
    100% {
      left: 100%;
      transform: translateX(-100%);
    }
}
.footer-contact_form .footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-contact {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.footer-contact:before{
    content: '';
    position: absolute;
    bottom: -80px;
    left: -20px;
    width: 200px;
    height: 100%;
    background-image: url(../img/urology.png);
    opacity: 0.2;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.footer-contact:after{
    content: '';
    position: absolute;
    bottom: -70px;
    right: 0;
    height: 130px;
    width: 170px;
    background-image: url(../img/bladder-cancer.png);
    opacity: 0.2;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;  
}
.footer-contact img{
    width: 222px;
    margin-bottom: 15px;
}
.footer-contact p{
    margin: 0;
}
.footer-contact a{
    text-decoration: none;
    color: var(--black-text-color);
}
.footer-contact a:hover{
    color: var(--active-text-color);
}
.footer-frm{
    background: #fff;
    border-radius: 8px;
    box-shadow: 1px 0 10px #00000030;
}
.footer-contact_form .form-select{
    padding: 1rem .75rem;
}
.form-select:focus,
.form-control:focus{
    box-shadow: unset;
}
.footer-contact_form textarea{
    min-height: 120px;
}
.form-floating>.form-control{
  height: auto !important; 
}

@media (max-width: 576px) {
.footer-contact_form .footer-frm:after{
    height: 70px;
    width: 80px;
}
@-webkit-keyframes run {
    0% {
      left: 40%;
      transform: translateX(40%);
    }
    100% {
      left: 100%;
      transform: translateX(-100%);
    }
}
.footer-contact:before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -10px;
    width: 130px;
    height: 170px;
}
.footer-contact:after {
    content: '';
    position: absolute;
    bottom: -65px;
    right: 0;
    height: 100px;
    width: 130px;
}
}

/*====Footer-Css-Close===*/













@media(min-width: 768px) and (max-width: 1448px){
.main-banner-sec {
    flex-wrap: nowrap;
    min-height: 70vh;
}
.hero-left h1 {
    font-size: 3rem;
}
.hero-left {
    padding: 60px 20px 60px 20px;
}
}

@media(min-width: 1200px){
.course-details-right .check-list li .text-small {
    font-size: 13px;
}
.certification img {
    width: 100%;
 
   /* object-fit: cover;*/
    border-radius: 4px;
    transition: transform 0.3s;
}
}/*==== Media-Min-1200px-Close ====*/

@media(max-width: 992px){
   .videos-sec {
  padding: 15px 0;
}
}

@media(min-width: 768px){
.videos-sec-video {
    /*padding-right: 40px;*/
}
}/*==== Media-Min-768px-Close ====*/

@media (max-width: 768px) {
  .hero-left {
    padding: 60px 40px 60px 60px;
}
.testimonial_section .about_content {
    padding-top: 30px;
    padding-bottom: 30px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
    padding: 20px 0px 20px 30px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content{
    margin-top: 0px;
}



}/*==== Media-768px-Close ====*/

@media (max-width: 576px) {
  .videos-sec {
    padding: 20px 0;
}
.pricing-section,
.image-text-sec {
    padding: 25px 0px;
}
.course-details{
    padding: 20px 0 20px;
}
.videos-sec-text p.sub-text {
    margin-top: 1rem;
}
.testimonial_section .about_content {
   padding-top: 30px;
   padding-bottom: 35px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials{
    padding: 0px 0px 20px 50px;
}
.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content{
    margin-top: 30px;   
}
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev,
.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
    top: 110px;
}
}/*==== Media-576px-Close ====*/

@media (max-width: 480px) {
  .navbar-brand img {
    width: 180px;
  }
  .hero-left {
    padding: 30px 12px 30px 12px;
}
.topic-media {
    padding: 10px;
}
    .fav-topics .cards-row > [class^="col"] {
        padding-left: 5px;
        padding-right: 5px;
    }
.topic-title {
    padding: 16px 5px 22px;
    font-size: 14px;
}
.footer-contact img {
    width: 220px;
}
}/*==== Media-480px-Close ====*/


/*===Thank-You-css-Start===*/
 
.health-section {

      padding: 60px 15px;

      text-align: center;

    }

.badge-custom {

      background: #f0f0f0;

      color: #444;

      font-size: 14px;

      padding: 8px 18px;

      border-radius: 50px;

      display: inline-block;

      margin-bottom: 20px;

    }

.section-desc {

    max-width: 700px;

    margin: 20px auto;

    font-size: 16px;

    color: #555;

}

.btn-primary-custom {

    border: 2px solid #1c75bc !important;

    background: #1c75bc;

    color: #fff;

    border: none;

    border-radius: 25px;

    padding: 10px 25px;

    font-weight: 600;

}
 
/*===Thank-You-css-close===*/
 

 .price{
  font: 600 18px/1.4 system-ui, sans-serif;
}
.price .old{
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #000;
  color: #666;
  margin-right: .75rem;
}

.popular .price .old{
  color: #fff;
}

.card.popular {
    width: 100%;
}

.card.popular ul.features, .card.popular .dates-cls {
    display: grid;
   /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
       
}
.card.popular .dates-cls {    
    margin: 20px 0;
     gap: 20px;
}
.card.popular .dates-cls p {
    margin: 0;
}

@media (max-width: 790px) {
 .card.popular {
    width: 100%;
    min-width: 581px;
}
}
@media (max-width: 580px) {
 .card.popular {
    width: 100%;
    min-width: 100%;
}
}