:root {
    --bg-color: #effaff;
    --bg-color2: rgb(216, 216, 216);
    --theme-color: rgb(25, 135, 84);
    --primary-color: rgb(214, 143, 3);
    --white-color: #fff;
    --black-color: #000;
    --color-gradient: linear-gradient(45deg, #4C4FF8 13.72%, #FF6354 100%);
    --marquee-width: 80vw;
    --marquee-height: 20vh;
    --marquee-elements-displayed: 7;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

body {
    font-family: "Poppins", serif;
    font-size: 16px;
    line-height: 22px;
}

a {
    text-decoration: none;
    color: inherit;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.bg-primary {
    background-color: #132d8e !important;
}

.text-primary {
    color: #132d8e !important;
}

.title span {
    position: relative;
    color: var(--theme-color);
    padding-bottom: 0.5rem;
    background: url(../images/divider.svg) no-repeat;
    background-position: center bottom;
}

.bg-gray {
    background-color: #f1f1f1;
}

.btnMan {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    /* border: 2px solid var(--primary-color); */
    transition: color 0.5s;
    z-index: 1;
    border-radius: 3rem;
    font-weight: 500;
    color: var(--white-color);
    background: var(--primary-color);
}

.btnMan:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #000;
    height: 150px;
    width: 250px;
    border-radius: 50%;
}

.btnMan:hover {
    color: #fff;
}

.btnMan:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.btnMan:hover:before {
    top: -30px;
    left: -30px;
}

.btnMan:active:before {
    background: var(--theme-color);
    transition: background 0s;
}

.btnMan2 {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    /* border: 2px solid var(--primary-color); */
    transition: color 0.5s;
    z-index: 1;
    border-radius: 3rem;
    font-weight: 500;
    color: var(--white-color);
    background: var(--theme-color);
}

.btnMan2:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #000;
    height: 150px;
    width: 250px;
    border-radius: 50%;
}

.btnMan2:hover {
    color: #fff;
}

.btnMan2:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.btnMan2:hover:before {
    top: -30px;
    left: -30px;
}

.btnMan2:active:before {
    background: var(--primary-color);
    transition: background 0s;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.slick-slide {
    margin: 0 1rem;
}

.slick-prev,
.slick-next {
    background-color: var(--theme-color);
    border-radius: 100%;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background-color: var(--black-color);
}
.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}
/* ================================ 
  Navbar Section
  ===================================*/
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar .navbar-brand>img {
    height: 45px;
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    .navbar .dropdown-menu-end a i {
        background-color: var(--bs-gray-500);
        font-size: 0.6rem;
        min-width: 1.1rem;
        height: 1.1rem;
        line-height: 1.1rem;
        border-radius: var(--bs-border-radius-xl);
        text-align: center;
        margin-right: 0.5rem;
    }

    .navbar .dropdown-menu-end a:hover i {
        background-color: var(--bs-link-hover-color);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        /* transform: translateY(20px); */
        transition: all .3s ease-in;
        visibility: hidden;
        /* min-height: 50vh; */
        box-shadow: 0 5px 20px rgba(197, 208, 216, 0.15);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 8px;
        border: 0;
        min-width: 16rem;
        border-radius: 0;
        box-shadow: 0 5px 20px rgba(15, 39, 125, 0.4);
    }

    .dropdown-toggle::after {
        position: absolute;
        top: 46%;
    }

    .navbar .nav-link {
        padding: 10px 20px !important;
        text-decoration: none;
        color: var(--white-color);
        font-weight: 500;
        letter-spacing: 1px;
        /*text-transform: uppercase;*/
    }

    .navbar .nav-item:hover .nav-link {
        color: var(--primary-color);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -52px;
        box-shadow: 0 10px 10px rgba(15, 39, 125, 0.14);
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: #101010;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1.5rem;
        text-decoration: none;
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--theme-color);
        background: var(--bg-light);
    }
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

.scroll-on .nav-link {
    color: #121212;
}

.navbar .navbar-toggler i {
    color: var(--black-color);
}

.scroll-on .navbar-toggler i {
    color: #121212;
}


/* Banner Panel */
/* ======================================== */
.hero-section {
    position: relative;
    /* min-height: 700px; */
    height: 100%;
    overflow: hidden;
}

.hero-section:before {
    width: 75%;
    height: 100%;
    background: linear-gradient(270deg, rgba(33, 36, 49, 0) 0%, rgba(33, 36, 49, 1) 100%);
    opacity: 1;
    left: 0;
    top: 0;
    content: '';
    position: absolute;
    z-index: 1;
}

.heroImgSection {
    margin: 0;
    position: absolute;
    width: 100vw;
    left: 50%;
    top: 0;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    height: auto;
}

.heroImgSection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.heroContent {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 200px;
}

.heroContent h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
}

.heroContent p {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2rem;
}

.homeEnquiry {
    /* background: var(--primary-color); */
    background-color: rgba(30, 31, 29, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    color: var(--bg-color2);
    font-weight: 300;
    margin-top: 100px;
}

.homeEnquiry label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

.homeEnquiry input,
.homeEnquiry select {
    width: 100%;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    border: 1px solid #667958;
    border-radius: 0.5rem;
    outline: none;
    background: transparent;
    color: var(--bg-color);
}

.homeEnquiry input::placeholder,
.homeEnquiry select::placeholder {
    color: #667958;
}

.homeEnquiry select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23fff" d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.homeEnquiry select option {
    background-color: #ffffff;
    /* White background */
    color: #000000;
    /* Black text */
}

.homeEnquiry small {
    font-size: 0.7rem;
    line-height: 1;
}

.dottedhr {
    border: 1px dashed #ddd;
}

.bg-warning-soft {
    background-color: rgba(248, 184, 31, 0.1);
}

.bg-danger-soft {
    background-color: rgba(238, 74, 98, 0.1);
}

.bg-success-soft {
    background-color: rgba(26, 182, 157, 0.1);
}

/* Couses Panel */
.coursePanel {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

.coursePanel::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 50%;
    width: 100%;
    background: var(--bg-gray);
    z-index: -1;
}

.courses-items .thumb {
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* margin: 0.75rem; */
    display: block;
}

.courses-items .thumb img {
    max-width: none;
    width: -webkit-calc(100% + 60px);
    width: calc(100% + 60px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
}

.courses-items .item:hover .thumb img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.courses-items .thumb::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 50%;
    width: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) repeat scroll 0 0;
    z-index: 1;
}

.courses-items .thumb .content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: var(--white-color);
    z-index: 1;
}

.courses-items .thumb .content h5 {
    margin-bottom: 0.5rem;
}

.courses-items .thumb .content h5 {
    color: var(--white-color);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 1.15rem;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.courses-items .thumb .content small {
    font-weight: 400;
    letter-spacing: 1px;
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.courses-items .single-item:nth-child(2n) .thumb .content {
    top: 0;
}

.courses-items .single-item:nth-child(2n) .thumb::before {
    top: 0;
    bottom: auto;
    background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 130%) repeat scroll 0 0;
}

/* .facilities{
    background: url(../images/facilities-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    min-height: 200px;
} */
.ctaOption {
    background: url(../images/cta-bg.webp) no-repeat center center;
    background-size: cover;
    padding: 100px 0 0;
    position: relative;
    margin-bottom: 50px;
    /* min-height: 200px; */
}

.ctaOption:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 50px;
    background-color: var(--white-color);
    left: 0;
    bottom: 0;
}

.ctaOptionBox {
    background: var(--theme-color);
    padding: 2rem;
    position: relative;
    min-height: 100px;
    border-radius: 1.5rem;
    color: var(--white-color);
}

.service {
    background: url('../images/facilities-bg.webp') no-repeat center;
    background-size: cover;
    width: 100%;
    padding: 50px 0 70px;
}

.service .inner-contain {
    background-color: var(--white-color);
    box-shadow: 4px 4px 0 0 #357F00;
    padding: 20px;
    border-radius: 15px;
}

.service .inner-contain .img-fluid {
    min-height: 205px;
}

.service .inner-contain h4 {
    font-size: 20px;
    color: #f00;
    font-weight: 600;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service .inner-contain p {
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    color: #353535;
}

.service .inner-contain a {
    display: flex;
    color: var(--theme-color);
    font-weight: 600;
    display: inline-block;
}

.service .inner-contain a i {
    margin-left: 5px;
    transition: all 0.25s ease-in-out;
}

.service .inner-contain a:hover i {
    padding-left: 5px;
}

.associate .inner-contain {
    background-color: var(--white-color);
    box-shadow: 4px 4px 10px 0 rgba(175, 175, 175, 0.2);
    min-width: 240px;
    max-width: 100%;
    margin: 10px 0;
    height: 100px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    border: 1px solid #f0f0f0;
}

.associate .inner-contain img {
    height: 55px;
}

.avatorBox-50 {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border: 1px solid var(--theme-color);
}

.testimonial-slider p {
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.testimonial-slider a {
    font-size: 0.8rem;
    font-weight: 500;
    color: #888;
}

.offer ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.offer ul li {
    width: calc(50% - 30px);
    padding-left: 30px;
    margin: 0.35rem 0;
    position: relative;
    color: var(--white-color);
}

.offer ul li:before {
    position: absolute;
    content: '\EA6B';
    font-family: "remixicon";
    font-size: 1rem;
    color: var(--primary-color);
    left: 0;
    top: 0;
}

/* Footer */
footer {
    position: relative;
    background: var(--theme-color);
    min-height: 60px;
    font-size: 0.9rem;
    text-align: center;
    color: var(--white-color);
}

footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 1rem 0;
}

footer li {
    margin: 0 0.75rem;
}

footer li:first-child {
    display: block;
}

@media(max-width:991px){
    .navbar{
        background: var(--white-color);
        text-align: center;
    }
}


@media(max-width:480px) {
    .btnMan {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .navbar .navbar-brand>img {
        height: 40px;
    }

    .heroContent {
        padding-top: 100px;
        text-align: center;
    }

    .heroContent h1 {
        font-size: 2rem;
    }

    .homeEnquiry {
        margin-top: 0;
    }

    .dottedhr {
        margin: 1rem 0;
    }

    .offer ul li {
        width: 100%;
    }

    .ctaOption {
        padding-top: 150px;
    }

    .ctaOption:before {
        height: 100px;
    }
}