.single__blog__img img {
    width: 100%;
    height: 207px;
}

.about__button__wrap li button {
    padding: 15px 59px;
    border: 1px solid #612fec;
    background: var(--bodyBg1);
    text-transform: uppercase;
    color: var(--blackColor2);
    font-weight: 700;
    box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.08);
    position: relative;
}

.aboutarea__content__tap__wraper .paragraph__1 {
    margin-bottom: 25px;
    text-align: justify;
    color:black;
}
/* When submenu is open */
.menu-item.has-submenu.open > a,
.menu-item.has-submenu:hover > a {
    background-color: #ffffff !important;  /* White background */
    color: #14325e !important;             /* Navy blue text */
}

/* Icon color when open or hover */
.menu-item.has-submenu.open > a i,
.menu-item.has-submenu:hover > a i {
    color: #14325e !important;
}

/* Submenu arrow color and rotate on open */
.menu-item.has-submenu.open > a .submenu-arrow,
.menu-item.has-submenu:hover > a .submenu-arrow {
    color: #14325e !important;
}

/* Optional: rotate arrow only when open (not on hover) */
.menu-item.has-submenu.open > a .submenu-arrow {
    transform: rotate(90deg);
}

/* Sidebar Base */
    .vertical-sidebar {
      position: fixed;
      top: 80px; left: 50px;
      width: 45px;
      background-color: #14325e;
      border-radius: 40px;
      overflow: visible;
      transition: width 0.3s ease;
      z-index: 9999; /* Higher to stay above */
    overflow: visible;
    }
    .vertical-sidebar:hover {
      width: 240px;
    }

    /* Logo */
    .sidebar-logo { text-align: center; padding: 15px 0; }
    .sidebar-logo img { display: block; margin: 0 auto; }
    .logo-text { display: none; width: 130px; margin: 8px auto 0; }
    .vertical-sidebar:hover .logo-text { display: block; }

    /* Menu */
    .sidebar-menu { list-style: none; margin: 0; padding: 0 0 40px; }
    .menu-item { position: relative; width:100%}
    .menu-item > a {
      display: flex; align-items: center;
       padding: 6px 6px;
      color: #fff; text-decoration: none;
      cursor: pointer;
    }
    .menu-item i { min-width: 30px; text-align: center; font-size: 20px; }
    .menu-text { display: none; margin-left: 10px; }
    .vertical-sidebar:hover .menu-text { display: inline-block; }

    /* Arrow indicator */
    .submenu-arrow {
      margin-left: auto;
      transition: transform 0.3s ease;
      opacity: 0;
    }
    .vertical-sidebar:hover .submenu-arrow { opacity: 1; }
    .menu-item.open > a .submenu-arrow {
      transform: rotate(90deg);
    }

    /* Submenu */
    .submenu {
      display: none;
      position: absolute; top: 0; left: 239px;
      background-color: #14325e;
      min-width: 180px;
      flex-direction: column;
      border-radius: 5px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      z-index: 9999;
      white-space: nowrap;
	 
    }
    .menu-item.open > .submenu { display: flex; }
    .submenu a {
      color: #fff; padding: 5px 5px;
      text-decoration: none; display: block; border-bottom:1px solid #fff;
      font-size:14px;
    }
    .submenu a:hover { background-color: #fff;color:#14325e; }

/* Parent submenu item */
.has-subsubmenu {
  position: relative; /* Ensures the subsubmenu is positioned relative to this item */
}

/* Sub-submenu container */
.subsubmenu {
  display: none;
  position: absolute;
  top: 0; /* Aligns with top of parent */
  left: 100%; /* Pushes to the right of parent */
  background-color: #14325e;
  min-width: 200px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 9999;
  flex-direction: column;
}

/* Show subsubmenu on hover */
.has-subsubmenu:hover > .subsubmenu {
  display: flex;
}

/* Subsubmenu items */
.subsubmenu li {
  display: block;
}

.subsubmenu li a {
  display: block;
  color: #fff;
  padding: 8px 10px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
}

.subsubmenu li a:hover {
  background-color: #fff;
  color: #14325e;
}
    /* Demo content */
    .page-content {

    }
    .page-content h1 { margin-top: 0; }

     .offcanvas-end {
      width: 300px;
    }
    .notice-icon {
      position: fixed;
      top: 30%;
      right: 0px;
      z-index: 1051;
      cursor: pointer;
    }

     @media (min-width: 769px) {
      .sidebar-toggle-btn
       {
        display: none;
      }
    }

@media (max-width: 768px) {
  .subsubmenu {
    position: static;      /* no absolute positioning */
    left: 0;
    top: 0;
    background-color: #0f2540;
    box-shadow: none;
    border-radius: 0;
    display: none;         /* hidden until opened */
  }

  .has-subsubmenu.open > .subsubmenu {
    display: block;        /* show when .open class added */
  }

  .submenu-item.has-subsubmenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

    /* Mobile-specific sidebar toggle behavior */
@media (max-width: 768px) {
  .vertical-sidebar {
    left: -250px;
    top: 0;
    width: 240px;
    height: 100vh;
    transition: left 0.3s ease;
    border-radius: 0;
  }

  .vertical-sidebar.active {
    left: 0;
  }
.subsubmenu li a {
    display: block;
    color: #fff;
    padding: 8px 10px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
}
  .sidebar-toggle-btn {
    position: fixed;
    top: 10px;
    right: 15px;
    z-index: 1100;
    background-color: #14325e;
    color: #fff;
    padding: 10px 12px;
    border: none;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
  }

  .submenu {
    position: relative;
    left: 0;
    box-shadow: none;
  }

  .submenu a {
    border-bottom: none;
  }
}

  @media (max-width: 768px) {
  .aboutarea__2__img__1 {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
}

@media (max-width: 768px) {
  .vertical-sidebar {
    width: 240px !important;  /* Sidebar ka width mobile me full kar do */
  }

  /* Jab sidebar active ho toh menu-text dikhe */
  .vertical-sidebar.active .menu-text {
    display: inline-block !important;
  }

  /* Mobile me submenu ko relative position me karo (jisse screen ke bahar na jaye) */
  .vertical-sidebar .submenu {
    position: relative !important;
    left: 0 !important;
    box-shadow: none !important;
    min-width: 100% !important;
  }
}
.gridarea__wraper {
    background: var(--whiteColor);
    padding: 15px;
    box-shadow: 0 0 20px 10px rgba(95, 45, 237, 0.05);
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
	    place-items: center;
}

.gridarea__wraper .gridarea__img img {
    width: 100%;
    border-radius: var(--borderRadius);
    height: 225px;
	width:100%;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #14325e;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.single__blog__wraper {
    box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.1);
    background: white;
}

.early__programs{

  background: #14325e;
}

.single__event__wraper .eventarea__content__wraper .single__event__heading h4 {
    font-size: 16px;
    font-weight: 600;
    margin-right: 40px;
    color: red;
}

.single__event__wraper {
    padding: 0px 20px;
	}
  .single__event__wraper .eventarea__content__wraper .single__event__heading a {
  color: #14325e;
  font-family: 'poppins', sans-serif;

  }

  .service__img img {
    max-width: 100%;
    margin-bottom: 10px;
       width: 100%;
}.blogsidebar__content__wraper__2 .photo__gallery__img .single__gallery__img img {
    width: 100%;
    height: 216px;
}


.footerarea__wrapper .footerarea__inner .footerarea__content p {
    color: #ffffff;
}
.footerarea__right__wraper .footerarea__right__list ul li a .footerarea__right__img {
    margin-right: 11px;
    max-width: 95px;
    background: #ffffff;
    padding: 10px;
    color: #0c0e2b;
    font-size: 11px;
    border-radius:10px;
}

.footerarea__right__wraper .footerarea__right__list ul li a .footerarea__right__content h6 {
  
    color: #ffffff;
   
}

.footerarea__right__wraper .footerarea__right__list ul li a .footerarea__right__content span {
   
    color: #ffffff;
}

.footerarea__wrapper .footerarea__inner .footerarea__list ul li a {
    color: #ffffff;
    
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* push it behind */
    background-color: #14325e;
    pointer-events: none; /* lets mouse events pass through */
}
#particles-js1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* push it behind */
    background-color: #14325e;
    pointer-events: none; /* lets mouse events pass through */
}

.dashboard__nav ul li.active {
    background-color: #14325e; /* or any dark shade */
    border-left: 4px solid var(--primaryColor); /* optional visual cue */
    padding-left:5px;
}

.dashboard__nav ul li.active a {
    color: #fff;
}

.dashboard__nav ul li:hover {
    background-color: #0e2a4d;
     padding-left:5px;
}

.dashboard__nav ul li:hover a {
    color: #fff;
     padding-left:5px;
}
.accordion-button {
    
    font-family: "Poppins", sans-serif;
}

.teacher__img img {
    height: 230px;
    width: 230px;
    border-radius: 50%;
    border: 3px solid #14325e;
   margin-top:50px;
    margin-left: 130px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
/* Ensure slider wrapper is relative */
.about__course__slider__active {
  position: relative;
}
.single__expart__teacher .teacher__img {
    margin-bottom: 0px!important;
   
}
.single__expart__teacher .teacher__name {
    margin-bottom: 10px;
    padding: 0px 5px 26px 0px;
margin-bottom: 50px;
}
/* Common arrow styles */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background-color: white;
  color: #14325e;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Left and right positions */
.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.slick-prev:hover,
.slick-next:hover {
  background-color: white;
}
/* Arrow Buttons */
.slick-prev,
.slick-next {
  background-color: #14325e;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slick-prev:hover,
.slick-next:hover {
  background-color: #14325e;
}

/* Adjust position */
.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

/* Slick Dots */
.slick-dots {
  bottom: -30px;
  text-align: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background-color: rgb(116, 44, 44);
  border-radius: 50%;
  border: none;
  transition: background-color 0.3s ease;
}

.slick-dots .slick-active button {
  background-color: red;
}

.early__programs {
    background-color: #f9f9f9;
    padding: 20px 15px; /* default mobile-first */
}

@media (min-width: 768px) {
    .early__programs {
        padding: 30px 116px; /* desktop/tablets */
        
    }


}

.video-gallery {
    background-color: #f9f9f9;
    padding: 20px 15px; /* default mobile-first */
}

@media (min-width: 768px) {
    .video-gallery {
        padding: 30px 116px; /* desktop/tablets */
        
    }


}

.birthday-wrapper {
    background-color: #f9f9f9;
    padding: 20px 15px; /* default mobile-first */
}

@media (min-width: 768px) {
    .birthday-wrapper {
        padding: 30px 116px; /* desktop/tablets */
        
    }
  }

.date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(20, 50, 94, 0.85); /* dark navy with opacity */
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 5px;
    z-index: 2;
    font-weight: 500;
}

.gridarea__wraper {
    min-height: 415px!important;
}

      .hover-scale {
            transition: transform 0.3s ease-in-out;
        }
        .hover-scale:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }
        .single__expart__teacher {
            min-height: 360px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
         #toppers-section .confetti,
        #toppers-section1 .confetti {
            /* include both sections */
            position: absolute;
            width: 3px;
            /* reduced from 5px */
            height: 5px;
            /* keep height as is */
            animation-name: fallConfetti;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            z-index: 3;
            border-radius: 1px;
        }
        @keyframes fallConfetti {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(110vh) rotate(360deg);
            }
        }
         
        @keyframes fallFlower {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(110vh) rotate(360deg);
            }
        }
        #toppers-section1 .star,
        #toppers-sections .star {
            position: absolute;
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
            animation: twinkle 2s infinite;
            opacity: 0.6;
            z-index: 1;
        }
        @keyframes twinkle {
            0% {
                opacity: 0.2;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1.2);
            }
        }
           .gridarea__wraper .gridarea__img {
            margin-bottom: 7px !important;
            justify-self: center;
        }
     @media (max-width: 768px) {
            .sticky-button-wrapper {
                top: 10px;
                right: 272px;
            }
            .teacher__img img {
                margin-left: 0px !important;
            }
            .teacher__img img {
                        height: 200px !important;
        width: 82% !important;
        margin-top: 0px !important;
        margin-left: 20px !important;
            }
            .herobannerarea__title .herobannerarea__small__title {
                margin-bottom: 5px;
                margin-top: 15px;
            }
        }
        .modal-header .btn-close {
            background-color: #fff !important;
            /* White button */
            border: 1px solid #000;
            /* Optional: black border */
            filter: none !important;
            /* Removes Bootstrap default filter */
            opacity: 1 !important;
            /* Fully visible */
        }
        .modal-header .btn-close::before {
            /* Manually insert '×' */
            color: #000;
            /* Black X */
            font-size: 1.2rem;
            position: absolute;
            top: 6px;
            left: 10px;
        }
        .btn-close {
            position: relative;
            width: 1.5rem;
            height: 1.5rem;
        }
       
        #birthdayEffectCanvas {
            width: 100%;
            height: 100vh;
        } .confetti-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 9;
        }
        /* Base animation */
        @keyframes fall {
            0% {
                transform: translateY(-10vh) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }
        /* Confetti dots */
        .confetti-dot {
            position: absolute;
            border-radius: 50%;
            opacity: 0.9;
            animation: fall linear infinite;
        }
        /* Ribbons */
        .ribbon {
            position: absolute;
            width: 6px;
            height: 20px;
            background: linear-gradient(45deg, #e91e63, #ffeb3b);
            animation: fall linear infinite;
            border-radius: 3px;
            transform: rotate(45deg);
        }
        /* Balloons */
        .balloon {
            position: absolute;
            width: 14px;
            height: 20px;
            background-color: #ff4081;
            border-radius: 60% 60% 60% 60%;
            animation: fall linear infinite;
            box-shadow: inset -2px -4px 0 rgba(0, 0, 0, 0.1);
        }
        .balloon::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 6px;
            background: #444;
        }
        /* Gift Boxes */
        .gift {
            position: absolute;
            width: 20px;
            height: 20px;
            background: red;
            border: 2px solid white;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
            animation: fall linear infinite;
            border-radius: 4px;
        }
        .gift::before,
        .gift::after {
            content: '';
            position: absolute;
            background: yellow;
        }
        .gift::before {
            width: 100%;
            height: 4px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }
        .gift::after {
            height: 100%;
            width: 4px;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

         .birthday-heading h2 {
            font-size: 2.2rem;
            font-weight: bold;
            color: #14325e;
            text-align: center;
            position: relative;
            padding: 10px 20px;
            display: inline-block;
            border-bottom: 4px dashed #14325e;
            background: linear-gradient(90deg, #fff3cd, #fde2e2);
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(255, 174, 0, 0.2);
        }
        /* Optional soft bounce animation */
        .birthday-heading h2 {
            animation: bounce-in 0.6s ease;
        }
        @keyframes bounce-in {
            0% {
                transform: scale(0.9);
                opacity: 0;
            }
            60% {
                transform: scale(1.05);
                opacity: 1;
            }
            100% {
                transform: scale(1);
            }
        }

         .video-section {
            padding: 80px 0;
            background: #14325e url(https://pallikoodam.wpengine.com/wp-content/uploads/2019/09/footer-pattern.png) no-repeat center;
            background-size: cover;
            color: #fff;
        }
        .video-title-section {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        .video-title-section h2 {
            font-size: 44px;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        .video-title-section h2::after {
            content: "";
            width: 80px;
            height: 4px;
            background: #ffcc00;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .video-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        .video-card {
            position: relative;
            width: 100%;
            background: rgb(255 255 255);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            overflow: hidden;
            transition: transform 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        .video-card:hover {
            transform: translateY(-10px) scale(1.02);
        }
        .video-card img {
            width: 100%;
            height: 200px;
            object-fit: fill;
            transition: transform 0.4s;
        }
        .video-card:hover img {
            transform: scale(1.1);
        }
        .video-overlay {
            bottom: 0;
            background: #fff;
            color: #14325e;
            padding: 10px;
            width: 100%;
            transition: 0.3s;
            backdrop-filter: blur(2px);
            place-items: center;
            text-align: -webkit-center;
        }
        .video-overlay h5 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #14325e;
        }
          .kids-text {
                font-family: 'Nunito', sans-serif;
                text-align: center;
                line-height: 1.2;
            }
            .kids-text .creative {
                font-weight: 700;
                font-size: 24px;
                color: #14325e;
                text-transform: uppercase;
            }
            .kids-text .kids {
                font-weight: 800;
                font-size: 36px;
                color: #ff3b3b;
                /* red tone */
                letter-spacing: 1px;
            }
            .link-circle-wrapper {
                display: flex;
                justify-content: center;
                gap: 2.5rem;
                flex-wrap: wrap;
                margin: 60px 0;
            }
            .circle-link {
                position: relative;
                width: 230px;
                height: 230px;
                border-radius: 50%;
                overflow: hidden;
                display: flex;
                justify-content: center;
                align-items: center;
                background: white;
                animation: pulse 2s infinite ease-in-out;
                box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
                transition: transform 0.4s;
            }
            .circle-link::before {
                content: "";
                position: absolute;
                width: 100%;
                height: 100%;
                border-radius: 50%;
                background: conic-gradient(#ffffff 0deg 90deg,
                        #14325e 90deg 180deg,
                        #ffffff 180deg 270deg,
                        #0191ce 270deg 360deg);
                animation: swirl 5s linear infinite;
                z-index: 0;
                opacity: 1;
            }
            .circle-link-inner {
                position: relative;
                background: white;
                border-radius: 50%;
                width: 220px;
                height: 220px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                font-weight: bold;
                color: #333;
                font-size: 17px;
                z-index: 1;
                transition: transform 0.3s;
            }
            .circle-link:hover {
                transform: scale(1.08);
            }
            .circle-link:hover .circle-link-inner {
                transform: scale(1.05);
            }
            @keyframes swirl {
                0% {
                    transform: rotate(0deg);
                }
                100% {
                    transform: rotate(360deg);
                }
            }
            @keyframes pulse {
                0%,
                100% {
                    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3);
                }
                50% {
                    box-shadow: 0 0 0 18px rgba(255, 0, 0, 0);
                }
            }
            .button-link {
                display: inline-block;
                padding: 10px 24px;
                border: 2px solid #14325e;
                /* Pink border */
                border-radius: 50px;
                background-color: white;
                color: #14325e;
                font-weight: 700;
                font-size: 16px;
                text-decoration: none;
                text-transform: uppercase;
                transition: all 0.3s ease;
                position: relative;
                box-shadow: 0 4px 0 #14325e, 0 6px 20px rgba(0, 0, 0, 0.1);
            }
            .button-link:hover {
                background-color: #ff4081;
                color: white;
                transform: translateY(-3px);
                box-shadow: 0 6px 0 #14325e, 0 8px 25px rgba(0, 0, 0, 0.15);
            }
            .toppers-heading {
                                text-align: center;
                                font-size: 30px;
                                font-weight: 700;
                                padding: 10px 20px;
                                display: inline-block;
                                color: #fff;
                                border: 4px double transparent;
                                border-radius: 15px;
                                background-image: linear-gradient(#14325e, #14325e),
                                    radial-gradient(circle at top left, #14325e, #14325e);
                                background-origin: border-box;
                                background-clip: content-box, border-box;
                                box-shadow: 0 0 15px rgba(0, 153, 255, 0.5);
                                font-family: 'Caveat', cursive;
                                animation: pulseGlow 2s ease-in-out infinite;
                                margin: 70px auto 20px;
                                width: 100%;
                                max-width: 500px;
                            }
                            /* Animation */
                            @keyframes pulseGlow {
                                0% {
                                    box-shadow: 0 0 10px rgba(0, 153, 255, 0.6);
                                }
                                50% {
                                    box-shadow: 0 0 25px rgba(0, 153, 255, 1);
                                }
                                100% {
                                    box-shadow: 0 0 10px rgba(0, 153, 255, 0.6);
                                }
                            }
                            /* ✅ Responsive font size */
                            @media (max-width: 768px) {
                                .toppers-heading {
                                    font-size: 1.8rem;
                                    padding: 8px 15px;
                                }
                            }
                            @media (max-width: 480px) {
                                .toppers-heading {
                                    font-size: 1.5rem;
                                    padding: 6px 10px;
                                }
                            }
                            .abouttabarea {
            background-color: #f9f9f9;
            padding: 20px 15px;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        }
        @media (min-width: 768px) {
            .abouttabarea {
                padding: 0px 116px;
            }
            .teacher__img svg{
              display:none;
            }
            .single__expart__teacher__slider{
              padding: 0px!important;
            }
            .single__expart__teacher .teacher__name h4 {
    font-weight: 600;
    font-size: 20px!important;
    line-height: 35px;
    margin: 0;
}
.single__expart__teacher .teacher__name span {
    font-weight: 500;
    font-size: 15px!important;
    line-height: 20px;
    color: var(--primaryColor);
}
}
        #myTabContent {
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            padding: 50px;
            margin-bottom: 50px;
        }
        .single__expart__teacher__slider{
        
        
        }

.mode_switcher.my_switcher {
        display: none;
}

.offcanvas.offcanvas-end {
        z-index: 111111;
}
  .vertical-sidebar {  z-index: 111111;
}