 :root {
     scroll-behavior: smooth;
 }

 a {
     color: var(--color-links);
     text-decoration: none;
 }

 a:hover {
     color: var(--color-links-hover);
     text-decoration: none;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: var(--font-primary);
 }

 /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/

 #preloader {
     position: fixed;
     inset: 0;
     z-index: 9999;
     overflow: hidden;
     background: var(--color-white);
     transition: all 0.6s ease-out;
     width: 100%;
     height: 100vh;
 }

 #preloader:before,
 #preloader:after {
     content: "";
     position: absolute;
     border: 4px solid var(--color-primary);
     border-radius: 50%;
     -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
     animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
 }

 #preloader:after {
     -webkit-animation-delay: -0.5s;
     animation-delay: -0.5s;
 }

 @-webkit-keyframes animate-preloader {
     0% {
         width: 10px;
         height: 10px;
         top: calc(50% - 5px);
         left: calc(50% - 5px);
         opacity: 1;
     }
     100% {
         width: 72px;
         height: 72px;
         top: calc(50% - 36px);
         left: calc(50% - 36px);
         opacity: 0;
     }
 }

 @keyframes animate-preloader {
     0% {
         width: 10px;
         height: 10px;
         top: calc(50% - 5px);
         left: calc(50% - 5px);
         opacity: 1;
     }
     100% {
         width: 72px;
         height: 72px;
         top: calc(50% - 36px);
         left: calc(50% - 36px);
         opacity: 0;
     }
 }

 /*--------------------------------------------------------------
  # Sections & Section Header
  --------------------------------------------------------------*/

 section {
     padding: 45px 0;
     overflow: hidden;
 }

 .section-header {
     text-align: center;
     padding-bottom: 40px;
 }

 .section-header h2 {
     font-size: 36px;
     font-weight: 600;
     margin-bottom: 20px;
     color: var(--color-secondary);
 }

 .section-header p {
     margin: 0 auto;
     color: var(--color-black);
 }

 @media (min-width: 1280px) {
     .section-header p {
         max-width: 80%;
     }
 }

 /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/

 .breadcrumbs {
     padding: 15px 0;
     background: rgba(var(--color-secondary-rgb), 0.05);
     min-height: 40px;
     margin-top: 0px;
 }

 .breadcrumbs h2 {
     font-size: 30px;
     font-weight: 300;
     margin: 0;
 }

 .breadcrumbs ol {
     display: flex;
     flex-wrap: wrap;
     list-style: none;
     padding: 0;
     margin: 0;
     font-size: 14px;
 }

 .breadcrumbs ol li+li {
     padding-left: 10px;
 }

 .breadcrumbs ol li+li::before {
     display: inline-block;
     padding-right: 10px;
     color: var(--color-secondary-light);
     content: "/";
 }

 @media (max-width: 992px) {
     .breadcrumbs .d-flex {
         display: block !important;
     }
     .breadcrumbs h2 {
         margin-bottom: 10px;
         font-size: 24px;
     }
     .breadcrumbs ol {
         display: block;
     }
     .breadcrumbs ol li {
         display: inline-block;
     }
     .brand-grid-wrap {
         grid-template-columns: repeat(3, 1fr) !important;
     }
     .story-one__counters {
         padding: 30px 20px 25px !important;
     }
     .featured-services .service-item {
         padding: 10px !important;
     }
 }

 /*--------------------------------------------------------------
  # Scroll top button
  --------------------------------------------------------------*/

 .scroll-top {
     position: fixed;
     visibility: hidden;
     opacity: 0;
     right: 15px;
     bottom: 15px;
     z-index: 995;
     background: var(--color-primary);
     width: 40px;
     height: 40px;
     border-radius: 4px;
     transition: all 0.4s;
 }

 .scroll-top i {
     font-size: 24px;
     color: var(--color-white);
     line-height: 0;
 }

 .scroll-top:hover {
     background: rgba(var(--color-primary-rgb), 0.85);
     color: var(--color-white);
 }

 .scroll-top.active {
     visibility: visible;
     opacity: 1;
 }

 /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/

 @media screen and (max-width: 768px) {
     [data-aos-delay] {
         transition-delay: 0 !important;
     }
 }

 /*--------------------------------------------------------------
  # Index Page
  --------------------------------------------------------------*/

 /*-------banner -------*/

 .main-banner {
     padding: 0px 0;
     position: relative;
     background-color: rgb(255, 247, 245);
     margin-top: 0px;
 }

 /*--------------------------------------------------------------
  # Carousel Hero Section
  --------------------------------------------------------------*/

 .hero {
     width: 100%;
     padding: 0;
     position: relative;
     display: flex;
     justify-content: center;
 }

 .hero .carousel-item {
     overflow: hidden;
 }

 @media (max-width: 640px) {
     .hero .container {
         padding: 0 60px;
     }
 }

 .hero h2 {
     color: var(--color-secondary);
     margin-bottom: 25px;
     font-size: 48px;
     font-weight: 300;
     -webkit-animation: fadeInUp 1s both 0.2s;
     animation: fadeInUp 1s both 0.2s;
 }

 @media (max-width: 768px) {
     .hero h2 {
         font-size: 28px !important;
     }
 }

 /* 
  .hero p {
    color: var(--color-secondary-light);
    -webkit-animation: fadeInDown 1s both 0.4s;
    animation: fadeInDown 1s both 0.4s;
    font-weight: 500;
    margin-bottom: 30px;
  } */

 .hero .img {
     margin-bottom: 40px;
     -webkit-animation: fadeInDownLite 1s both;
     animation: fadeInDownLite 1s both;
 }

 .hero .btn-get-started {
     font-family: var(--font-secondary);
     font-weight: 400;
     font-size: 16px;
     letter-spacing: 1px;
     display: inline-block;
     padding: 8px 32px;
     border-radius: 5px;
     transition: 0.5s;
     -webkit-animation: fadeInUp 1s both 0.6s;
     animation: fadeInUp 1s both 0.6s;
     color: var(--color-primary);
     border: 2px solid var(--color-primary);
 }

 .hero .btn-get-started:hover {
     background: var(--color-primary);
     color: var(--color-white);
 }

 .hero .carousel-control-prev {
     justify-content: start;
 }

 @media (min-width: 640px) {
     .hero .carousel-control-prev {
         padding-left: 15px;
     }
 }

 .hero .carousel-control-next {
     justify-content: end;
 }

 @media (min-width: 640px) {
     .hero .carousel-control-next {
         padding-right: 15px;
     }
 }

 .hero .carousel-control-next-icon,
 .hero .carousel-control-prev-icon {
     background: none;
     font-size: 26px;
     line-height: 0;
     background: rgba(var(--color-secondary-rgb), 0.4);
     color: rgba(var(--color-white-rgb), 0.98);
     border-radius: 50px;
     width: 54px;
     height: 54px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .hero .carousel-control-next-icon {
     padding-left: 3px;
 }

 .hero .carousel-control-prev-icon {
     padding-right: 3px;
 }

 .hero .carousel-control-prev,
 .hero .carousel-control-next {
     transition: 0.3s;
 }

 .hero .carousel-control-prev:focus,
 .hero .carousel-control-next:focus {
     opacity: 0.5;
 }

 .hero .carousel-control-prev:hover,
 .hero .carousel-control-next:hover {
     opacity: 0.9;
 }

 .hero .carousel-indicators li {
     cursor: pointer;
     background: rgba(var(--color-secondary-rgb), 0.5);
     overflow: hidden;
     border: 0;
     width: 12px;
     height: 12px;
     border-radius: 50px;
     opacity: 0.6;
     transition: 0.3s;
 }

 .hero .carousel-indicators li.active {
     opacity: 1;
     background: var(--color-primary);
 }

 .hero .slide-heading {
     background-color: rgb(255, 247, 245);
     /* position: absolute; */
     bottom: 25px;
     width: 100%;
     text-align: center;
 }

 .hero .slide-heading h2 {
     font-size: 32px;
     font-weight: 600;
     color: var(--color-primary);
     margin-bottom: 0px;
     min-height: 70px;
 }

 @-webkit-keyframes fadeIn {
     from {
         opacity: 0;
     }
     to {
         opacity: 1;
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }
     to {
         opacity: 1;
     }
 }

 @-webkit-keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translate3d(0, 100%, 0);
     }
     to {
         opacity: 1;
         transform: translate3d(0, 0, 0);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translate3d(0, 100%, 0);
     }
     to {
         opacity: 1;
         transform: translate3d(0, 0, 0);
     }
 }

 @-webkit-keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translate3d(0, -100%, 0);
     }
     to {
         opacity: 1;
         transform: translate3d(0, 0, 0);
     }
 }

 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translate3d(0, -100%, 0);
     }
     to {
         opacity: 1;
         transform: translate3d(0, 0, 0);
     }
 }

 @-webkit-keyframes fadeInDownLite {
     from {
         opacity: 0;
         transform: translate3d(0, -10%, 0);
     }
     to {
         opacity: 1;
         transform: translate3d(0, 0, 0);
     }
 }

 @keyframes fadeInDownLite {
     from {
         opacity: 0;
         transform: translate3d(0, -10%, 0);
     }
     to {
         opacity: 1;
         transform: translate3d(0, 0, 0);
     }
 }

 /*--------------------------------------------------------------
  # Featured Services Section
  --------------------------------------------------------------*/

 .featured-services .service-item {
     padding: 30px;
     transition: all ease-in-out 0.4s;
     background: var(--color-white);
     height: 100%;
 }

 .featured-services .service-item .icon {
     margin-bottom: 10px;
 }

 .featured-services .service-item .icon img {
     max-height: 48px;
 }

 .featured-services .service-item .icon i {
     color: var(--color-primary);
     font-size: 36px;
     transition: 0.3s;
 }

 .featured-services .service-item h4 {
     font-weight: 600;
     margin-bottom: 15px;
     font-size: 24px;
     color: var(--color-secondary);
     transition: ease-in-out 0.3s;
 }

 .featured-services .service-item h4 a {
     color: var(--color-secondary);
     transition: ease-in-out 0.3s;
 }

 .featured-services .service-item p {
     line-height: 24px;
     font-size: 14px;
     margin-bottom: 0;
 }

 .featured-services .service-item:hover {
     transform: translateY(-10px);
     box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
 }

 .featured-services .service-item:hover h4 {
     color: var(--color-primary);
 }

 .featured-services .service-item:hover h4 a {
     color: var(--color-primary);
 }

 /*--------------------------------------------------------------
  # Features Section
  --------------------------------------------------------------*/

 .features .nav-tabs {
     border: 0;
 }

 .features .nav-link {
     border: 0;
     padding: 25px 20px;
     color: var(--color-secondary);
     box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
     border-radius: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     transition: 0s;
     cursor: pointer;
     height: 100%;
 }

 .features .nav-link i {
     font-size: 32px;
     line-height: 0;
 }

 .features .nav-link h4 {
     font-size: 20px;
     font-weight: 600;
     margin: 10px 0 0 0;
     color: var(--color-secondary);
 }

 .features .nav-link:hover {
     color: var(--color-primary);
 }

 .features .nav-link.active {
     transition: 0.3s;
     background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));
     border-color: var(--color-primary);
 }

 .features .nav-link.active h4 {
     color: var(--color-white);
 }

 .features .nav-link.active i {
     color: var(--color-white) !important;
 }

 .features .tab-content {
     margin-top: 30px;
 }

 .features .tab-pane.active {
     -webkit-animation: fadeIn 0.5s ease-out;
     animation: fadeIn 0.5s ease-out;
 }

 .features .tab-pane h3 {
     font-weight: 600;
     font-size: 36px;
     color: var(--color-secondary);
 }

 .features .tab-pane ul {
     list-style: none;
     padding: 0;
 }

 .features .tab-pane ul li {
     padding-bottom: 10px;
 }

 .features .tab-pane ul i {
     font-size: 24px;
     margin-right: 4px;
     color: var(--color-primary);
 }

 .features .tab-pane p:last-child {
     margin-bottom: 0;
 }

 @keyframes fadeIn {
     0% {
         opacity: 0;
     }
     100% {
         opacity: 1;
     }
 }

 .testimonial-one__top {
     position: relative;
     display: block;
 }

 .testimonial-one__bottom {
     position: relative;
     display: block;
     padding-top: 40px;
 }

 .testimonial-one__single {
     position: relative;
     display: block;
     background-color: var(--color-white);
     border: 1px solid #ece9e0;
     border-radius: 6px;
     padding: 57px 50px 75px;
     -webkit-transition: all 500ms ease;
     transition: all 500ms ease;
     z-index: 1;
 }

 .testimonial-one__single:hover {
     border: 2px solid rgba(var(--color-primary-rgb), 0);
     box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
 }

 .testimonial-one__single::before {
     content: "";
     position: absolute;
     top: -1px;
     left: -1px;
     right: -1px;
     bottom: -1px;
     border: 2px solid transparent;
     border-radius: 6px;
     -webkit-transition: all 500ms ease;
     transition: all 500ms ease;
 }

 .testimonial-one__single:hover:before {
     border: 2px solid var(--color-primary);
 }

 .testimonial-one__content {
     position: relative;
     display: block;
 }

 .testimonial-one__text {
     font-size: 14px;
     line-height: 25px;
     margin-bottom: 25px;
 }

 .testimonial-one__client-info {
     position: absolute;
     top: -108px;
     left: -14px;
 }

 .testimonial-one__client-img {
     position: relative;
     display: inline-block;
     width: 96px;
 }

 .testimonial-one__client-img img {
     width: 100%;
     border-radius: 50%;
     border: 10px solid var(--color-white);
 }

 .testimonial-one__quote {
     position: absolute;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 41px;
     height: 41px;
     background-color: var(--color-primary);
     border-radius: 50%;
     border: 5px solid var(--color-white);
     bottom: 27px;
     right: -7px;
 }

 .testimonial-one__quote span {
     position: relative;
     display: inline-block;
     font-size: 16px;
     color: var(--color-white);
 }

 .testimonial-one__client-details-box {
     position: absolute;
     bottom: -25px;
     left: -1px;
 }

 .testimonial-one__client-details-box:before {
     content: "";
     position: absolute;
     bottom: 0;
     right: 0;
     border-bottom: 24px solid transparent;
     border-right: 24px solid var(--color-primary-dark);
     border-left: 24px solid transparent;
 }

 .testimonial-one__client-details {
     background-color: var(--color-primary);
     padding-left: 50px;
     padding-right: 100px;
     padding-top: 15px;
     padding-bottom: 18px;
     border-bottom-left-radius: 10px;
     clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
 }

 .testimonial-one__client-name {
     font-size: 18px;
     color: var(--color-white);
     font-weight: 700;
     font-family: var(---font);
     line-height: 22px;
     margin-bottom: 0px;
 }

 .testimonial-one__client-citry {
     font-size: 14px;
     color: var(--color-white);
     font-weight: 500;
     font-family: var(---font);
     line-height: 22px;
 }

 .testimonial-one__client-sub-title {
     font-size: 12px;
     color: #9dbe91;
     line-height: 12px;
 }

 .testimonial-one__carousel.owl-carousel .owl-stage-outer {
     overflow: visible;
 }

 .testimonial-one__carousel.owl-carousel .owl-item {
     opacity: 0;
     visibility: hidden;
 }

 .testimonial-one__carousel.owl-carousel .owl-item.active {
     opacity: 1;
     visibility: visible;
 }

 .testimonials .second-atitle h5 {
     color: var(--color-secondary);
 }

 .testimonials .second-atitle h2 {
     color: var(--color-secondary);
     font-weight: 600;
     padding-left: 20px;
     letter-spacing: 0.1em;
     text-transform: uppercase;
 }

 .testimonials .second-atitle:before,
 .edu-brand-area .second-atitle:before {
     content: "";
     position: absolute;
     top: 10px;
     left: 0;
     height: 20px;
     width: 2px;
     background-color: var(--color-secondary);
     transform: rotate(15deg);
 }

 .testimonials .second-atitle:after,
 .edu-brand-area .second-atitle::after {
     content: "";
     position: absolute;
     top: 10px;
     left: 6px;
     height: 20px;
     width: 2px;
     background-color: var(--color-primary);
     transform: rotate(15deg);
 }

 /***
  =============================================
      Story One
  =============================================
  ***/

 .story-one {
     position: relative;
     display: block;
     padding: 0px 0px 60px;
     z-index: 1;
 }

 .story-one__shape {
     width: 110px;
     height: 131px;
     background-color: #fff;
     border-radius: 10px;
     position: absolute;
     top: -24px;
     right: 82px;
     border-radius: 10px;
     z-index: 20;
 }

 .story-one__shape::before {
     content: '';
     width: 40px;
     height: 40px;
     background-color: var(--color-primary);
     position: absolute;
     top: 24px;
     border-radius: 10px;
     right: 20px;
 }

 .story-one__shape::after {
     content: '';
     width: 18px;
     height: 18px;
     border-radius: 10px;
     background-color: var(--color-secondary);
     position: absolute;
     left: 100%;
     bottom: 35px;
     z-index: 22;
     border-radius: 4px;
 }

 .story-one .auto-container {
     max-width: 1720px;
     width: 100%;
 }

 .story-one .row {
     margin-left: -0px;
     margin-right: -0px;
 }

 .story-one .row [class*=col-] {
     padding-left: 0px;
     padding-right: 0px;
 }

 .story-one__img {
     position: relative;
     display: block;
     background-position: center center;
     background-attachment: scroll;
     background-size: cover;
     background-repeat: no-repeat;
     min-height: 520px;
     z-index: 1;
     background-image: url("../img/story-v1-img.jpg");
 }

 .story-one__img h3 {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translateY(-50%) translateX(-50%);
     color: #fff;
     font-family: var(--agriox-font-3, "Shadows Into Light", cursive);
     text-align: center;
     font-size: 30px;
     margin: 0;
     font-weight: 300;
 }

 @media (min-width: 992px) {
     .story-one__img h3 {
         font-size: 60px;
     }
 }

 .story-one__img::before {
     position: absolute;
     top: 120px;
     bottom: 120px;
     right: 0;
     width: 30px;
     background: var(--color-secondary);
     border-top-left-radius: 10px;
     border-bottom-left-radius: 10px;
     content: "";
     z-index: -1;
 }

 .story-one__counters {
     position: relative;
     display: block;
     background: #f6f4ec;
     padding: 90px 80px 38px;
     overflow: hidden;
     z-index: 1;
     height: 100%;
 }

 .story-one__counters .sec-title {
     margin-top: 0;
     margin-bottom: 43px;
 }

 .story-one__counters-box {
     position: relative;
     display: block;
     margin-top: 15px;
 }

 .story-one__counters-box ul li {
     font-size: 18px;
     line-height: 26px;
     margin: 20px 0px;
     background-image: url("../img/icons/tick-32.png");
     background-repeat: no-repeat;
     padding-left: 40px;
     list-style-type: none;
     font-weight: 500;
 }

 .story-one__counters-box ul {
     position: relative;
     display: block;
     padding: 0px;
 }

 .odometer.odometer-auto-theme,
 .odometer.odometer-theme-default {
     font-family: var(--agriox-font-3, "Shadows Into Light", cursive);
     line-height: 1em;
 }

 /*-------animated slides -----*/

 .animated-content {
     position: relative;
     display: block;
     background: #ffffff;
     padding: 35px 50px 38px;
     overflow: hidden;
     z-index: 1;
     height: 100%;
 }

 .animated-one .sec-title {
     margin-top: 0;
     margin-bottom: 43px;
 }

 /*-------------------
    Brand Styles
  ---------------------*/

 .brand-section-heading .second-atitle {
     color: var(--color-secondary);
     font-weight: 600;
 }

 .brand-section-heading .section-title h2 {
     color: var(--color-secondary);
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
 }

 @media only screen and (max-width: 575px) {
     .brand-section-heading {
         padding-right: 0px !important;
     }
     .featured .box h4 {
         font-size: 18px !important;
     }
     .testimonials .testimonials-carousel,
     .testimonials .testimonials-slider {
         padding: 50px 0px 10px !important;
     }
 }

 .brand-grid-wrap {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     position: relative;
 }

 .brand-grid-wrap:after {
     content: "";
     height: 1px;
     width: 100%;
     background-color: #f0f0f0;
     position: absolute;
     top: 50%;
     left: 0;
     right: 0;
     -webkit-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
     transform: translateY(-50%);
 }

 .brand-grid-wrap .brand-grid {
     padding: 18px 5px;
     text-align: center;
     border-right: 1px solid #f0f0f0;
     -webkit-transition: var(--transition);
     transition: var(--transition);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .brand-grid-wrap .brand-grid h3 {
     font-weight: 700;
 }

 .brand-grid-wrap .brand-grid h4 {
     color: black;
     font-size: 18px;
 }

 .brand-grid-wrap .brand-grid:first-child {
     border-left: 1px solid #f0f0f0;
 }

 .brand-grid-wrap .brand-grid:nth-child(5n) {
     border-left: 1px solid #f0f0f0;
 }

 .brand-grid-wrap .brand-grid:hover {
     box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
 }

 .brand-grid-wrap.brand-style-2 {
     grid-template-columns: repeat(6, 1fr);
 }

 @media only screen and (max-width: 991px) {
     .brand-grid-wrap.brand-style-2 {
         grid-template-columns: repeat(3, 1fr);
     }
     .main-header__menu-box-top {
         display: none !important;
     }
     .section-header h2 {
         font-size: 24px !important;
     }
     .section-title__tagline:before,
     .testimonials .second-atitle:before,
     .edu-brand-area .second-atitle:before,
     .section-title__tagline::after,
     .testimonials .second-atitle::after,
     .edu-brand-area .second-atitle::after {
         top: 5px !important;
     }
 }

 @media only screen and (max-width: 479px) {
     .brand-grid-wrap.brand-style-2 {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 .brand-section-heading {
     padding-right: 60px;
 }

 .section-title.section-left {
     text-align: left;
 }

 .section-title .pre-title {
     font-weight: 500;
     display: inline-block;
     text-transform: uppercase;
     margin-bottom: 14px;
     letter-spacing: 1px;
 }

 .section-title .title {
     margin-bottom: 4px;
 }

 .brand-grid-wrap.brand-style-2:after {
     display: none;
 }

 .brand-grid-wrap.brand-style-2 .brand-grid {
     padding: 10px 20px;
 }

 .brand-grid-wrap.brand-style-2 .brand-grid:first-child {
     border-left: none;
 }

 @media only screen and (max-width: 479px) {
     .brand-grid-wrap.brand-style-2 .brand-grid:nth-child(2n) {
         border-right: none;
     }
 }

 @media only screen and (max-width: 991px) {
     .brand-grid-wrap.brand-style-2 .brand-grid:nth-child(3n) {
         border-right: none;
     }
 }

 @media only screen and (max-width: 479px) {
     .brand-grid-wrap.brand-style-2 .brand-grid:nth-child(3n) {
         border-right: 1px solid #f0f0f0;
     }
 }

 .brand-grid-wrap.brand-style-2 .brand-grid:nth-child(5n) {
     border-left: none;
 }

 .brand-grid-wrap.brand-style-2 .brand-grid:last-child {
     border-right: none;
 }

 .brand-grid-wrap.brand-style-2 .brand-grid:hover {
     box-shadow: none;
 }

 .brand-grid-wrap.brand-style-3 {
     grid-template-columns: repeat(5, 1fr);
     gap: 10px;
 }

 @media only screen and (max-width: 991px) {
     .brand-grid-wrap.brand-style-3 {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media only screen and (max-width: 767px) {
     .brand-grid-wrap.brand-style-3 {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media only screen and (max-width: 575px) {
     .brand-grid-wrap.brand-style-3 {
         grid-template-columns: repeat(1, 1fr);
     }
 }

 .brand-grid-wrap.brand-style-3:after {
     display: none;
 }

 .brand-grid-wrap.brand-style-3 .brand-grid {
     border: none;
     background-color: var(--color-lighten04);
     border-radius: 5px;
     padding: 30px 0;
     opacity: .4;
 }

 .brand-grid-wrap.brand-style-3 .brand-grid:hover {
     box-shadow: none;
     opacity: 1;
 }

 .brand-area-2 {
     position: relative;
     background: #F9F7F4;
     padding: 75px 0;
     overflow: hidden;
 }

 @media only screen and (max-width: 575px) {
     .brand-area-2 {
         padding: 50px 0;
     }
 }

 .brand-area-2 .shape-group li {
     position: absolute;
     z-index: -1;
 }

 .brand-area-2 .shape-group li.shape-1 {
     bottom: -170px;
     left: -220px;
 }

 .brand-area-2 .shape-group li.shape-2 {
     top: -22px;
     right: -21px;
     z-index: 1;
 }

 @media only screen and (min-width: 1200px) and (max-width: 1599px) {
     .brand-area-2 .shape-group li.shape-2 {
         top: -60px;
         right: -70px;
     }
 }

 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
     .brand-area-2 .shape-group li.shape-2 {
         display: none;
     }
 }

 .brand-area-5 {
     padding: 400px 0 120px;
     background-position: bottom;
     position: relative;
 }

 .brand-area-5::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-image: url(../img/bg-image-20.svg);
 }

 .brand-area-5::before svg {
     background: #f7f5f2;
     background: -webkit-linear-gradient(right, #f7f5f2 0%, rgba(247, 245, 242, 0.30196) 50%);
     background: linear-gradient(-90deg, #f7f5f2 0%, rgba(247, 245, 242, 0.30196) 50%);
 }

 @media only screen and (min-width: 768px) and (max-width: 991px) {
     .brand-area-5 {
         padding: 380px 0 100px;
     }
 }

 @media only screen and (max-width: 767px) {
     .brand-area-5 {
         padding: 260px 0 80px;
         margin-top: 100px;
     }
 }

 @media only screen and (max-width: 991px) {
     .brand-area-5 {
         background: none;
         background-color: #FCFBFA;
     }
 }

 @media only screen and (max-width: 575px) {
     .brand-area-5 {
         padding: 80px 0 80px;
         margin-top: 80px;
     }
 }

 .remote-brand {
     position: relative;
 }

 .remote-brand .brand-grid-wrap::after {
     background-color: var(--color-white);
 }

 .remote-brand .brand-grid {
     border-right: 1px solid var(--color-white);
 }

 .remote-brand .brand-grid:first-child {
     border-left: 1px solid var(--color-white);
 }

 .remote-brand .brand-grid:nth-child(5n) {
     border-left: 1px solid var(--color-white);
 }

 .remote-brand .brand-grid:hover {
     background: var(--color-white);
 }

 /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/

 .testimonials {
     padding: 80px 0;
     background: url("../img/testimonial-bg.png") no-repeat;
     background-position: center center;
     position: relative;
     background-color: rgb(255, 247, 245);
 }

 .testimonials::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(var(--color-secondary-light), 0.8);
 }

 .testimonials .section-header {
     margin-bottom: 40px;
 }

 .testimonials .testimonials-carousel,
 .testimonials .testimonials-slider {
     overflow: hidden;
     padding: 50px 0px;
 }

 .testimonials .testimonial-item {
     text-align: center;
     color: var(--color-white);
     position: relative;
     display: block;
     background-color: var(--color-white);
     border: 1px solid #ece9e0;
     border-radius: 6px;
     padding: 57px 50px 75px;
     -webkit-transition: all 500ms ease;
     transition: all 500ms ease;
     z-index: 1;
 }

 .testimonials .testimonial-item:before {
     content: "";
     position: absolute;
     top: -1px;
     left: -1px;
     right: -1px;
     bottom: -1px;
     border: 2px solid transparent;
     border-radius: 6px;
     -webkit-transition: all 500ms ease;
     transition: all 500ms ease;
 }

 .testimonials .testimonial-item .testimonial-img {
     width: 100px;
     border-radius: 50%;
     border: 6px solid rgba(var(--color-white-rgb), 0.15);
     margin: 0 auto;
 }

 .testimonials .testimonial-item h3 {
     font-size: 20px;
     font-weight: bold;
     margin: 10px 0 5px 0;
     color: var(--color-white);
 }

 .testimonials .testimonial-item h4 {
     font-size: 14px;
     color: rgba(var(--color-white-rgb), 0.6);
     margin: 0 0 15px 0;
 }

 .testimonials .testimonial-item .stars {
     margin-bottom: 15px;
 }

 .testimonials .testimonial-item .stars i {
     color: var(--color-yellow);
     margin: 0 1px;
 }

 .testimonials .testimonial-item .quote-icon-left,
 .testimonials .testimonial-item .quote-icon-right {
     color: rgba(var(--color-white-rgb), 0.6);
     font-size: 26px;
     line-height: 0;
 }

 .testimonials .testimonial-item .quote-icon-left {
     display: inline-block;
     left: -5px;
     position: relative;
 }

 .testimonials .testimonial-item .quote-icon-right {
     display: inline-block;
     right: -5px;
     position: relative;
     top: 10px;
     transform: scale(-1, -1);
 }

 .testimonials .testimonial-item p {
     font-style: italic;
     margin: 0 auto 15px auto;
 }

 .testimonials .swiper-pagination {
     margin-top: 40px;
     position: relative;
 }

 .testimonials .swiper-pagination .swiper-pagination-bullet {
     width: 8px;
     height: 8px;
     background-color: var(--color-secondary);
     border-radius: 8px;
     opacity: .8;
 }

 .testimonials .swiper-pagination .swiper-pagination-bullet-active {
     background-color: var(--color-primary);
     opacity: 1;
     width: 30px;
     transition: .5s;
 }

 @media (min-width: 992px) {
     .testimonials .testimonial-item p {
         width: 80%;
     }
 }

 .categories-area {
     background-color: var(--color-default);
 }

 .categories-wrapper {
     padding: 37px 20px 15px 20px;
     background: var(--color-white);
     border-radius: 10px;
     position: relative;
 }

 .categories-wrapper::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     bottom: 0;
     right: 0;
     background: #fe9b59;
     border-radius: 10px;
     transform: perspective(400px) scaleX(0);
     transform-origin: center;
     transition: all 500ms linear;
     transition-delay: 0.1s;
     z-index: 0;
 }

 .categories-wrapper:hover::before {
     opacity: 1;
     transform: perspective(400px) scaleX(1);
     transition: all 300ms linear;
     transition-delay: 0.1s;
 }

 .categiories-thumb {
     transition: 0.3s;
     background-color: rgba(var(--color-primary-light-rgb), .1);
     border-radius: 50%;
     padding: 5px;
 }

 .categiories-thumb img {
     border-radius: 50%;
 }

 svg {
     margin-bottom: 30px;
 }

 .categories-wrapper:hover .categiories-thumb {
     transform: translateY(-15px);
 }

 .categories-content {
     position: relative;
     z-index: 2;
 }

 .categories-content p {
     font-weight: 600;
 }

 .categories-content h4 {
     margin-bottom: 5px;
     font-weight: 600;
     font-size: 18px;
     margin-top: 15px;
 }

 .categories-wrapper:hover .categories-content h4 {
     color: var(--color-white);
 }

 /*----categories----*/

 .categories {
     background-color: var(--color-cyan);
     /* background-image: linear-gradient(to bottom, #F6F8FB 50%, #ffffff 50%); */
 }

 .swiper-button-prev {
     width: 45px;
     height: 45px;
     border: 1px solid #edeef2;
     text-align: center;
     line-height: 45px;
     border-radius: 50%;
     background: #ffffff;
     position: absolute;
     top: 50%;
     transform: translate(-50%, -50%);
     z-index: 2;
     left: 30px;
     transition: 0.3s;
 }

 .swiper-button-next {
     width: 45px;
     height: 45px;
     border: 1px solid #edeef2;
     text-align: center;
     line-height: 45px;
     border-radius: 50%;
     background: #ffffff;
     position: absolute;
     top: 50%;
     transform: translate(50%, -50%);
     z-index: 2;
     right: 30px;
     transition: 0.3s;
 }

 .swiper-button-prev:after,
 .swiper-button-next:after {
     font-size: 20px;
 }

 /*courses*/

 .item-all-cat .item-all-card {
     border: 1px solid #e0e8f3;
     box-shadow: 0 10px 15px rgba(8, 21, 66, 0.06);
 }

 .item-all-cat .item-all-card a {
     position: absolute;
     top: 0;
     left: 0;
     bottom: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 .item-all-cat .item-all-card {
     position: relative;
     padding: 1.5rem 1.5rem;
     border-radius: 4px;
     color: #fff;
 }

 .item-all-cat .row .item-all-card:hover {
     box-shadow: 0 5px 12px rgba(126, 142, 177, 0.2);
 }

 .item-all-cat .row .item-all-card {
     margin-bottom: 1.5rem;
 }

 .item-all-card:before {
     content: "";
     width: 100%;
     left: 0;
     height: 100%;
     bottom: -120px;
     position: absolute;
     display: block;
     opacity: 0.03;
     background: url(../img/bg.png);
     background-repeat: no-repeat;
     background-size: cover;
 }

 .item-all-card {
     overflow: hidden;
 }

 @media (max-width:992px) {
     .item-all-card .iteam-all-icon,
     .cls-subject .iteam-all-icon,
     .cls-subject .iteam-all-icon::before,
     .item-all-card .iteam-all-icon::before {
         width: 100px !important;
         height: 100px !important;
     }
     .animated-content {
         padding: 0px 15px 30px !important;
     }
     section {
         padding: 15px 0px !important;
     }
 }

 /* tile design */

 .sectiontitle-design {
     display: inline-block;
     position: relative;
     margin-bottom: 8px;
 }

 .sectiontitle-design:before {
     position: absolute;
     content: "";
     width: 30px;
     height: 2px;
     background: #44577a;
     left: -30px;
     top: 12px;
 }

 .sectiontitle-design:after {
     position: absolute;
     content: "";
     width: 30px;
     height: 2px;
     background: #44577a;
     right: -30px;
     top: 12px;
 }

 .sectiontitle-design .icons {
     width: 0.5rem;
     height: 0.5rem;
     display: inline-block;
     position: relative;
     transform: rotate(45deg);
 }

 .sectiontitle-design .icons {
     background: var(--color-primary);
 }

 .iteam-all-icon {
     width: 150px;
     height: 150px;
     background: #def9fe;
     border-radius: 100%;
     display: flex;
     text-align: center;
     margin: 0px auto;
     justify-content: center;
     position: relative;
 }

 .cls-subject .iteam-all-icon,
 .cls-subject .iteam-all-icon::before {
     width: 150px;
     height: 150px;
 }

 .iteam-all-icon::before {
     position: absolute;
     top: 0;
     left: 0;
     bottom: 0;
     right: 0;
     width: 150px;
     height: 150px;
     content: "";
     border-radius: 50%;
     -webkit-transform: scale(0);
     transform: scale(0);
     -webkit-transform-origin: center;
     transform-origin: center;
     -webkit-transform-style: preserve-3d;
     transform-style: preserve-3d;
     -webkit-transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
     transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
     background: rgba(var(--color-secondary-rgb), .5);
     z-index: 0;
 }

 .item-all-cat .item-all-card:hover .iteam-all-icon:before {
     -webkit-transform: scaleX(1);
     transform: scaleX(1);
 }

 .item-all-cat .item-all-card:hover .item-all-text h5 {
     color: var(--color-secondary);
 }

 .iteam-all-icon i {
     text-align: center;
     display: flex;
     justify-content: center;
     align-items: center;
     vertical-align: middle;
     font-size: 46px;
     text-shadow: #fff 1px 3px 1px;
     font-weight: 600;
     position: relative;
 }

 .iteam-all-icon i sup {
     font-size: 16px;
 }

 .item-all-text h5 {
     font-weight: 600;
 }

 .education-categories.item-all-cat .item-all-card {
     padding: 8px !important;
 }

 /*--------------------------------
  # pricing page style
  ----------------------------------------*/

 .pricing h1 {
     font-size: 40px;
     font-weight: 700;
     color: darkblue;
 }

 .pricing .price-list {
     border-left: transparent solid 3px;
     box-shadow: #ccc 1px 1px 4px;
 }

 .pricing .price-list:hover {
     border-left: #ff6600 solid 3px;
     box-shadow: none;
     border-radius: 6px;
 }

 .pricing .grade {
     text-align: center;
 }

 .pricing .grade h1 {
     font-size: 40px;
     font-weight: 700;
     color: darkblue;
 }

 .pricing .grade .grade-level {
     font-size: 24px;
     font-weight: 700;
     color: #ff6600;
     text-align: center;
 }

 .pricing .price .offer-price {
     font-size: 24px;
     font-weight: 700;
     color: darkblue;
     display: block;
 }

 .pricing .price .actual-price {
     font-size: 20px;
     font-weight: 600;
     color: #ff6600;
     display: block;
 }

 .pricing .price .valid-date {
     font-size: 20px;
     font-weight: 600;
     color: var(--color-black);
     display: block;
 }

 .pricing .price-subjects ul {
     margin: 0px;
     padding: 0px;
 }

 .pricing .price-subjects ul li {
     list-style-type: none;
     font-size: 18px;
     color: darkblue;
 }

 .pricing .price-subjects ul li i {
     margin-right: 8px;
     color: #ff6600;
 }

 /*-------------------------------
  # Registration page style
  ------------------------------------*/

 .registered.wrapper {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-around;
 }

 .signup-box {
     background: #f5f5f5;
     padding: 30px;
 }

 .signup-message img {
     margin-bottom: 5px;
     max-width: 100%;
 }

 .signup-thumb img {
     max-width: 100%;
 }

 .signup-form-wrapper {
     background: #fff;
     padding: 0px 30px 0;
 }

 .signup-input-wrapper {
     /* display: flex; */
     gap: 20px;
     justify-content: space-between;
     column-count: 2;
     margin-bottom: 20px;
 }

 .signup-form-wrapper label.error {
     /*font-size: 15px; */
     color: red;
 }

 .signup-input-wrapper input,.signup-input-wrapper select,
 .signup-wrapper input {
     background: #f5f5f5;
     border: 0;
     border-radius: 4px;
     color: #575757;
     /* display: flex; */
     font-size: 16px;
     height: 40px;
     margin-bottom: 5px;
     outline: none;
     padding: 10px 20px;
     width: 100%;
 }

 .signup-input-wrapper div {
     width: 50%;
 }

 .signup-wrapper#reg_student,
 .signup-wrapper#reg_teacher {
     width: 50%;
 }

 .signup-wrapper {
     position: relative;
 }

 .signup-action {
     margin-bottom: 25px;
 }

 .course-sidebar-list input[type=checkbox] {
     border: 1px solid #edeef2;
     border-radius: 2px;
     cursor: pointer;
     font-size: 15px;
     height: 18px;
     margin-right: 8px;
     position: relative;
     top: 3px;
     width: 18px;
 }

 .sign-check a {
     color: #2467ec;
     font-weight: 700;
     text-decoration: underline;
 }

 .sign-button .sign-btn,
 .sing-buttom button {
     background: #2467ec;
     border-radius: 4px;
     color: #fff;
     display: block;
     font-size: 16px;
     font-weight: 600;
     height: 55px;
     line-height: 55px;
     text-align: center;
     transition: .3s;
     width: 100%;
     border: none;
 }

 .acount-login {
     margin-bottom: 30px;
 }

 .acount-login a {
     color: #2467ec;
     font-weight: 600;
     margin-left: 5px;
     text-decoration: underline;
 }

 .sign-facebook,
 .sign-gmail {
     border: 1px solid #edeef2;
     border-radius: 4px;
     padding: 10px 20px;
 }

 .sign-facebook a,
 .sign-gmail a {
     font-weight: 600;
 }

 .mb-20 {
     margin-bottom: 20px;
 }

 @media(max-width:1199px) {
     .breadcrumbs {
         margin-top: 80px;
     }
 }

 .section-header h2 {
     margin-bottom: 20px;
 }

 .section-header {
     padding-bottom: 20px;
 }

 section.register {
     padding: 20px 0;
 }

 .signup-wrapper input[type="radio"] {
     width: 30px;
     display: inline-block;
     height: 20px;
     margin-bottom: 0px;
     vertical-align: middle;
 }

 .signup-wrapper.d-flex {
     gap: 20px;
 }

 .signup-wrapper .radiobtn {
     width: calc(100%);
     margin-bottom: 15px;
 }

 @media (max-width:767px) {
     .signup-input-wrapper {
         display: block;
     }
 }

 /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/

 .contact .info {
     padding: 40px;
     box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
     overflow: hidden;
 }

 .contact .info h3 {
     font-weight: 600;
     font-size: 24px;
 }

 .contact .info p {
     color: var(--color-black);
     margin-bottom: 30px;
     font-size: 15px;
 }

 .contact .info-item+.info-item {
     padding-top: 20px;
     margin-top: 20px;
     border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
 }

 .contact .info-item i {
     font-size: 24px;
     color: var(--color-primary);
     transition: all 0.3s ease-in-out;
     margin-right: 20px;
 }

 .contact .info-item h4 {
     padding: 0;
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 5px;
     color: var(--color-secondary);
 }

 .contact .info-item p {
     padding: 0;
     margin-bottom: 0;
     font-size: 14px;
     color: var(--color-black);
 }

 .contact .emailform,
 .profile .profile-form {
     width: 100%;
     background: var(--color-white);
 }

 .contact .emailform .form-group,
 .profile .profile-form .form-group {
     padding-bottom: 8px;
 }

 .contact .emailform .error-message {
     display: none;
     color: var(--color-white);
     background: var(--color-red);
     text-align: left;
     padding: 15px;
     font-weight: 600;
 }

 .contact .emailform .error-message br+br {
     margin-top: 25px;
 }

 .contact .emailform .sent-message {
     display: none;
     color: var(--color-white);
     background: var(--color-green);
     text-align: center;
     padding: 15px;
     font-weight: 600;
 }

 .contact .emailform .loading {
     display: none;
     background: var(--color-white);
     text-align: center;
     padding: 15px;
 }

 .contact .emailform .loading:before {
     content: "";
     display: inline-block;
     border-radius: 50%;
     width: 24px;
     height: 24px;
     margin: 0 10px -6px 0;
     border: 3px solid var(--color-green);
     border-top-color: var(--color-white);
     animation: animate-loading 1s linear infinite;
 }

 .contact .emailform input[type=text],
 .contact .emailform input[type=email],
 .contact .emailform textarea,
 .profile .profile-form input[type=text],
 .profile .profile-form input[type=email],
 .profile .profile-form textarea {
     border-radius: 0px;
     box-shadow: none;
     font-size: 14px;
 }

 .contact .emailform input[type=text]:focus,
 .contact .emailform input[type=email]:focus,
 .contact .emailform textarea:focus,
 .profile .profile-form input[type=text]:focus,
 .profile .profile-form input[type=email]:focus,
 .profile .profile-form textarea:focus {
     border-color: var(--color-secondary-light);
 }

 .contact .emailform input[type=text],
 .contact .emailform input[type=email],
 .profile .profile-form input[type=text],
 .profile .profile-form input[type=text] {
     height: 48px;
     padding: 10px 15px;
 }

 .contact .emailform textarea,
 .profile .profile-form textarea {
     padding: 10px 12px;
     height: 150px;
 }

 .contact .emailform button[type=submit],
 .profile .profile-form button[type=submit] {
     background: var(--color-primary);
     border: 0;
     padding: 13px 50px;
     color: var(--color-white);
     transition: 0.4s;
     border-radius: 0;
 }

 .contact .emailform button[type=submit]:hover,
 .profile .profile-form button[type=submit]:hover {
     background: rgba(var(--color-primary-rgb), 0.85);
 }

 .contact .emailform label.error {
     font-size: 18px;
     color: red;
 }

 @keyframes animate-loading {
     0% {
         transform: rotate(0deg);
     }
     100% {
         transform: rotate(360deg);
     }
 }

 /*-----------------------
  # bridge course page style
  --------------------------------*/

 #main_brdigecourse,
 #main_bridge_list {
     background-color: azure;
 }

 .bridge-block {
     border-left: #ff6600 solid 3px;
     border-radius: 0px;
     transition: .5s;
     background-color: #ffffff;
 }

 .bridge-block .post-img,
 .post-img {
     background: ghostwhite;
     box-shadow: #ccc 0px 1px 8px;
     border-radius: 8px;
     text-align: center;
     padding: 20px;
     overflow: hidden;
 }

 .bridge-block:hover {
     border-left: #ff6600 solid 3px;
     box-shadow: #ccc 0px 7px 10px;
     border-radius: 20px;
 }

 .bridge-block:hover .post-img img {
     filter: grayscale(100%);
     -webkit-filter: grayscale(100%);
     -moz-filter: grayscale(100%);
     transform: scale(1.1);
 }

 .bridge-block h2 {
     font-size: 26px;
     font-weight: 600;
     color: darkblue;
 }

 .bridge-block h3 {
     font-size: 24px;
     font-weight: 600;
     color: var(--color-secondary);
 }

 .bridge-block .post-img {
     box-shadow: none;
     border-radius: 0px;
 }

 .bridge-block ul li {
     color: black;
 }

 .bridge-block.bridge-crs .post-img img {
     max-width: 100%;
     transition: .5s;
 }

 .bridge-block.bridge-crs .post-img:hover img {
     transform: scale(1.1);
 }

 .bridge-list-block .row .col-lg-4.col-md-6 {
     margin-bottom: 20px;
 }

 .bridge-list-block .post-img img {
     max-width: -webkit-fill-available;
 }

 .bridge-list-block .post-img:hover img {
     transform: scale(1.1);
     border-radius: 8px;
     filter: grayscale(0%);
 }

 /* ------------------
  #  course list page style (subject) 
  -----------------------------------------  */

 section.bridge-course {
     padding: 20px 0px;
     overflow: unset;
 }

 #main_bridge,
 #main_subjects,
 #main_subjectdetails {
     background-color: azure;
 }

 .bridge-course .tab-content.sub-tab {
     background-color: white;
     padding: 10px;
     border-radius: 8px;
     box-shadow: #f1f1f1 0px 0px 15px;
     margin-left: 55px;
 }

 .course-list .nav-tabs,
 .course-list .nav-tabs .nav-item .nav-link.hover,
 .course-list .nav-tabs .nav-item .nav-link.active {
     border: none;
     border-color: transparent;
     background-color: transparent;
 }

 .course-list .nav-tabs {
     background-color: transparent;
     padding: 8px 0px 0px 0px;
     border-color: transparent;
 }

 .course-list .nav-tabs .nav-item {
     position: relative;
     z-index: 1;
     cursor: pointer;
 }

 .course-list .nav-tabs .nav-item .nav-link.active:after {
     border-top: solid 15px #ff6600;
     border-left: solid 15px transparent;
     border-right: solid 15px transparent;
     content: "";
     position: absolute;
     z-index: -1;
     transition: .5s;
     bottom: -20px;
     transform: translate(-50%, -50%);
     left: 50%;
 }

 .course-list .nav-tabs .nav-item .nav-link h4 {
     font-size: 28px;
     font-weight: 700;
     color: var(--color-black);
     text-align: center;
     margin: 0px;
     line-height: 26px;
 }

 .course-list .nav-tabs .nav-item .nav-link.active h4 {
     color: var(--color-white);
 }

 .course-list .nav-tabs .nav-item .nav-link {
     background-color: var(--color-white);
     transition: .5s;
     border-radius: 25px;
     padding: 10px 30px;
     margin: 2px 15px;
     box-shadow: blue -2px 0px 1px, #ff6600 2px 0px 1px;
     position: relative;
 }

 .course-list .nav-tabs .nav-item .nav-link:hover {
     background: cornsilk;
 }

 .course-list .nav-tabs .nav-item .nav-link.active {
     backface-visibility: hidden;
     background-color: #ff6600;
     box-shadow: #ff6600 -2px 0px 1px, #ff6600 2px 0px 1px;
     border-radius: 25px;
 }

 .course-list .nav-tabs .nav-link:focus,
 .course-list .nav-tabs .nav-link:hover {
     border-color: transparent;
 }

 .course-list .tabs-left {
     border-bottom: none;
     border-right: 1px solid #ddd;
     margin-top: 100px;
     width: 250px;
     /* position: sticky; 
    top:10px; */
 }

 section.course-list {
     overflow: unset;
 }

 .course-list .nav-pills .nav-link.active,
 .course-list .nav-pills .nav-link.active:hover,
 .course-list .nav-pills .nav-link.active:focus {
     border-bottom-color: #ddd;
     border-right-color: transparent;
     background: #f90;
     border: none;
     border-radius: 6px 0px 0px 6px;
     margin: 4px 0px;
     padding: 10px 0px;
     box-shadow: none;
     color: var(--color-white);
 }

 .course-list .nav-tabs>li>a:hover {
     line-height: 1.42857143;
     border: 1px solid transparent;
 }

 .course-list .nav-pills .nav-link {
     position: relative;
     text-align: center;
     background: bisque;
     margin: 4px 0px;
     padding: 10px 0px;
     border-radius: 6px 0px 0px 6px;
     color: black;
 }

 .course-list .nav-pills .nav-link span {
     margin: 0px auto;
     display: flex;
     width: 32px;
     height: 32px;
     text-align: center;
     transition: .5s;
 }

 .course-list .nav-pills .nav-link span img {
     transition: .5s;
 }

 .course-list .nav-pills .nav-link:hover span img {
     transition: .5s;
     transform: translate(0px, -5px);
 }

 .course-list .nav-pills .nav-link.active::after {
     content: "";
     position: absolute;
     top: 10px;
     right: -9px;
     border-top: 10px solid transparent;
     border-bottom: 10px solid transparent;
     border-left: 10px solid #f90;
     display: block;
     width: 0;
 }

 .course-list .tab-content {
     width: 100%;
 }

 .course-list .sub-tab .sub-tab-content h1 {
     text-align: center;
     font-weight: 700;
     font-size: 38px;
     position: relative;
     color: darkblue;
 }

 .course-list .sub-tab .sub-tab-content h1:before {
     width: 28px;
     height: 5px;
     display: block;
     content: "";
     position: absolute;
     bottom: -2px;
     left: 50%;
     margin-left: -14px;
     background-color: #b80000;
 }

 .course-list .sub-tab .sub-tab-content h1:after {
     width: 100px;
     height: 1px;
     display: block;
     content: "";
     position: relative;
     margin-top: 15px;
     left: 50%;
     margin-left: -50px;
     background-color: #b80000;
 }

 .course-list .sub-tab .sub-tab-content .description h3 {
     color: var(--color-black);
     font-weight: 600;
 }

 .course-list .sub-tab .sub-tab-content .description p {
     color: var(--color-black);
     font-weight: 100;
 }

 .course-list .sub-tab .sub-tab-content h2 {
     background-color: transparent;
     padding: 8px 65px 8px 20px;
     margin: 0px;
     width: max-content;
     min-width: 230px;
     border-radius: 6px 0px 0px;
     color: var(--color-white);
     font-size: 18px;
     position: relative;
     font-weight: 600;
     z-index: 1;
 }

 .course-list .sub-tab .sub-tab-content h2::after {
     position: absolute;
     top: 0;
     right: 0;
     bottom: -2px;
     left: 0;
     z-index: -1;
     outline: 1px solid transparent;
     border-radius: 10px 10px 0 0;
     background: var(--color-primary);
     box-shadow: inset 0 -3px 3px rgba(0, 0, 0, 0.05);
     content: '';
     -webkit-transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
     transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
     -webkit-transform-origin: 0 0;
     transform-origin: 0 0;
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
 }

 .course-list .sub-tab .sub-tab-content .description {
     align-items: flex-start;
     vertical-align: middle;
     display: flex;
     flex-direction: column;
     text-align: left;
     justify-content: end;
 }

 .course-list .sub-tab .sub-tab-content .sub-tab-details .icon {
     margin-right: 15px;
     width: 100px;
     height: 100px;
     border-right: #ccc dotted 1px;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-flow: column;
 }

 .course-list .sub-tab .sub-tab-content .sub-tab-details .icon span {
     text-align: center;
     line-height: 16px;
     font-size: 12px;
     margin-top: 8px;
     color: darkblue;
     font-weight: 600;
 }

 .course-list .sub-tab .sub-tab-content .sub-tab-block a:hover .sub-tab-details .icon img {
     transform: scale(1.3);
 }

 .course-list .sub-tab .sub-tab-content .sub-tab-details .icon img {
     max-width: 50px;
     transition: .5s;
 }

 .course-list .sub-tab .sub-tab-content .sub-tab-block {
     margin-bottom: 15px;
     border: #f1f1f1 solid 1px;
 }

 .course-list .sub-tab .sub-tab-content a {
     border-bottom: #f1f1f1 solid 1px;
     display: block;
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .course-list .sub-tab .sub-tab-content a:last-child {
     border-bottom: none;
 }

 .course-list .sub-tab .sub-tab-content .sub-tab-block a::after {
     background-image: linear-gradient(to right, transparent, #b3e7ea);
     content: "";
     height: 100%;
     left: -100%;
     position: absolute;
     top: 0;
     transition: all 0.35s ease-in-out;
     -webkit-transition: all 0.35s ease-in-out;
     -moz-transition: all 0.35s ease-in-out;
     -ms-transition: all 0.35s ease-in-out;
     -o-transition: all 0.35s ease-in-out;
     width: 100%;
     z-index: -1;
 }

 .course-list .sub-tab .sub-tab-content .sub-tab-block a:hover::after {
     left: 0;
 }

 .course-list .sub-tab .sub-tab-content .sub-tab-block a:hover .description h3 {
     color: #ff6600;
 }

 .course-list .subject .alert {
     font-size: 17px;
     text-align: center;
 }

 .course-list .subject .section-header h2 {
     margin-bottom: 10px;
     color: var(--color-primary);
     font-weight: 700;
 }

 .course-list .section-header {
     padding-bottom: 20px;
 }

 .course-list .subject .section-header h3 {
     font-weight: 600;
 }

 .course-list .subject .section-header h3 span {
     margin-bottom: 10px;
     color: var(--color-secondary);
 }

 .course-list .nav-tabs {
     background-color: transparent;
     padding: 8px 0px 0px 0px;
     border-color: transparent;
 }

 .course-list .tab-content.sub-tab {
     background-color: white;
     padding: 10px;
     border-radius: 8px;
     padding-top: 40px;
     box-shadow: #f1f1f1 0px 0px 15px;
     margin-left: 55px;
 }

 .course-list.mypage .sub-tab .sub-tab-content .sub-tab-block {
     border: none;
 }

 .course-list.mypage .sub-tab .sub-tab-content .sub-tab-block.teachers {
     /* column-count: 4;*/
 }

 .course-list .tab-content.sub-tab .sub-tab-content span.schoolcode {
     font-size: 18px;
     color: var(--color-secondary);
     float: right;
     margin-top: -50px;
 }

 @media (min-width:768px) and (max-width:992px) {
     .course-list.mypage .sub-tab .sub-tab-content .sub-tab-block.teachers {
         column-count: 2;
     }
 }

 @media (max-width:767px) {
     .course-list.mypage .sub-tab .sub-tab-content .sub-tab-block.teachers {
         column-count: 1;
     }
 }

 @media (max-width:991px) {
     .course-list .tab-content.sub-tab {
         margin-left: 0px;
     }
     .course-list.mypage .sub-tab .sub-tab-content .sub-tab-block {
         overflow-x: scroll;
     }
     .course-list .sub-tab .sub-tab-content h2 {
         width: fit-content !important;
     }
     .course-list .sub-tab .sub-tab-content .description h3 {
         font-size: 18px !important;
     }
     .course-list .sub-tab .sub-tab-content .description p {
         font-size: 14px !important;
         margin-bottom: 0px !important;
     }
     .course-list .sub-tab .sub-tab-content .sub-tab-details .icon {
         width: 50px !important;
         height: 75px !important;
     }
     .course-list .sub-tab .sub-tab-content .sub-tab-details .icon img {
         max-width: 30px !important;
     }
     .course-list .sub-tab .sub-tab-content h1 {
         font-size: 28px !important;
     }
 }

 /*--------------------------
  # faq page  style
  ------------------------------------------*/

 section.faq {
     padding: 20px 0px;
     overflow: unset;
 }

 #main_faq {
     background-color: azure;
 }

 .faqs .tab-content.sub-tab {
     background-color: white;
     padding: 10px;
     border-radius: 8px;
     box-shadow: #f1f1f1 0px 0px 15px;
     margin-left: 55px;
 }

 .faqs .nav-tabs,
 .faqs .nav-tabs .nav-item .nav-link.hover,
 .faqs .nav-tabs .nav-item .nav-link.active {
     border: none;
     border-color: transparent;
     background-color: transparent;
 }

 .faqs .nav-tabs {
     background-color: transparent;
     padding: 8px 0px 0px 0px;
     border-color: transparent;
 }

 .faqs .tabs-left {
     border-bottom: none;
     border-right: 1px solid #ddd;
     margin-top: 0px;
     width: 250px;
     position: sticky;
     /*top:130px;*/
 }

 .faqs .nav-pills .nav-link.active,
 .faqs .nav-pills .nav-link.active:hover,
 .faqs .nav-pills .nav-link.active:focus {
     border-bottom-color: #ddd;
     border-right-color: transparent;
     background: #f90;
     border: none;
     border-radius: 6px 0px 0px 6px;
     margin: 8px 0px;
     padding: 15px 0px;
     box-shadow: none;
     color: var(--color-white);
 }

 .faqs .nav-tabs>li>a:hover {
     line-height: 1.42857143;
     border: 1px solid transparent;
 }

 .faqs .nav-pills .nav-link:hover {
     padding-left: 50px;
 }

 .faqs .nav-pills .nav-link {
     position: relative;
     text-align: center;
     background: bisque;
     margin: 8px 0px;
     padding: 15px 0px;
     border-radius: 6px 0px 0px 6px;
     color: black;
     transition: .5s;
 }

 .faqs .nav-pills .nav-link span {
     margin: 0px auto;
     display: flex;
     width: 32px;
     height: 32px;
     text-align: center;
     transition: .5s;
 }

 .faqs .nav-pills .nav-link span img {
     transition: .5s;
 }

 .faqs .nav-pills .nav-link:hover span img {
     transition: .5s;
     transform: translate(0px, -5px);
 }

 .faqs .nav-pills .nav-link.active::after {
     content: "";
     position: absolute;
     top: 10px;
     right: -9px;
     border-top: 10px solid transparent;
     border-bottom: 10px solid transparent;
     border-left: 10px solid #f90;
     display: block;
     width: 0;
 }

 .faqs .tab-content {
     width: 100%;
 }

 .faqs .sub-tab .sub-tab-content h1 {
     text-align: center;
     font-weight: 700;
     font-size: 38px;
     position: relative;
     color: darkblue;
 }

 .faqs .sub-tab .sub-tab-content h1:before {
     width: 28px;
     height: 5px;
     display: block;
     content: "";
     position: absolute;
     bottom: -2px;
     left: 50%;
     margin-left: -14px;
     background-color: #b80000;
 }

 .faqs .sub-tab .sub-tab-content h1:after {
     width: 100px;
     height: 1px;
     display: block;
     content: "";
     position: relative;
     margin-top: 15px;
     left: 50%;
     margin-left: -50px;
     background-color: #b80000;
 }

 .faqs .sub-tab .sub-tab-content .description h3 {
     color: var(--color-black);
     font-weight: 600;
 }

 .faqs .sub-tab .sub-tab-content .description p {
     color: var(--color-black);
     font-weight: 100;
 }

 .faqs .section-header {
     padding-bottom: 20px;
 }

 .faqs .subject .section-header h3 {
     font-weight: 600;
 }

 .faqs .subject .section-header h3 span {
     margin-bottom: 10px;
     color: var(--color-secondary);
 }

 /*--------------------------------------------------------------
  # Subject Details Page
  --------------------------------------------------------------*/

 .subject .subject-details,
 .bridge-course .subject-details {
     box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
     padding: 30px;
 }

 .subject .subject-details .post-img,
 .post-img {
     background: ghostwhite;
     box-shadow: #ccc 0px 1px 8px;
     border-radius: 8px;
     text-align: center;
     padding: 20px;
     overflow: hidden;
 }

 .subject .subject-details .post-img:hover {
     background: cornsilk;
 }

 .subject .subject-details .post-img img,
 .post-img img {
     max-width: 250px;
     transition: .5s;
 }

 .post-img:hover img {
     filter: grayscale(100%);
     -webkit-filter: grayscale(100%);
     -moz-filter: grayscale(100%);
     transform: scale(1.2);
 }

 .subject .subject-details .title {
     font-size: 28px;
     font-weight: 700;
     padding: 0;
     margin: 0px 0 0 0;
     color: var(--color-secondary);
 }

 /* .subject .subject-details .content {
    margin-top: 20px;
  } */

 .subject .section-header h2 {
     margin-bottom: 10px;
     color: var(--color-primary);
     font-weight: 700;
 }

 .subject .subject-details .content h3 {
     font-size: 22px;
     margin-top: 30px;
     font-weight: bold;
 }

 .subject .section-header h3 span {
     margin-bottom: 10px;
     color: var(--color-secondary);
 }

 .subject .section-header h3 {
     font-weight: 600;
 }

 .subject .subject-details .content blockquote {
     overflow: hidden;
     background-color: rgba(var(--color-secondary-rgb), 0.06);
     padding: 60px;
     position: relative;
     text-align: center;
     margin: 20px 0;
 }

 .subject .subject-details .content blockquote p {
     color: var(--color-default);
     line-height: 1.6;
     margin-bottom: 0;
     font-style: italic;
     font-weight: 500;
     font-size: 22px;
 }

 .subject .subject-details .content blockquote:after {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 3px;
     background-color: var(--color-secondary);
     margin-top: 20px;
     margin-bottom: 20px;
 }

 .subject .post-author {
     padding: 20px;
     margin-top: 30px;
     box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
 }

 .subject .post-author img {
     max-width: 120px;
     margin-right: 20px;
 }

 .subject .post-author h4 {
     font-weight: 600;
     font-size: 22px;
     margin-bottom: 0px;
     padding: 0;
     color: var(--color-secondary);
 }

 .subject .post-author .social-links {
     margin: 0 10px 10px 0;
 }

 .subject .post-author .social-links a {
     color: rgba(var(--color-secondary-rgb), 0.5);
     margin-right: 5px;
 }

 .subject .post-author p {
     font-style: italic;
     color: rgba(var(--color-gray-rgb), 0.8);
     margin-bottom: 0;
 }

 /*--------------------------------------------------------------
  # Blog Comments
  --------------------------------------------------------------*/

 .subject .comments {
     margin-top: 30px;
 }

 .subject .comments .comments-count {
     font-weight: bold;
 }

 .subject .comments .comment {
     margin-top: 30px;
     position: relative;
 }

 .subject .comments .comment .comment-img {
     margin-right: 14px;
 }

 .subject .comments .comment .comment-img img {
     width: 60px;
 }

 .subject .comments .comment h5 {
     font-size: 16px;
     margin-bottom: 2px;
 }

 .subject .comments .comment h5 a {
     font-weight: bold;
     color: var(--color-default);
     transition: 0.3s;
 }

 .subject .comments .comment h5 a:hover {
     color: var(--color-primary);
 }

 .subject .comments .comment h5 .reply {
     padding-left: 10px;
     color: var(--color-secondary);
 }

 .subject .comments .comment h5 .reply i {
     font-size: 20px;
 }

 .subject .comments .comment time {
     display: block;
     font-size: 14px;
     color: rgba(var(--color-secondary-rgb), 0.8);
     margin-bottom: 5px;
 }

 .subject .comments .comment.comment-reply {
     padding-left: 40px;
 }

 .subject .comments .reply-form {
     margin-top: 30px;
     padding: 30px;
     box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
     background-color: floralwhite;
 }

 .subject .comments .reply-form h4 {
     font-weight: bold;
     font-size: 22px;
 }

 .subject .comments .reply-form p {
     font-size: 14px;
 }

 .subject .comments .reply-form input {
     border-radius: 4px;
     padding: 10px 10px;
     font-size: 14px;
 }

 .subject .comments .reply-form input:focus {
     box-shadow: none;
     border-color: rgba(var(--color-primary-rgb), 0.8);
 }

 .subject .comments .reply-form textarea {
     border-radius: 4px;
     padding: 10px 10px;
     font-size: 14px;
     min-height: 120px;
 }

 .subject .comments .reply-form textarea:focus {
     box-shadow: none;
     border-color: rgba(var(--color-primary-rgb), 0.8);
 }

 .subject .comments .reply-form .form-group {
     margin-bottom: 25px;
 }

 .subject .comments .reply-form .btn-primary {
     border-radius: 4px;
     padding: 10px 20px;
     border: 0;
     background-color: var(--color-secondary);
 }

 .subject .comments .reply-form .btn-primary:hover {
     background-color: rgba(var(--color-secondary-rgb), 0.8);
 }

 /*--------------------------------------------------------------
  # F.A.Q Section
  --------------------------------------------------------------*/

 @media (max-width: 991px) {
     .faq {
         padding: 0;
     }
     .faqs .tab-content.sub-tab {
         margin-left: 0px !important;
     }
     .faqs .tabs-left {
         width: 150px !important;
     }
     .faqs .nav-pills .nav-link.active,
     .faqs .nav-pills .nav-link.active:hover,
     .faqs .nav-pills .nav-link.active:focus {
         padding: 15px 0px !important;
     }
     .faqs .sub-tab .sub-tab-content .sub-tab-details .icon {
         width: 50px !important;
         height: 75px !important;
     }
     .faqs .sub-tab .sub-tab-content .sub-tab-details .icon img {
         max-width: 30px !important;
     }
     .faqs .sub-tab .sub-tab-content .description h3 {
         font-size: 18px !important;
     }
     .faqs .sub-tab .sub-tab-content .description p {
         font-size: 14px !important;
         margin-bottom: 0px !important;
     }
     .faqs .nav-tabs {
         flex-wrap: inherit !important;
         overflow-x: auto;
         width: max-content;
     }
     .faqs .nav-tabs .nav-item .nav-link {
         margin: 12px 15px !important;
     }
     .faqs .sub-tab .sub-tab-content h2 {
         width: fit-content !important;
     }
     .tab-wrapper {
         width: 100%;
         overflow-x: auto;
     }
     .course-list .nav-tabs {
         flex-wrap: inherit !important;
         overflow-x: auto;
         width: max-content;
     }
     .course-list .nav-tabs .nav-item .nav-link {
         margin: 12px 15px !important;
     }
     .faqs .sub-tab .sub-tab-content h1 {
         font-size: 26px !important;
     }
 }

 .faq .content h3 {
     font-weight: 400;
     font-size: 34px;
     color: var(--color-secondary);
 }

 .faq .content h4 {
     font-size: 20px;
     font-weight: 700;
     margin-top: 5px;
 }

 .faq .content p {
     font-size: 15px;
     color: var(--color-gray);
 }

 .faq .img {
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center center;
     min-height: 400px;
 }

 .faq .accordion-item {
     border: 0;
     margin-top: 15px;
     box-shadow: 0px 5px 25px 0px rgba(var(--color-black-rgb), 0.06);
 }

 .faq .accordion-collapse {
     border: 0;
 }

 .accordion-button::before {
     margin-left: inherit !important;
     margin-right: 15px !important;
 }

 .accordion-button::before {
     flex-shrink: 0;
     width: var(--bs-accordion-btn-icon-width);
     height: var(--bs-accordion-btn-icon-width);
     content: "";
     background-image: var(--bs-accordion-btn-icon);
     background-repeat: no-repeat;
     background-size: var(--bs-accordion-btn-icon-width);
     transition: var(--bs-accordion-btn-icon-transition);
 }

 .accordion-button::after {
     display: none !important;
 }

 .accordion-button:not(.collapsed)::before {
     background-image: var(--bs-accordion-btn-active-icon);
     transform: var(--bs-accordion-btn-icon-transform);
 }

 .faq .accordion-button {
     padding: 15px 40px 20px 60px;
     font-weight: 600;
     border: 0;
     font-size: 18px;
     color: var(--color-default);
     text-align: left;
     background: var(--color-white);
     box-shadow: none;
     border-radius: 5px;
 }

 .faq .accordion-button:not(.collapsed) {
     color: var(--color-primary);
     border-bottom: 0;
     box-shadow: none;
 }

 .faq .question-icon {
     position: absolute;
     top: 14px;
     left: 25px;
     font-size: 20px;
     color: var(--color-primary);
 }

 .faq .accordion-button:after {
     position: absolute;
     right: 15px;
     top: 15px;
     color: var(--color-primary);
 }

 .faq .accordion-body {
     padding: 0 30px 25px 60px;
     border: 0;
     border-radius: 5px;
     background: var(--color-white);
     box-shadow: none;
 }

 .accordion-header button i {
     margin-right: 10px;
     color: #ff6600;
 }

 .accordion-flush .accordion-item .accordion-button {
     box-shadow: none;
     font-size: 1.3rem;
 }

 /*--------------------------------------------------------------
  # home faqs section
  --------------------------------------------------------------*/

 .home_faqs .details {
     padding: 50px 30px;
     /* margin: -100px 30px 0 30px; */
     transition: all ease-in-out 0.3s;
     background: var(--color-white);
     position: relative;
     background: rgba(var(--color-white-rgb), 0.9);
     text-align: center;
     border-radius: 8px;
     box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
 }

 .home_faqs .details h5 {
     font-weight: 600;
     color: #507fa0;
 }

 .home_faqs .details .icon {
     margin: 0;
     width: 72px;
     height: 72px;
     background: transparent;
     border-radius: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     color: var(--color-white);
     font-size: 28px;
     transition: ease-in-out 0.3s;
     position: absolute;
     top: -36px;
     left: calc(50% - 36px);
     border: 6px solid var(--color-white);
 }

 .home_faqs .details h3 {
     color: var(--color-default);
     font-weight: 700;
     margin: 10px 0 15px 0;
     font-size: 22px;
     transition: ease-in-out 0.3s;
 }

 .home_faqs .details p {
     line-height: 24px;
     font-size: 14px;
     margin-bottom: 30px;
 }

 .home_faqs .service-item:hover .details h3 {
     color: var(--color-primary);
 }

 .home_faqs .service-item:hover .details .icon {
     background: var(--color-white);
     border: 2px solid var(--color-primary);
 }

 .home_faqs .service-item:hover .details .icon i {
     color: var(--color-primary);
 }

 .home_faqs .service-item:hover .img img {
     transform: scale(1.2);
 }

 /* login form */

 .form-style input {
     border: 0;
     height: 50px;
     border-radius: 0;
     border-bottom: 1px solid #ebebeb;
 }

 .form-style input:focus {
     border-bottom: 1px solid #007bff;
     box-shadow: none;
     outline: 0;
     background-color: #ebebeb;
 }

 .reg {
     font-size: 20px;
     font-weight: bold;
     color: var(--color-primary);
 }

 .colorgraph {
     height: 7px;
     border-top: 0;
     background: #c4e17f;
     border-radius: 5px;
     background-image: -webkit-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
     background-image: -moz-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
     background-image: -o-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
     background-image: linear-gradient(to right, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
 }

 .login {
     position: relative;
     overflow: hidden;
 }

 .shape-1 {
     width: 80%;
     height: 70px;
     background-color: var(--color-cyan);
     position: absolute;
     top: -4%;
     left: 9%;
     border-radius: 10px;
     overflow: hidden;
 }

 .shape-1:after {
     content: "";
     width: 60px;
     height: 60px;
     position: absolute;
     background: var(--color-primary);
     right: -25px;
     top: 35px;
     border-radius: 100%;
 }

 .shape-1:before {
     content: "";
     width: 60px;
     height: 60px;
     background: var(--color-cyan);
     position: absolute;
     top: -5px;
     transform: rotate(-45deg);
     border-radius: 100%;
     left: -20px;
     border: var(--color-secondary) solid 5px;
 }

 .thm-btn {
     position: relative;
     display: inline-block;
     vertical-align: middle;
     outline: none !important;
     background-color: var(--color-secondary);
     color: var(--color-white);
     font-size: 18px;
     font-weight: 700;
     letter-spacing: 0;
     border-radius: 25px;
     padding: 10px 20px 10px;
     transition: all 0.5s linear;
     overflow: hidden;
     z-index: 1;
 }

 .pxy-5 {
     padding-right: 2rem !important;
     padding-left: 2rem !important;
 }

 .thm-btn::before {
     position: absolute;
     content: '';
     background-color: var(--color-primary);
     width: 100%;
     height: 0%;
     left: 50%;
     top: 50%;
     border-radius: 25px;
     transform: translate(-50%, -50%) rotate(-45deg);
     z-index: -1;
     transition: all 500ms ease;
 }

 .thm-btn:hover:before {
     height: 380%;
 }

 .thm-btn1 {
     position: relative;
     display: inline-block;
     vertical-align: middle;
     outline: none !important;
     background-color: var(--color-white);
     color: var(--color-primary);
     font-size: 18px;
     font-weight: 700;
     letter-spacing: 0;
     border-radius: 25px;
     border: solid 2px var(--color-primary);
     padding: 10px 20px 10px;
     transition: all 0.5s linear;
     overflow: hidden;
     z-index: 1;
 }

 .thm-btn1::before {
     position: absolute;
     content: '';
     background-color: var(--color-primary);
     width: 100%;
     height: 0%;
     left: 50%;
     top: 50%;
     border-radius: 25px;
     transform: translate(-50%, -50%) rotate(-45deg);
     z-index: -1;
     transition: all 500ms ease;
 }

 .thm-btn1:hover:before {
     height: 380%;
 }

 .thm-btn1:hover {
     color: var(--color-white);
 }

 .btn-dark {
     border: none;
 }

 .shadow-lg,
 .bg-white {
     border-radius: 0px 0px 20px 20px;
 }

 /*   heading title */

 .section-title__tagline {
     position: relative;
     display: inline-block;
     font-size: 14px;
     line-height: 14px;
     color: var(--zeinet-base);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     padding-left: 20px;
     z-index: 1;
 }

 .section-title__tagline h2 {
     color: var(--color-secondary);
     font-weight: 600;
 }

 .section-title__tagline:before {
     content: "";
     position: absolute;
     top: 10px;
     left: 0;
     height: 20px;
     width: 2px;
     background-color: var(--color-secondary);
     transform: rotate(15deg);
 }

 .section-title__tagline:after {
     content: "";
     position: absolute;
     top: 10px;
     left: 6px;
     height: 20px;
     width: 2px;
     background-color: var(--color-primary);
     transform: rotate(15deg);
 }

 /*------------------ two column banner ------------*/

 .banner__item {
     padding: 50px 40px;
     /* background-position: 50%; */
     background-repeat: no-repeat;
     background-size: cover;
     border-radius: 4px;
     position: relative;
 }

 .banner__content {
     position: relative;
     z-index: 1;
 }

 .banner__item span {
     font-size: 14px;
     font-weight: 500;
     color: #fff;
     background: #fc4389;
     display: inline-block;
     height: 20px;
     line-height: 22px;
     padding: 0 14px;
     margin-bottom: 15px;
     border-radius: 10px;
     text-transform: capitalize;
 }

 .banner__content {
     position: relative;
     z-index: 1;
 }

 .banner__title {
     font-size: 26px;
     margin-bottom: 30px;
 }

 .e-btn {
     display: inline-block;
     height: 50px;
     line-height: 52px;
     text-align: center;
     padding: 0 25px;
     color: #fff;
     background: #2b4eff;
     border-radius: 4px;
     font-weight: 500;
     text-transform: lowercase;
 }

 .e-btn-2 {
     height: 34px;
     line-height: 36px;
     padding: 0 20px;
     font-size: 14px;
     text-transform: capitalize;
 }

 .banner__thumb {
     position: absolute;
     top: 56%;
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
     right: 10px;
 }

 /*-----------two column banner 1 -------*/

 .course-height {
     background-position: 50%;
     background-repeat: no-repeat;
     background-size: cover;
     border-radius: 4px;
     min-height: 270px;
     padding: 50px 40px;
 }

 .browser-course-wrapper {
     border-radius: 5px;
     overflow: hidden;
     position: relative;
 }

 .browser-course-bg {
     height: 100%;
     left: 0;
     position: absolute;
     top: 0;
     width: 100%;
 }

 .browser-course-bg img {
     height: 100%;
     object-fit: cover;
     object-position: center;
     transition: .6s;
     width: 100%;
 }

 .browser-course-content {
     position: relative;
     width: 310px;
     z-index: 1;
 }

 .browser-course-content span {
     color: #2467ec;
     display: block;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .browser-course-tittle a {
     color: #141517;
     display: block;
     font-size: 22px;
     font-weight: 700;
     line-height: 1.3;
     margin-bottom: 30px;
 }

 .course-btn {
     background: #2467ec;
     border-radius: 3px;
     color: #fff;
     display: inline-block;
     font-weight: 600;
     height: 40px;
     line-height: 40px;
     padding: 0 25px;
 }

 .browser-course-wrapper:hover .browser-course-bg img {
     transform: scale(1.05);
 }

 /* features like awards */

 .featured {
     position: relative;
     background-image: url("../img/bg.jpg");
     background-repeat: no-repeat;
     background-size: cover;
     background-position: right;
 }

 .featured:before {
     content: "";
     background: rgba(var(--color-primary-rgb), .5);
     width: 100%;
     height: 100%;
     position: absolute;
     top: 0px;
     left: 0px;
 }

 .featured .box {
     text-align: center;
 }

 .featured .box .icon {
     border: 1px solid #ffffff;
     margin: 0 auto 25px;
     border-radius: 50%;
     width: 80px;
     height: 80px;
     padding: 4px 3px;
 }

 .featured .box .icon .icons {
     background: #ffffff;
     border-radius: 50%;
     width: 70px;
     height: 70px;
     padding: 15px 10px;
     display: flex;
     align-items: center;
 }

 .featured .box .icon .icons img {
     max-width: 40px;
     text-align: center;
     margin: 0px auto;
 }

 .featured .box:hover .icon .icons img {
     transform: rotate(360deg);
     transition: .8s;
 }

 .featured .box h4 {
     font-size: 24px;
     font-weight: 600;
     color: #fff;
     margin: 0 0 10px;
 }

 .featured .box p {
     font-size: 40px;
     font-weight: 700;
     color: #F4BD01;
     margin: 0;
 }

 .about-details .content p {
     font-size: 18px;
 }

 .form-check-container {
     display: flex;
     flex-wrap: wrap;
 }

 .form-check-container .form-check {
     flex: 0 0 25%;
     /* Adjust the width as needed */
 }