:root {
    --primary: #0e2a59;
    --secondary: #e6a956;
    --bg-white:white;
}

/* Hide scrollbar for Chrome, Safari and Opera */

body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */

body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    overflow-x: hidden;
    /* Firefox */
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Poppins', sans-serif;
}

p {
    color: #414141;
    font-size: 16px;
    text-align: justify;
    line-height: 30px;
}

.bg-1 {
    /* background-image: url('images/bg-1.png'); */
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
}

.bg-2 {
    background-image: url('images/bg-2.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.mr-logo {
    margin-left: 50px;
}

.mobile-logo{
    width:65px!important;
}

.navbar{
    padding-bottom: 0px!important;
}

.main-head{
    margin-top: -25px;
}
.mr-section {
    padding: 30px 0px;
}

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

.mr-navbar .navbar-brand img {
    width: 100px;
}

/* .mr-navbar ul li a {
    color: var(--primary) !important;
    font-family: 'Poppins', sans-serif;
} */

.navbar-dark .navbar-nav .nav-link {
    color: var(--primary)!important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover{
    color: var(--secondary) !important;
    transition: 0.4s;
}

.social-nav {
    border-radius: 0px 0px 0px 100px;
    background-color: var(--primary);
}

.social-nav img {
    height: 25px;
}

.banner {
    padding-top: 100px;
    padding-bottom: 50px;
    background-image: url('../image/banner.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 90vh; */
}

.banner .title {
    font-size: 3.5rem;
}

.banner .sub-title {
    font-size: 22px;
    line-height: 30px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 1.125rem;
    color: #828283;
    text-transform: uppercase;
    border-bottom: 2px solid var(--secondary);
    line-height: 25px;
    display: inline-block;
}

.title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
    text-wrap: wrap;
    margin-top: 15px;
    margin-bottom: 20px;
}

.title1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
    text-wrap: wrap;
    padding:0px 50px;
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: capitalize;
}

.library-title {
    font-size: x-large;
}

.card-form {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 35px;
}

label {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 9px;
    margin-bottom: 9px;
}

.mr-input {
    height: 53px;
    background-color:#f1d0a3;
    border-radius: 13px;
}

.mr-button {
    background-color: var(--secondary);
    padding: 13px 56px;
    color:black;
    font-weight: 600;
}

.mr-button1 {
    background-color: var(--primary);
    padding: 13px 56px;
    color: white;
}

.mr-button1:hover{
    color: white;
}

.stats {
    background-image:url(../image/why-choose.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.mr-img-1 {
    /* height: 496px; */
    width: 490px;
}

.mr-img-2 {
    width: 100%;
    margin-top: -120px;
    /* margin-left: 20%; */
}

.mr-img-8 {
    width: 100%;
}

.mr-img-9 {
    width: 100%;
    margin-top: 100px;
    /* margin-left: 30%; */
}

.accordion-item {
    margin-bottom: 19px;
}

.accordion-header {
    background-color: #D9D9D9;
    padding: 0px;
    border-radius: 15px;
    box-shadow: none;
}

.accordion-button {
    padding-left: 0px;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    background-color: #D9D9D9 !important;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-no {
    background-color: var(--secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 0px 15px 15px 0px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}

.faq-question {
    margin-left: 10px;
    font-size: 16px;
    color: #414141;
}

.course-container {
    border-radius: 16px;
    box-shadow: 1px 0px 5px 3px #e6e6e6;
    cursor: pointer;
}

.course-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--secondary);
    opacity: 0;
    transition: 0.4s;
}

.course-container:hover .overlay {
    opacity: 0.9;
    transition: 0.4s;
    border-radius: 16px;
}

.course-container:hover .non-hover {
    display: none;
}

.course-container .hover {
    display: none;
}

.course-container:hover .hover {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
}

.course-container:hover .hover img {
    height: 390px;
}

.course-description {
    font-size: 16px;
    line-height: 25px;
    color:var(--primary);
}

.blog-title {
    font-size: 1.4rem;
}

.blog-description {
    font-size: 16px;
    line-height: 25px;
}

.blog-time {
    background-color: var(--secondary);
    padding: 10px 12px;
    border-radius: 0px 0px 30px 0px;
    text-align: center;
    display: inline-block;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin-left: -300px;
    margin-top: -30px;
}

.target {
    border-radius: 0px 0px 30px 0px;
    margin-bottom: 10px;
}

.target p {
    font-size: 14px;
    line-height: 25px;
}

.brochure .logo {
    height: 60px;
}

footer {
    background-color: #1F2128;
}

footer a {
    text-decoration: none;
    color: #898686 !important;
    transition: 0.2s;
}

footer a:hover {
    color: white !important;
    transition: 0.2s;
}

.contact-icon {
    /*height: 80px;*/
    /*width: auto;*/
}

.copyright {
    background-color: #16181E;
    display: flex;
    justify-content: center;
}

.btn-icon {
    height: 25px;
    margin-right: 5px;
}

.contact {
    background-color: var(--primary);
    height: 100%;
    margin-top: -170px;
}

.contact .row {
    margin-top: 160px;
}

.swiper {
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 70px;
    padding-right: 70px;
    /* padding-top: 50px; */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

.swiper-pagination-bullet {
    background-color: #FFFFFF;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: #FFFFFF;
    right: 10px;
    padding: 21px;
    border-radius: 100%;
    color: black !important;
    font-weight: bolder;
    fill: black !important;
    stroke: black !important;
    border: 1px solid black;
    transition: 0.4s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    box-shadow: 0px 0px 20px 0px white;
    transition: 0.4s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: bolder;
}

.partner-wrapper {
    width: 100%;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.partner-track {
    display: flex;
    width: 100%;
    animation: scroll 8s linear infinite alternate;
}

.partner {
    height: 76px;
    width: 220px;
    display: flex;
    align-items: center;
}

.partner img {
    display: flex;
    align-items: center;
    width:80px;
}

.gallary {
    cursor: pointer;
}

.noticeSwiper {
    background-color: #E3E3E3;
}

.noticeSwiper .swiper-slide {
    background-color:var(--primary);
    padding-left: 0px;
    padding-right: 0px;
}

.notice-container {
    background-color: #E3E3E3;
}

.notice {
    background-color: var(--primary);
    color: white;
    /* border-radius: 0px 15px 15px 0px; */
    font-family: 'Poppins', sans-serif;
}

.notice-container p {
    font-size: 14px;
    text-align: left;
    color:white;
    line-height: 1.5rem!important;
}

.notice-container a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.notice-time {
    border-right: 1px solid black;
    margin-top: 5px;
}

.notice-time span {
    color: var(--secondary);
    padding: 10px 12px;
    text-align: center;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.testimonial {
    background-image: url('images/bg-3.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.testimonial-feedback {
    height: 300px;
}

.testimonial-avatar {
    height: 100px;
    width: 120px;
}

.aboutus-section-title-container {
    text-align: center;
}

.courses-title {
    text-align: start;
}

.counter h2 {
    font-size: 2.5rem;
}

.counter h6 {
    font-size: 22px;
    color:var(--primary);
}

.brochure .title {
    font-size: 2rem;

}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100px * 13));
    }
}

/* Small evices (landscape phones, 576px and up) */

@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */

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

/* Medium devices (tablets, 768px and up) */

@media (max-width: 768px) {
    .mr-section {
        padding: 30px 15px;
    }
    .section-title {
        text-align: center;
    }
    .banner .title {
        font-size: 2rem;
    }
    .banner .sub-title {
        font-size: 16px;
        line-height: 35px;
    }
    .title {
        text-align: center;
        font-size: 1.5rem;
    }

    .title1 {
        text-align: center;
        font-size: 1.5rem;
    }
    .aboutus-section-title-container {
        text-align: center;
    }
    .courses-title {
        text-align: center;
    }
    p {
        text-align: center;
        text-align: justify;
    }
    .banner {
        padding-top: 100px;
        padding-bottom: 50px;
        background-image: url('../image/banner.jpeg');
        background-position: right;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .book {
        text-align: center;
    }
    .mr-button {
        width: 100%;
    }
    .contact p {
        text-align: center;
    }
    label {
        font-size: 16px;
    }
    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: var(--primary);
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 10px;
        padding-right: 10px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        margin-top: -45px;
        display: none;
    }
    .noticeSwiper .swiper-button-next {
        margin-top: 10px;
    }
    .noticeSwiper .swiper-button-prev {
        margin-top: 10px;
    }
    .notice {
        border-radius: 0px 0px 0px 0px;
    }
    .notice-container p {
        line-height: 25px;
    }
    .testimonial-feedback {
        height: 150px;
    }
    .counter h2 {
        font-size: 1.5rem;
    }
    .counter h6 {
        font-size: 15px;
    }
    .brochure .title {
        font-size: 1.5rem;
    }
    .btn-contact {
        display: none;
    }
    .blog-time {
        background-color: var(--secondary);
        padding: 10px 12px;
        border-radius: 0px 0px 30px 0px;
        text-align: center;
        display: inline-block;
        color: white;
        font-family: 'Poppins', sans-serif;
        margin-left: -250px;
        margin-top: -30px;
    }
}

/* Large devices (desktops, 992px and up) */

@media (min-width: 992px) {}

/* X-Large devices (large desktops, 1200px and up) */

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

/* XX-Large devices (larger desktops, 1400px and up) */

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

.nav-item p{
    color:white;
    margin: 10px;
}

.social-nav a {
    color: white!important;
    margin-left: 6px;
    font-size: 14px;
    border: solid 1px white!important;
    padding: 4px 0px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 10px;
    text-align: center;
    line-height: 22px;
}

.social-icon a {
    color: white !important;
    margin-left: 6px;
    font-size: 14px;
    border: solid 1px white !important;
    padding: 4px 0px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 5px;
    text-align: center;
    line-height: 22px;
}

.social-nav a:hover{
    color:var(--secondary);
}

.notice1{
    margin-top: -50px;
}


.navbar-dark .navbar-toggler-icon {
    background-image: url(../image/menu.png)!important;
}


#main-div {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 500;
  }
  
  #main-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 50px;
    width: 50px;
    font-size: 20px;
    color: #0064f3;
    cursor: pointer;
    /* background-color: #fff; */
    /* box-shadow: 0 0 10px 0 rgba(0,0,0,.5); */
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  
  #main-button ~ button {
    visibility: hidden;
    font-weight: 600;
    height: 50px;
    padding: 0 20px;
    color: #fff;
    background: linear-gradient(90deg, #00a1f5, #0064f3);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
    border: 0;
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    opacity: 0;
    white-space: nowrap;
    cursor: pointer;
    transition: .2s all linear;
    -webkit-transition: .2s all linear;
    -moz-transition: .2s all linear;
    -ms-transition: .2s all linear;
    -o-transition: .2s all linear;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  
  #main-button.open ~ button {
    visibility: visible;
    right: 70px;
    opacity: 1;
    transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  }
  
  #main-button ~ a {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 50px;
    width: 50px;
    font-size: 20px;
    opacity: 0;
    text-decoration: none;
    color: #fff;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: .2s all linear;
    -webkit-transition: .2s all linear;
    -moz-transition: .2s all linear;
    -ms-transition: .2s all linear;
    -o-transition: .2s all linear;
  }
  
  #main-button ~ .telegram-color {
    background: linear-gradient(0deg, #017AB1, #01ABE6);
  }
  
  #main-button ~ .whatsapp-color {
    background: linear-gradient(0deg, #00B100, #09db09);
  }
  
  #main-button ~ .messenger-color {
    background: linear-gradient(0deg, #0078FF, #00C6FF);
  }
  
  #main-button.open ~ a {
    opacity: 1;
    transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  }
  #main-button.open ~ a:nth-of-type(1) {
    bottom: 60px;
  }
  #main-button.open ~ a:nth-of-type(2) {
    bottom: 120px;
  }
  #main-button.open ~ a:nth-of-type(3) {
    bottom: 180px;
  }
  
  /* .wave {
    animation-name: wave;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  } */
  
  @keyframes wave {
    0% {box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);}
    100% {box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);}
  }
/*   
  .open {
    animation-iteration-count: 1;
  } */

  .copyright a {
    color: white;
}

.gallery-slider{
padding-top: 50px;
}

.head p {
    font-size: 30px;
    color: #0e2a59;
    font-weight: 700;
    text-align: left;
}

@media only screen and (max-width: 786px){
    .head p {
        font-size: 20px;
        color: #0e2a59;
        font-weight: 700;
        text-align: start;
        width: 180px;
        line-height: 1.85rem;
        margin-bottom: 0px;
        margin-right: 25px;
    }

    .navbar-brand{
        margin-right: 0px!important;
    }
}


.subheader {
    position: relative;
    background-image: url(../image/banner.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    height: 350px;
    padding-top: 180px;
    overflow: hidden; /* Ensure overlay doesn't spill out */
}

.subheader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgb(0 0 0 / 55%);
    z-index: 1; 
}


.text-custom-white {
    color: white; /* Adjust text color as needed */
}

ul.custom-flex {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.subheader ul li a:after {
    content: '/';
    color: #fff;
    font-size: 14px;
    margin: 0 5px;
}

ul.custom-flex li{
    color:white;
}

.normal-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: border 0.3s ease-in, box-shadow 0.3s ease-in, background 0.3s, opacity 0.3s ease-in;
}

.subheader h1 {
    line-height: 1;
}

.subheader .container {
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    display: inline-block;
}

.about-image {
    margin-top: 30px;
    border: 10px solid;
    border-image: linear-gradient(45deg, var(--secondary), white) 1;
    /* padding: 10px; */
    /* border: 10px solid white; */
}

.about {
    margin-top:100px;
    margin-bottom: 100px;
}

.about-p{
    margin: 20px;
}

.chairman{
    margin-top: 70px;
    margin-bottom: 50px;
}

.coming-soon-img img{
    width:100%;
    height: 100%;
    text-align: center;
}

.coming-soon{
    margin-top:100px;
    margin-bottom: 100px;
}



/* contact form */

.contact-area1 .container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    /* background-color: #fafafa; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-area1 .form {
    width: 100%;
    max-width: 820px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-area1 .contact-form {
    background-color:  #fff9f9;
    position: relative;
  }
  
  .contact-area1 .circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%,var(--primary));
    position: absolute;
  }
  
  .contact-area1 .circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
  }
  
  .contact-area1 .circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
  }
  
  .contact-area1 .contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color:  #fff9f9;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
  }
  
  .contact-area1 form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
  }
  
  .contact-area1 .title {
    color:black;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
  }
  
  .contact-area1 .input-container {
    position: relative;
    margin: 1rem 0;
  }
  
  .contact-area1 .input {
    width: 100%;
    outline: none;
    border: 2px solid #051142;
    background: none;
    padding: 0.6rem 1.2rem;
    color:black;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .contact-area1 textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
  }
  
  .contact-area1 .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(100%);
    padding: 0 0.4rem;
    color: black;
    font-size: 0.7rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
  }
  
  .contact-area1 .input-container.textarea label {
    top: 2rem;
    transform: translateY(0);
  }
  
  .contact-area1 .btn {
    padding: 0.6rem 1.3rem;
    background-color: var(--primary);
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: white;
    line-height: 1;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    width: 100%;
  }
  
  .contact-area1 .btn:hover {
    background-color: transparent;
    color: #400707;
    font-weight: 600;
  }
  
  .contact-area1 .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
  }
  
  .contact-area1 .input-container span:before,
  .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #fff9f9;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .contact-area1 .input-container span:before {
    left: 50%;
  }
  
  .contact-area1 .input-container span:after {
    right: 50%;
  }
  
  .contact-area1 .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
  }
  
  .contact-area1 .input-container.focus span:before,
  .input-container.focus span:after {
    width: 50%;
    opacity: 1;
  }
  
  .contact-area1 .contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
  }
  
  .contact-area1 .contact-info .title {
    color:var(--secondary-color);
  }
  
  .contact-area1 .text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
    text-align: justify;
  }
  
  .contact-area1 .information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
  }
  
  .contact-area1 .information i {
    color: var(--secondary-color);
  }
  
  .contact-area1 .icon {
    width: 28px;
    margin-right: 0.7rem;
  }
  
  .contact-area1 .social-media {
    padding: 2rem 0 0 0;
  }
  
  .contact-area1 .social-media p {
    color: #333;
  }
  
  .contact-area1 .social-icons {
    display: flex;
    margin-top: 0.5rem;
  }
  
  .contact-area1 .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #b62117, #e7b0ac);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
  }
  
  .contact-area1 .social-icons a:hover {
    transform: scale(1.05);
  }
  
  .contact-area1 .contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #333d7b ;
    border-radius: 50%;
    bottom: -50px;
    right: 50px;
    opacity: 0.3;
  }
  
  .contact-area1 .big-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 100%;
    background: linear-gradient(to bottom,var(--primary), #eeebeb);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
  }
  
  .contact-area1 .big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
  }
  
  .contact-area1 .square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
  }
  
  @media (max-width: 850px) {
    .contact-area1 .form {
      grid-template-columns: 1fr;
    }
  
    .contact-area1 .contact-info:before {
      bottom: initial;
      top: -75px;
      right: 65px;
      transform: scale(0.95);
    }
  
    .contact-area1 .contact-form:before {
      top: -13px;
      left: initial;
      right: 70px;
    }
  
    .contact-area1 .square {
      transform: translate(140%, 43%);
      height: 350px;
    }
  
    .contact-area1 .big-circle {
      bottom: 75%;
      transform: scale(0.9) translate(-40%, 30%);
      right: 50%;
    }
  
    .contact-area1 .text {
      margin: 1rem 0 1.5rem 0;
    }
  
    .contact-area1 .social-media {
      padding: 1.5rem 0 0 0;
    }
  }
  
  @media (max-width: 480px) {
    .contact-area1 .container {
      padding: 1.5rem;
    }
  
    .contact-area1 .contact-info:before {
      display: none;
    }
  
    .contact-area1 .square,
    .big-circle {
      display: none;
    }
  
    .contact-area1 form,
    .contact-info {
      padding: 1.7rem 1.6rem;
    }
  
    .contact-area1 .text,
    .information,
    .social-media p {
      font-size: 0.8rem;
    }
  
    .contact-area1 .title {
      font-size: 1.15rem;
    }
  
    .contact-area1 .social-icons a {
      width: 30px;
      height: 30px;
      line-height: 30px;
    }
  
    .contact-area1 .icon {
      width: 23px;
    }
  
    .contact-area1 .input {
      padding: 0.45rem 1.2rem;
    }
  
    .contact-area1 .btn {
      padding: 0.45rem 1.2rem;
    }
  }


  #course{
    margin-top:50px;
    margin-bottom: 100px;
  }


  @media only screen and (max-width: 786px){
    .about {
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .about-p {
        margin: auto;
    }

    .course-logo{
        width: 30%;
    }

    #course {
        margin-top: 20px;
        margin-bottom: 50px;
    }
    .coming-soon {
        margin-top: 150px;
        margin-bottom: 100px;
    }

    .mr-img-2 {
        width: 100%;
        margin-top: 0px;
  }

  }
   .pr-ul li {
    display: flex;
    margin-bottom: 15px;
    float: left;
    width: 50%;
    align-items: center;
}

 .pr-ul .icon i {
    width: 40px;
    height: 40px;
    background: no-repeat padding-box var(--primary);
    border: 2px solid #eee;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 20px;
    color: white;
}


/* course section */



.subs-title {
	font-size: 18px;
	font-weight: 700;
	color: #392C7D;
	margin-bottom: 20px;
}
.course-sec p {
	font-size: 14px;
}
.overview-sec h6 {
	font-weight: 600;
	font-size: 16px;
	color: var(--primary);
	margin-bottom: 20px;
}
.overview-sec ul {
	padding-left: 20px;
	margin: 0 0 20px;
}
.overview-sec ul li {
	font-size: 14px;
	margin-bottom: 6px;
}
.overview-sec-body {
	padding-bottom: 24px;
}
.instructor-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-flex-pack: space-between;
	align-items: center;
	border-bottom: 1px solid #C7C7C7;
	margin-bottom: 15px;
	flex-wrap: wrap;
}
.about-instructor {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 15px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.abt-instructor-img {
	margin-right: 10px;
}
.abt-instructor-img img {
	width: 50px;
	height: 50px;
	border: 1px solid #E3E3E3;
	border-radius: 50%;
}
.instructor-wrap .rating {
	width: unset;
	margin-bottom: 15px;
	font-size: 14px;
}
.instructor-detail h6,
.instructor-detail h5 {
    font-weight: 600;
    font-size: 18px;
	margin-bottom: 5px;
}
.instructor-detail p {
    font-size: 13px;
	color: #22100D;
	margin-bottom: 0;
}
.course-info {
	border-bottom: 1px solid #C7C7C7;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.cou-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	margin-right: 15px;
}
.cou-info p {
	font-size: 16px;
	font-weight: 500;
}
.instructor-sec ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.instructor-sec ul li {
	font-size: 14px;
}
.rev-info {
	font-style: italic;
}
.btn-reply {
	background: #FFFFFF;
    border: 1px solid #392C7D;
    border-radius: 50px;
    padding: 6px 22px;
    font-weight: 500;
    font-size: 14px;
    color: #392C7D;
}
.btn-reply:hover {
	background: #392C7D;
	color: #FFF;
}
.comment-sec .form-control {
	background: rgba(229, 229, 229, 0.42);
}
.submit-btn {
	font-weight: 500;
	color: #392C7D;
	border-radius: 50px;
	padding: 9px 15px;
	min-width: 150px;
	border: 4px solid transparent;
	background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(white, white), linear-gradient(to right, rgba(180, 167, 245, 1), rgba(57, 44, 125, 1));
}
.submit-btn:hover {
	background: #392C7D;
	color: #FFF;
}
.cou-title a {
	background: rgba(161, 196, 253, 0.12);
	border-radius: 5px;
	padding: 15px;
	font-weight: 600;
	font-size: 14px;
	color: #0B0B0B;
	position: relative;
	display: block;
	font-weight: 600;
	font-size: 14px;
	padding-right: 60px;
}
.cou-title > a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
    right: 15px;
    color: #000;
}
.cou-title > a:not(.collapsed):after {
    content: "\f077";
}
.course-card ul {
	margin: 0;
	padding: 0;
}
.course-card ul li {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #C7C7C7;
	padding: 15px 0;
}
.course-card ul li:last-child {
	border: 0;
}
.course-card ul li p {
	font-size: 14px;
	margin-bottom: 0;
}
.course-card ul li a {
	font-size: 14px;
	text-decoration: underline;
}
.course-card ul li span {
	font-size: 14px;
	margin-left: 30px;
}
.video-sec img {
	width: 100%;
}
.video-thumbnail {
	position: relative;
}
.play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	background: rgb(1 1 1 / 40%);
	width: 90px;
	height: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	color: #FFF;
}
.play-icon i {
	font-size: 50px;
    padding-left: 8px;
}
.course-fee {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-flex-pack: center;
	flex-wrap: wrap;
}
.inner-banner {
	padding: 45px 0;
	background: url("../img/inner-banner.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.inner-banner:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.76);
}
.inner-banner .container {
	position: relative;
}
.inner-banner p, .inner-banner h5, .inner-banner h2, .inner-banner .average-rating {
	color: #FFF;
}
.inner-banner h2 {
	font-size: 30px;
	margin-bottom: 15px;
}
.inner-banner p {
	font-size: 14px;
}
.web-badge {
	background: #FFB54A;
	border-radius: 50px;
	padding: 6px 15px;
	font-weight: 500;
	font-size: 14px;
	color: #FFF;
}
.web-badge:hover {
	background: #e19b36;
}
.sidebar-sec {
	margin-top: -305px;
}
.course-sec .card {
	z-index: 2;
}
.vid-bg {
	position: relative;
	z-index: 1;
    margin-top: 310px;
}
.video-details {
	margin-top: 25px;
}
.video-details h2 {
	font-weight: 700;
	font-size: 30px;
	color: #159F46;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 12px;
}
.video-details p {
	font-size: 14px;
	color: #777777;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 12px;
}
.video-details p span {
	text-decoration: line-through;
}
.btn-enroll {
	background: #159F46;
	border: 1px solid #159F46;
	border-radius: 50px;
	font-weight: 500;
	font-size: 14px;
	color: #FFF;
	padding: 13px 20px;
}
.btn-enroll:hover {
	color: #FFF;
	background: #0c993e;
}
.btn-wish {
	background: #FFFFFF;
	border: 1px solid #F66962;
	border-radius: 50px;
	padding: 10px;
	color: #F66962;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 15px;
}
.btn-wish:hover {
	background: #F66962;
	color: #FFF;
}
.include-sec ul, .feature-sec ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.include-sec ul li {
	font-size: 14px;
	margin-bottom: 15px;
}
.include-sec ul li:last-child, .feature-sec ul li:last-child {
	margin-bottom: 0;
}
.feature-sec ul li {
	font-size: 14px;
	padding: 10px 0;
	color: #39393B;
	border-bottom: 1px solid #e7e7e7;
}
.feature-sec ul li span {
	font-weight: 700;
}
.feature-sec ul li:last-child {
	border: 0;
	padding-bottom: 0;
}
.com-info {
	display: flex;
}
.com-info h2 {
	font-size: 30px;
	color: #000;
	margin-bottom: 15px;
}
.complete-sec .video-thumbnail {
	max-width: 350px;
	margin-left: 15px;
}
.no-video .card {
	background: #FFF;
}
.no-video .video-details {
	margin: 0;
}
.btn-cart {
	background: #F66962;
	border: 1px solid #F66962;
	border-radius: 50px;
	font-weight: 500;
	font-size: 14px;
	color: #FFF;
	padding: 13px 20px;
}
.btn-cart:hover {
	color: #FFF;
	background: #f4554e;
}
.overflow-links {
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
}
.overflow-links li {	
	display: inline-block;
}
.overflow-links li a {
	border: 1px solid #392C7D;
	border-radius: 50px;
	min-width: 150px;
	padding: 8px 10px;
	font-weight: 500;
	font-size: 16px;
	color: #392C7D;
	display: inline-block;
	margin-bottom: 15px;
    text-align: center;
}
.overflow-links li a:hover, .overflow-links li a.active {
	background: #9C8FDB;
	color: #FFF;	
	border: 4px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(#9C8FDB, #9C8FDB), linear-gradient(to bottom, rgba(180, 167, 245, 1), rgba(57, 44, 125, 1));	
}
#Overview, #Course_Content, #Instructor, #Reviews  {
	scroll-margin-top: 80px;
}
.complete-sec .cou-info p {
	color: #000;
}
.br-1 {
	border-right: 1px solid rgb(199 199 199 / 25%);
}
.bb-1 {
	border-bottom: 1px solid rgb(199 199 199 / 25%);
}
.com-course .feature-sec ul li {
	border-bottom: 0;
	padding: 0 0 15px;
}
.com-course .feature-sec ul li:last-child {
	padding: 0;
}
.complete-sec h2 {
	 font-size: 30px;
	 margin-bottom: 15px;
}
.course-sec .course-info, .inner-banner .course-info,
.instructor-wrap .about-instructor {
	flex-wrap: wrap;
}
.course-sec .card {
	border-radius: 10px;
    color: black;
}
.page-content {
	background: #fafafa;
	padding: 60px 0 60px;
}
.instructor-page-content {
	padding: 60px 0 30px;
}
.cat-title {
	margin-bottom: 15px;	
}
.cat-title h4 {
	font-size: 18px;
	font-weight: 700;
	color: #0B0B0B;
	margin-bottom: 0px;
	display: inline-block;
}
.cat-title span {
	float: right;
	margin-bottom: 15px;
}

.include-sec{
    margin-top: 20px;
}

/* table  */

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
th {
    background-color: #f2f2f2;
}
caption {
    font-weight: bold;
    margin-bottom: 10px;
}

.about1{
    margin-top: 50px;
    margin-bottom: 10px;
}

.page-content h3{
    color:var(--primary);
}


/* gallery */


/* gallery start */
@keyframes zoomin {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  .gallery-item {
    display: contents;
  }
  .bi,
  .image-container {
    display: inline-block;
  }
  .gallery-item img {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s;
    padding: 15px;
  
  }
  .gallery-item:hover img {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
  }
  .lightbox-modal .modal-content {
    background-color: var(--lightbox);
  }
  .lightbox-modal .btn-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.25rem;
    z-index: 10;
    filter: invert(1) grayscale(100);
  }
  .lightbox-modal .modal-body {
    display: flex;
    align-items: center;
    padding: 0;
  }
  .lightbox-modal .lightbox-content {
    width: 100%;
  }
  .lightbox-modal .carousel-indicators {
    margin-bottom: 0;
  }
  .lightbox-modal .carousel-indicators [data-bs-target] {
    background-color: var(--carousel-text) !important;
  }
  .lightbox-modal .carousel-inner {
    width: 75%;
  }
  .lightbox-modal .carousel-inner img {
    animation: 10s linear infinite zoomin;
  }
  .lightbox-modal .carousel-item .carousel-caption {
    right: 0;
    bottom: 0;
    left: 0;
    padding-bottom: 2rem;
    background-color: var(--lightbox);
    color: var(--carousel-text) !important;
  }
  .lightbox-modal .carousel-control-next,
  .lightbox-modal .carousel-control-prev {
    width: auto;
  }
  .lightbox-modal .carousel-control-prev {
    left: 1.25rem;
  }
  .lightbox-modal .carousel-control-next {
    right: 1.25rem;
  }
  @media (min-width: 1400px) {
    .lightbox-modal .carousel-inner {
      max-width: 60%;
    }
  }
  [data-bs-theme="dark"] .lightbox-modal .carousel-control-next-icon,
  [data-bs-theme="dark"] .lightbox-modal .carousel-control-prev-icon {
    filter: none;
  }
  .btn-fullscreen-enlarge,
  .btn-fullscreen-exit {
    position: absolute;
    top: 1.25rem;
    right: 3.5rem;
    z-index: 10;
    border: 0;
    background: 0 0;
    opacity: 0.6;
    font-size: 1.25rem;
  }
  .bi {
    width: 1em;
    height: 1em;
    vertical-align: -0.035em;
    fill: currentcolor;
  }
  .photo-gallery {
    margin-top: 40px;
    margin-bottom: 80px;
  }
