@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bs-primary: #0b8242;
    --bs-secondary: #dd1111;
    --bs-secondary: #000000;
    --bs-light: #f1f2f4;
    --bs-dark: #000000;
    --bs-heading-color: #272d47;
    --bs-darker: #1a1c33;
    --bs-success: #0abb75;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: #3F4254;
    /* background-color: var(--bs-light); */
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    height: revert-layer;
    display: inline-block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    border-color: transparent;
    box-shadow: none;
}

.btn-check:checked+.btn:focus-visible,
.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check)+.btn:active:focus-visible {
    box-shadow: none;
}

.btn {
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 0.45rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.5px;
}

.btn-sm {
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 13px;
}

.btn-xs {
    border-radius: 2px;
    padding: 5px 8px;
    font-size: 12px;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

.btn-primary:hover {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: var(--bs-white);
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-gradient: none;
}

.btn-secondary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.btn-check:checked+.btn.btn-secondary,
.btn.btn-secondary.active,
.btn.btn-secondary.show,
.btn.btn-secondary:first-child:active,
:not(.btn-check)+.btn.btn-secondary:active,
.btn-secondary:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-light {
    background-color: var(--bs-light) !important;
}

.text-xs {
    font-size: 12px;
}

.text-sm {
    font-size: 14px;
}

.text-base {
    font-size: 16px;
}

.text-md {
    font-size: 18px;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.form-control:focus {
    color: var(--bs-gray-700);
    background-color: var(--bs-body-bg);
    border-color: #eee;
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--bs-gray-500);
    font-size: 0.85rem
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.slick-arrow {
    background-color: var(--bs-white);
    color: var(--bs-dark) !important;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    font-size: 1rem;
    line-height: 1;
    position: absolute;
    left: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E1E7EA;
}

.owl-carousel .owl-nav button.owl-next,
.slick-arrow.slick-next {
    left: auto;
    right: -0.6rem;
}

.owl-carousel .owl-nav button.owl-prev:active,
.owl-carousel .owl-nav button.owl-prev:focus,
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:active,
.owl-carousel .owl-nav button.owl-next:focus,
.owl-carousel .owl-nav button.owl-next:hover,
.slick-arrow:active,
.slick-arrow:focus,
.slick-arrow:hover {
    background-color: var(--bs-white) !important;
    color: var(--bs-primary) !important;
    border-color: #E1E7EA;
}

.owl-nav button svg,
.slick-arrow svg {
    height: 9px;
    width: auto;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: -1.5rem;
    width: 100%;
}

.slick-dots li {
    display: inline-flex;
}

.slick-dots button {
    font-size: 0;
    border: none;
    width: 10px;
    height: 10px;
    background-color: var(--bs-gray-300);
    border-radius: 50%;
    margin: 0 4px;
    padding: 0;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.slick-dots li.slick-active button {
    background-color: var(--bs-primary);
}

.slick-dots button:hover {
    background-color: var(--bs-gray-500);
}

.breadcrumb-item {
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--bs-primary);
}

.pagination li>* {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1;
    font-size: 1em;
    font-weight: 400;
    padding: .75em;
    text-align: center;
    display: block;
    min-width: 2.5em;
    border: 1px solid var(--bs-primary);
    height: 2.5em;
    color: var(--bs-primary);
    margin: 0 5px;
    border-radius: 0.5rem;
}

.pagination li>*:hover,
.pagination li.active>* {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.pagination {
    justify-content: center;
}

.pagination li.disabled {
    display: none;
}

.preloader {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-white);
    position: fixed;
    inset: 0;
    z-index: 9999;
}

#content-wrapper {
    min-height: calc(100vh - 500px);
}

.truncate-text {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--lines, 2);
    line-clamp: var(--lines, 2);
    min-height: calc(var(--line-height, 20px) * var(--lines, 2));
}

.scrollTop {
    position: fixed;
    right: 25px;
    bottom: 60px;
    width: 40px;
    height: 45px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
    border-radius: 3px;
    color: var(--bs-white);
    cursor: pointer;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 7px 5px -4px;
}

.scrollTop:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    border-color: var(--bs-secondary);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-arrow-btn {
    background-color: rgb(255 255 255 / 30%);
    border: 1px solid transparent;
    height: 66px;
    width: 32px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 0 8px -2px rgba(0, 0, 0, .3);
    align-items: center;
    padding: 0 4px 0 0;
    left: 0;
    transform: translateY(-50%);
    margin-top: 0;
    color: var(--bs-white);
    transition: all 0.3s ease-in-out;
}

.swiper-arrow-btn:hover {
    background-color: var(--bs-white);
    color: var(--bs-primary);
}

.swiper-button-next {
    padding: 0 0 0 2px;
    right: 0;
    left: auto;
}

.swiper-button-next svg {
    transform: rotate(180deg);
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 11px;
    height: 16px;
    object-fit: contain;
    transform-origin: center;
}

.swiper-pagination-bullet-active {
    background: var(--bs-white);
}

.whatsapp-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 15px 5px 10px;
    height: 40px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .06), 0 2px 32px 0 rgba(0, 0, 0, .16);
    color: var(--bs-white);
    background-color: #25d366;
    position: fixed;
    right: 25px;
    bottom: 120px;
    border-radius: 50px;
    font-size: 16px;
    z-index: 999;
}

/* =============== Header CSS =============== */
.newsticker {
    background-color: var(--bs-gray-200);
}

.newsticker-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsticker-title {
    flex-shrink: 0;
    padding: 8px 12px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
}

.newsticker marquee {
    flex-grow: 1;
}

.newsticker-content a {
    display: inline-block;
    margin-right: 15px;
    border-right: 1px solid var(--bs-gray-500);
    padding-right: 15px;
}

.newsticker-content a:hover {
    color: var(--bs-primary);
}

.newsticker-content a:last-child {
    margin-right: 0;
    border-right: none;
}

.login-list {
    display: flex;
    align-items: center;
    gap: 3px;
}

.login-link {
    display: inline-block;
    padding: 7px 12px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.2s ease;
}

.login-link:hover {
    background-color: var(--bs-secondary);
}

.switch {
    position: relative;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.switch>span {
    position: absolute;
    top: 4px;
    pointer-events: none;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    width: 50%;
    text-align: center;
}

input.check-toggle-round-flat:checked~.off {
    color: #157347;
}

input.check-toggle-round-flat:checked~.on {
    color: var(--bs-white);
}

.switch>span.on {
    left: 0;
    color: #157347;
}

.switch>span.off {
    right: -2px;
    color: var(--bs-white);
    padding-right: 4px;
}

input.check-toggle-round-flat:checked~.off {
    color: #157347;
}

input.check-toggle-round-flat:checked~.on {
    color: var(--bs-white);
}

.switch>span.on {
    left: 0;
    color: #157347;
}

.switch>span.off {
    right: -2px;
    color: var(--bs-white);
    padding-right: 4px;
}

.check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.check-toggle+label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input.check-toggle-round-flat+label {
    width: 80px;
    height: 22px;
    background-color: var(--bs-primary);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 0;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
}

input.check-toggle-round-flat+label:before,
input.check-toggle-round-flat+label:after {
    display: block;
    position: absolute;
    content: '';
}

input.check-toggle-round-flat+label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: var(--bs-primary);
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    visibility: hidden;
}

input.check-toggle-round-flat+label:after {
    top: -2px;
    left: 0;
    width: 40px;
    height: 26px;
    background-color: var(--bs-white);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 0;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
    border: 1px solid var(--bs-primary);
}

input:checked.check-toggle-round-flat+label:after {
    left: 2px;
}

input.check-toggle-round-flat:checked+label:after {
    margin-left: 38px;
}


.header-top {
    background-color: var(--bs-white);
    padding: 1rem 0;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 18px;
}

.contact-info-content {
    flex-grow: 1;
    line-height: 150%;
    display: flex;
    flex-direction: column;
}

.contact-item {
    color: var(--bs-primary);
    display: block;
}

.contact-item+span {
    line-height: 1;
    display: block;
    margin-top: 4px;
}

.header {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    -webkit-transform: translateZ(0) translateY(0);
    -moz-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    transition: transform 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, background 0.3s ease-in-out;
    -webkit-transition: height 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, background 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out, -o-transform 0.3s ease-in-out, background 0.3s ease-in-out;
    position: relative;
    z-index: 1021;
    width: 100%;
}

.header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transform: translateZ(0) translateY(0);
    -moz-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
}

.main-menu {
    display: flex;
    justify-content: center;
}

.menu-item {
    flex-shrink: 0;
    position: relative;
}

.menu-item a {
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    padding: 10px;
}

.main-menu>.menu-item:hover {
    background-color: rgb(0 0 0 / 15%);
}

.submenu a {
    color: var(--bs-gray);
    font-size: 13px;
    font-weight: 400;
    text-transform: initial;
    display: block;
    padding: 6px 15px;
}

.submenu .menu-item:hover>a {
    color: var(--bs-primary);
}

.menu-item:has(.submenu)>a::after {
    display: inline-block;
    vertical-align: top;
    margin-left: 7px;
    content: "\f107";
    font-family: 'Font Awesome 5 Pro';
    transition: all 0.2s ease;
}

.menu-item:hover:has(.submenu)>a::after {
    rotate: -180deg;
}

.submenu .menu-item:has(.submenu)>a::after {
    position: absolute;
    right: 12px;
}

.submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--bs-white);
    display: none;
    min-width: 240px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .1);
    z-index: 9;
    backdrop-filter: blur(16px);
    padding: 10px 0;
}

.submenu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 20px;
    z-index: -1;
    border: 6px solid transparent;
    border-bottom: 6px solid var(--bs-white);
    border-top: none;
}

.submenu .submenu::before {
    top: 12px;
    left: -9px;
    transform: rotate(-90deg);
}

.submenu .submenu {
    left: 100%;
    top: 0;
}

.menu-item:hover>.submenu {
    display: block;
}

.submenu .menu-item:hover:has(.submenu)>a::after {
    rotate: -90deg;
}

/* =============== Header CSS =============== */

/* =============== Hero CSS =============== */
.slide-video {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    width: 100%;
    filter: brightness(.52);
}

.video-wrapper::before {
    content: '';
    display: block;
    padding-top: 700px;
}

.video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-content {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: rgb(39 45 71 / 30%);
    color: var(--bs-white);
    text-align: center;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gradient-btn {
    border: none;
    color: var(--bs-white) !important;
    padding: 5px 5px 5px 20px;
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    border-radius: 150px;
    background-size: 200% 100%;
    background-image: linear-gradient(to right, #ec1c24, #007636, #007647, #007636, #ec1c24);
    background-image: linear-gradient(to right, #ec1c24, #c52521, #9c4f2d, #3e6d38, #007636);
    transition: all 0.6s ease;
    border-radius: 5px;
}

.gradient-btn .icon {
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border-radius: 5px;
}

.gradient-btn svg {
    transition: all 0.3s ease;
}

.gradient-btn:hover {
    background-position: 100% 0;
}

.gradient-btn:hover .icon svg {
    transform: rotate(-45deg);
}

.four-box div {
    height: 80px;
    margin-bottom: 5px;
    padding: 5px 0 0 5px;
}

.four-box p {
    font-size: 20px;
    text-align: center;
    padding-top: 14px;
}

.four-box div:nth-child(1) {
    background: #df3030;
}

.four-box div:nth-child(2) {
    background: #03a45e;
}

.four-box div:nth-child(3) {
    background: #00864b;

}

.four-box div:nth-child(4) {
    background: #4d9d31;
}

.home-right-cohse {
    width: 80%;
    margin: 10px 0 30px 30px;
}

.four-box a {
    color: var(--bs-white);
    transition: .5s;
    font-weight: 400;
}

.four-box a:hover {
    color: var(--bs-warning);
}

.slide-card {
    border-radius: 16px;
    width: 100%;
    height: min-content;
    padding: 40px;
    text-align: left;
    position: relative;
    border: 1px solid #fff3;
    font-size: 16px;
}

.hero-title {
    font-size: 3rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    border: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    border-radius: 100px;
    padding: .25rem .25rem .25rem 1.25rem;
    line-height: 1.4;
    width: -moz-fit-content;
    width: fit-content;
    transition: all .25s;
    text-transform: uppercase;
}

.button--small {
    font-size: 0.8rem;
    padding: .25rem .25rem .25rem 1rem;
}

.button.secondary {
    background-color: var(--bs-secondary);
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
    vertical-align: middle;
    flex-shrink: 0;
}

.button .icon {
    background-color: #fff;
    color: var(--bs-primary);
    border-radius: 100px;
    margin-left: .75rem;
    transition: all .25s;
    padding: 0.6rem;
    width: 40px;
    height: 40px;
}

.button--small .icon {
    padding: 5.5px;
    width: 26px;
    height: 26px;
}

.button.secondary .icon {
    color: var(--bs-secondary);
}

.button:hover {
    background: var(--bs-secondary);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
}

.button.secondary:hover {
    background-color: var(--bs-primary);
}

.button:hover .icon {
    color: var(--bs-secondary);
    margin-left: 1rem;
}

.button.secondary:hover .icon {
    color: var(--bs-primary);
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-carousel p {
    animation-delay: 0.5s;
}

.hero-carousel .button {
    animation-delay: 0.8s;
}

/* =============== Hero CSS =============== */

/* =============== Member CSS =============== */
.member-section {
    padding: 4rem 0;
    background-color: rgba(120, 186, 159, .1);
}

.section-header {
    background-image: url(../images/icons/title_bg_box.png);
    background-repeat: no-repeat;
    background-position: left center;
}

.section-header.text-center {
    background-position: center top;
}

.section-title {
    text-transform: uppercase;
    font-weight: 800;
    color: var(--bs-primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--bs-primary);
}

.member-card {
    background-color: var(--bs-white);
    text-align: center;
}

/* =============== Member CSS =============== */

/* =============== Message CSS =============== */
.message-image-wrapper {
    max-width: 400px;
    position: relative;
}

.message-card-image {
    background-color: var(--bs-gray-300);
    padding: 0 15px;
    border-radius: 10px;
    overflow: hidden;
}

.message-card-title {
    text-transform: uppercase;
    font-weight: 500;
    color: var(--bs-primary);
    text-align: center;
    padding-top: 10px;
}

.quote-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 9;
}

/* =============== Message CSS =============== */

/* =============== Why Choose CSS =============== */
.choose-list-icon {
    margin-right: 6px;
}

.choose-list li {
    margin-bottom: 16px;
}

/* =============== Why Choose CSS =============== */

/* =============== Stats CSS =============== */
.stats-section {
    background-color: var(--bs-primary);
}

.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.stats-item {
    background-color: var(--bs-white);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 200px;
}

.stats-item h3 {
    font-size: 3rem;
    color: var(--bs-primary);
}

.stats-item p {
    color: var(--bs-gray-600);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

/* =============== Stats CSS =============== */

/* =============== Ads CSS =============== */
.ads-carousel .swiper-arrow-btn {
    background-color: #fff;
    background-position: 50%;
    background-size: contain;
    border-radius: 50%;
    box-shadow: 0 0 10px -4px #4b5865;
    cursor: pointer;
    display: inline-flex;
    height: 30px;
    width: 30px;
    /* z-index: 4; */
    color: #57748f;
    padding: 10px;
    margin: 0 10px;
}

.ads-card {
    border-radius: 6px;
    overflow: hidden;
}

/* =============== Ads CSS =============== */

/* =============== FAQ CSS =============== */

.faq-section {
    padding: 80px 0;
}

.faq-title {
    font-size: 40px;
    font-weight: 300;
}

.faq-title span {
    font-weight: 700;
}

.faq-desc {
    color: #6c757d;
    margin: 30px 0 30px;
}

.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.info-icon {
    color: #0b8242;
    font-size: 18px;
    display: inline-flex;
}

.info-title {
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--bs-dark);
}

.info-text {
    color: #79838b;
    font-size: 14px;
}

/* Accordion Styling */
.accordion-item {
    border: 1px solid #dce3f0;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: #2b5cab;
    background: rgb(11 130 66 / 10%);
    border-radius: 10px !important;
    color: var(--bs-primary);
}

.accordion-button:not(.collapsed) {
    background: var(--bs-primary);
    box-shadow: none;
    color: var(--bs-white);
}

.accordion-button::after {
    background-color: #0b8242;
    border-radius: 5px;
    padding: 10px;
    background-size: 12px;
    background-image: none !important;
    content: '\f078';
    font-family: 'Font Awesome 5 Pro';
    color: var(--bs-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
}

.accordion-button:not(.collapsed)::after {
    background-color: var(--bs-white);
    color: var(--bs-primary);
}

.accordion-body {
    font-size: 14px;
    color: #555;
}

.faq-number {
    margin-right: 5px;
}

/* =============== FAQ CSS =============== */

/* =============== Testimonial CSS =============== */
.testimonial-section {
    background-color: rgba(120, 186, 159, .1);
}

.testimonial-card {
    background: #FFFFFF;
    box-shadow: 0 0 16px #0000000a;
    border-radius: 10px;
    padding: 30px;
}

.testimonial-card .box1,
.testimonial-card .box2 {
    display: inline-block;
    height: 7px;
    width: 7px;
    background: #007C4A;
}

.testimonial-card .box2 {
    height: 15px;
    width: 15px;
}

.testimonial-title {
    color: var(--bs-primary);
    margin-bottom: 0;
}

.testimonial-designation {
    color: var(--bs-gray);
    font-size: 16px;
    font-weight: 500;
}

.testimonial-text {
    padding-top: 1rem;
    margin-bottom: 0;
}

.testimonial-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 10px;
}

.testimonial-arrows .swiper-arrow-btn {
    position: initial;
    transform: none;
    display: flex;
    background-color: transparent;
    color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
    height: 34px;
    padding: 10px;
    border-radius: 5px;
}

/* =============== Testimonial CSS =============== */

/* =============== Video Gallery CSS =============== */
/* .video-section {} */

.video-card {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.video-card::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.video-card iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}

/* =============== Video Gallery CSS =============== */

/* =============== CTA CSS =============== */
.cta-section {
    background: linear-gradient(135deg, #0b8242, #0a6a36);
    padding: 60px 20px;
    color: #fff;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 15px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #0b8242;
}

.btn-outline:hover .icon {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.cta-buttons .btn-light {
    background-color: var(--bs-white);
    color: var(--bs-primary);
    padding: .25rem .25rem .25rem 1.25rem !important;
}

.cta-buttons .btn-light .icon {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.cta-buttons .btn-light:hover {
    background: #fff;
    color: #0b8242;
}

.cta-buttons .btn {
    font-size: 15px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* =============== CTA CSS =============== */

/* =============== Blog CSS =============== */
.blog-card {
    border: 1px solid #e1e7ea;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--bs-white);
    margin-bottom: 10px;
}

.blog-card-content {
    padding: 1.5rem;
    font-size: 13px;
}

.blog-card-title {
    color: var(--bs-primary);
}

.blog-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--bs-primary);
    transition: all 0.3s ease-in-out;
}

.blog-card-link:hover {
    text-decoration: underline;
}

.desc-box {
    background-color: #fafbfc;
    border: 1px solid rgb(235 240 245/1);
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 13px;
}

/* =============== Blog CSS =============== */

/* =============== Footer CSS =============== */
.footer-section {
    background-color: #0d1830;
    color: var(--bs-white);
    padding: 3rem 0 0;
    overflow: hidden;
}

.footer-title {
    color: var(--bs-white);
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.footer-links a {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    background-color: rgb(255 255 255 / 10%);
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    color: var(--bs-gray-600);
    margin-top: 3rem;
}

/* =============== Footer CSS =============== */



/* =============== Mobile Menu CSS =============== */
.mobile-menu {
    z-index: 9999;
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .8);
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease-out;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-inner {
    width: 100%;
    max-width: 340px;
    z-index: 999;
    position: absolute;
    background-color: var(--bs-white);
    height: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 0;
    left: -150px;
    transition: all .3s ease-out;
    padding: 15px 20px;
}

.mobile-menu.active .mobile-menu-inner {
    opacity: 1;
    left: 0;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    border-bottom: 1px solid #d9dde0;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 15px;
}

.close-menu {
    flex-shrink: 0;
}

.close-button {
    background: transparent;
    color: #141414;
}

.mobile-mainmenu .nav-link {
    color: #2a2d31;
    position: relative;
    transition: all 0.4s ease-in-out;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    font-weight: 500;
    background: rgba(0, 0, 0, 0);
}

.mobile-mainmenu li {
    display: block;
    margin: 0;
    padding: 8px 0;
}

.mobile-mainmenu li+li {
    border-top: 1px solid #d9dde0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid var(--bs-gray-400);
    transition: 0.2s;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    height: 42px;
}

.mobile-menu-item>a:hover {
    background: #f8f9fa;
    color: #0b8242;
}

.mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
    background: #fafafa;
}

.mobile-submenu .mobile-menu-item a {
    padding: 10px 20px;
    font-size: 13px;
    color: #555;
    text-transform: initial;
    font-weight: 400;
}

.mobile-menu-item.active>.mobile-submenu {
    display: block;
}

.submenu-toggle {
    margin-left: auto;
    width: 42px;
    height: 42px;
    position: absolute;
    right: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    cursor: pointer;
    border: 1px solid var(--bs-gray-300);
    border-width: 0 1px 0 1px;
}

.submenu-toggle::before {
    content: "+";
    position: absolute;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.mobile-menu-item.active>a .submenu-toggle::before {
    content: "−";
}

.mobile-menu-item {
    position: relative;
}

/* =============== Mobile Menu CSS =============== */

/* =============== Course CSS =============== */
.course-section {
    background-color: rgba(120, 186, 159, .1);
}

.course-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bs-white);
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
    transition: 0.3s;
    border: 1px solid #e1e7ea;
}

.card-img-wrapper {
    position: relative;
}

.card-img-wrapper::before {
    content: '';
    display: block;
    padding-top: 50%;
}

.card-img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0.6rem;
}

.course-card-text {
    font-size: 14px;
    color: #666;
}

.course-price {
    font-weight: 600;
    color: #000;
}

.lessons {
    font-size: 13px;
    color: #777;
}

.avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}

.btn-outline-custom {
    background-color: var(--bs-white);
    color: var(--bs-primary);
    border: 2px solid var(--bs-primary);
}

.btn-outline-custom .icon {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.btn-outline-custom:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.btn-outline-custom:hover .icon {
    background-color: var(--bs-white);
    color: var(--bs-primary);
}

/* =============== Course CSS =============== */