@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --black: #000000;
    --fade-black: #2D3032;
    --theme-white: #ffffff;
    --theme-color: #7E56F5;
    --theme-secondary-color: #D3C4FB;
    --theme-tertiary: #00B1E7;
    --mad-red: #c11a1e;
    --transition500: all 0.5s;
    --Poppins: "Poppins", serif;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--Poppins);
    font-weight: 400;
    overflow-x: hidden;
    animation: fadeInAnimation ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

a {
    display: inline-block;
    font-size: 18px;
    color: var(--fade-black);
    text-decoration: none;
    transition: var(--transition500);
}

b,
strong {
    font-weight: 700;
}


ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h2 {
    font-size: 38px;
    color: var(--fade-black);
    line-height: 1.2;

}

h3 {
    color: var(--fade-black);
    font-size: 36px;
    margin-bottom: 0.5em;
    font-weight: 400;
}

h4 {
    color: var(--fade-black);
    font-size: 24px;
}

h5 {
    color: var(--fade-black);
    font-size: 18px;
    font-weight: 400;
}

p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--fade-black);
    font-weight: 400;
}

.disable_scroll {
    overflow: hidden;
}

.common_sub_section_heading h2 {
    font-size: 48px;
    color: var(--black);
}

/* .common_btn_main {
    border: 2px solid var(--black);
    border-radius: 8px;
    font-size: 18px;
    padding: 0 32px;
    line-height: 47px;
    color: var(--black);
    transition: all 0.5s;
} */

.common_btn {
    font-size: 16px;
    border-radius: 19px;
    line-height: 43px;
    border: 1px solid var(--theme-color);
    color: #ffffff;
    padding: 0 25px;
    background-color: var(--theme-color);
    transition: all 0.5s;
    text-transform: uppercase;
    font-weight: 300;
    box-shadow: 0px 3px 6px #00000029;
}

.common_btn.theme_secondary_btn {
    background-color: var(--theme-secondary-color);
    border-color: var(--theme-secondary-color);
    color: #000000;
}

.common_btn.theme_secondary_btn:hover {
    color: var(--theme-secondary-color);
}

.common_btn:hover {
    background-color: transparent;
    color: var(--theme-color);
}

.btn_white {
    border: 1px solid var(--theme-white);
}

.common_btn.btn_white:hover {
    background-color: var(--theme-white);
}

.small_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.common_bg {
    background: #E8E6ED;
    background-size: cover;
}


/* TITTLE AND CONTENT AREA START  */

.common_title_area {
    margin-left: auto;
    margin-right: auto;
    max-width: 1170px;
}

.common_title_area :is(h2, h3, h4) {
    font-weight: 600;
    font-size: 38px;
    color: #0A0A0A;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

.common_title_area :is(h5, h6) {
    font-size: 20px;
    color: #060606;
    font-weight: 500;
    margin-bottom: 1em;
}

.common_title_area h6 {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--theme-color);
}

.common_title_area p {
    font-size: 18px;
    color: var(--fade-black);
    margin-bottom: 1.5em;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

/* SECONDARY COMMON CONTENT AREA  */

.common_content_area {
    max-width: 1170px;
}

.common_content_area :is(h2, h3, h4) {
    font-weight: 700;
    font-size: 42px;
    color: #0A0A0A;
    margin-bottom: 0.8em;
    line-height: 1.2;
    font-family: var(--Poppins);
}

.common_content_area :is(h5, h6) {
    font-size: 20px;
    color: #060606;
    font-weight: 400;
    margin-bottom: 1em;
    font-family: var(--Poppins);
}

.common_content_area h6 {
    font-size: 18px;
    text-transform: uppercase;
}

.common_content_area h6 span {
    padding-left: 25px;
}

.common_content_area h6 span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 15px;
    height: 2px;
    top: calc(50% - 1px);
    background-color: var(--theme-white);
}

.common_content_area p {
    font-size: 18px;
    color: var(--fade-black);
    margin-bottom: 1.5em;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.common_content_area ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.common_content_area li {
    color: var(--bs-white);
    margin-bottom: 1em;
    position: relative;
    padding-left: 34px;
}

.common_content_area li:last-child {
    margin-bottom: 0;
}

.common_content_area li::before {
    content: "";
    position: absolute;
    width: 19px;
    height: 19px;
    background-image: url(../img/check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    border-radius: 50%;
    left: 0;
    top: 2px;
}

/* SECONDARY COMMON CONTENT AREA END  */

.cl_white :is(h2, h3, h4) {
    color: var(--theme-white);
}

.cl_white :is(h5, h6) {
    color: var(--theme-white);
}

.cl_white p {
    color: var(--theme-white);
}

.cl_blue :is(h2, h3, h4) {
    color: var(--theme-tertiary);
}

.common_padding {
    padding: 110px 0;
}

.common_title_area img {
    width: 100%;
    margin-bottom: 35px;
    aspect-ratio: 3 / 1.5;
    object-fit: cover;
}

.common_title_area ul {
    margin-bottom: 30px;
}

.common_title_area ul li {
    font-size: 17px;
    color: #1E1E1E;
    font-weight: 500;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.common_title_area ul li::before {
    content: "";
    width: 15px;
    height: 18px;
    background-image: url('../img/check_icon.svg');
    background-repeat: no-repeat;
    position: absolute;
    top: 3px;
    left: 2px;
}

.common_title_area :is(p, span, li, h2, h3, h4) a {
    color: var(--theme-color)
}

.common_mb {
    margin-bottom: 85px;
}

/* TITTLE AND CONTENT AREA END  */




/* ============ HEADER =========== */



.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin: 0 auto;
    z-index: 999;
}

.logo-area a img {
    max-width: 200px;
    object-fit: scale-down;
}

.nav-area-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.nav-ul {
    display: flex;
    flex-wrap: wrap;
}


.nav-ul>li {
    margin-right: 50px;
    position: relative;
}

/* .nav-ul>li:last-child {
    margin-right: 0;
} */

.nav-ul li a {
    padding: 10px 0;
    font-size: 16px;
    color: var(--theme-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s;
    font-weight: 300;
}

.dropdown-arrow i {
    font-size: 14px;
    color: var(--theme-white);
    transition: all 0.2s ease-in-out;
}


.mobile-nav .nav-ul .dropdown-nav a::after {
    right: 10%;
}

.nav-ul li a:hover {
    color: var(--theme-color);
}

.mobile-nav .nav-ul>li>a:hover {
    color: var(--fade-black);
}

.mobile-nav .nav-ul>li>a.active {
    color: var(--theme-color);
}



.contact-btn {
    display: flex;
    justify-content: end;
    flex: 0 0 auto;
    align-items: center;
}



.search_icon_area {
    margin-right: 30px;
}

.search_icon_area i {
    color: var(--theme-white);
    font-size: 22px;
    padding-top: 5px;
}



.nav-ul li:hover .dropdown-arrow i {
    transform: rotate(180deg);
}

.nav-ul li:hover ul {
    visibility: visible;
    opacity: 1;
    top: 45px;
}

.nav-ul li a:hover .dropdown-arrow i {
    color: var(--theme-color);
}

.nav-ul li ul {
    background-color: #ffffff;
    position: absolute;
    width: 200px;
    top: 60px;
    visibility: hidden;
    opacity: 0;
    z-index: 9999999;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.nav-ul li ul li a {
    display: block;
    padding: 5px 12px;
    transition: all 0.5s;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    transition: all 0.5s;
}



.dropdown-arrow {
    margin-left: 5px;
}

.menu-bar {
    display: none;
    padding: 0 10px;
}

.menu-bar i {
    font-size: 25px;
    color: #fff;
}

.nav-header {
    width: 100%;
    background-color: #2D3032;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    transition: var(--transition500);
}

.header_fixed {
    box-shadow: 0 0 25px #0303031c;
}

.header_fixed:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    backdrop-filter: blur(8px);
    z-index: -1;
}


.mobile-nav {
    display: none;
}



.nav-ul>li>a.active {
    color: var(--theme-color);
}


.black-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0000008e;
    z-index: 99;
    display: none;
}

.header_offset {
    border-image: fill 0 linear-gradient(90deg, #34265ddc 100%, #ffffff1c 0%);
}


/* COMMON HEADING AREA  */
.common_banner_area_main {
    padding: 150px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-image: fill 0 linear-gradient(90deg, #34265ddc 100%, #ffffff1c 0%);
}


.common_banner_context :is(h1, h2) {
    color: #fff;
    font-size: 66px;
    margin: 0 0 15px;
    margin-bottom: 0.2em;
    font-weight: 400;
}

.common_banner_context p {
    color: #fff;
    margin: 0 auto;
    margin-bottom: 1.5em;
}


/* BANNER AREA  */
.common_banner_area {
    max-width: 1090px;
    margin: 0 auto;
}

.home_banner_area_main .common_banner_context :is(h1, h2) {
    font-weight: 600;
}

.common_banner_area_main .common_btn:hover {
    background-color: #fff;
    border-color: #fff;
}

.home_banner_area_main {
    padding: 235px 0 299px;
}

.double_btn_wrapper {
    gap: 20px;
}


.banner-area p {
    max-width: 720px;
    margin: 0 auto;
    margin-bottom: 49px;
    font-size: 18px;
    position: relative;
}

.common_banner_context ul {
    margin-bottom: 50px;
}

.common_banner_context ul li {
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
    font-style: italic;
}

.common_banner_context ul li::before {
    content: "";
    width: 35px;
    height: 46px;
    background-color: var(--theme-color);
    background-size: contain;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


/* =============================
    LITTLE SERVICE SHOWCASE AREA
================================ */

.small_service_showcase_area_main {
    position: relative;
    z-index: 1;
}

.small_service_showcase_area {
    width: calc(100% - 10%);
    margin-left: auto;
}

.showcase_item_area {
    top: -47px;
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    background-color: var(--fade-black);
    padding: 45px 6%;
    box-shadow: 0px 3px 12px #0000003D;
    border-radius: 20px 0 0 20px;
    position: relative;
}

.showcase_item {
    display: flex;
    column-gap: 20px;
}

.showcase_content h4 {
    font-size: 18px;
}

.showcase_content p {
    font-size: 16px;
    margin-bottom: 5px;
}

.showcase_item img {
    width: 64px;
    height: 49px;
    object-fit: scale-down;
    flex: 0 0 auto;
}

/* =============================
        CAMPAIGNING AREA
================================ */

.campaigning_area_main {
    position: relative;
    overflow: hidden;
}

.star_design_news {
    position: absolute;
    opacity: 0.5;
}


/* .campaigning_area_main::after {
    content: "";
    bottom: 0;
    position: absolute;
    left: 0;
    width: 100%;
    height: 180px;
    background: #213C56;
} */

.campaigning_area {
    position: relative;
    z-index: 1;
}

.video_area video {
    border-radius: 25px;
    aspect-ratio: 16/9;
}

.campaigning_details p {
    font-size: 27px;
    line-height: 1.4;
    color: #686868;
    font-weight: 400;
    font-style: italic;
    font-family: "Roboto";
    text-align: center;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.share_icons {
    width: 129px;
    height: 29px;
    margin: 0 auto;
}

.share_icons img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

/* =============================
        WHAT WE OFFER AREA
================================ */

.sc_what_we_offer_wrapper {
    padding: 90px 0;
}

.sc_content_area {
    max-width: 650px;
    padding-left: 72px;
    padding-right: 12px;
}

.sc_what_we_offer_image img {
    border-radius: 0 30px 30px 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* =============================
        WHAT WE OFFER AREA
================================ */
.safer_tomorrow_wrapper {
    border-image: fill 0 linear-gradient(90deg, #5338A3 10%, #00000000 10%);
}

/* =============================
        RESOURCE CENTER AREA
================================ */
.resource_center_wrapper {
    background-color: #f1f1f1;
    position: relative;
    overflow: hidden;
}

.resource_center_wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url('../img/right_defence.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 6%;
}

.resource_center_wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url('../img/left_defence.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 6%;
}


/* =============================
        SWIPER CSS
================================ */



.serviceSwiper,
.electricalSwiper,
.pricingSwiper {
    padding-bottom: 80px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid var(--theme-color);
    background-color: transparent;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: transparent;
    border: 1px solid var(--theme-color);
    background-color: var(--theme-color);
}




/* =============================
        TESTIMONIAL AREA
================================ */
.sc_testimonial_wrapper {
    padding: 120px 0 220px;
    position: relative;
}

.sc_testimonial_wrapper::before {
    background: linear-gradient(to right, #E8E6ED 2%, rgba(255, 255, 255, 0) 80%);
    content: ' ';
    height: 100%;
    left: 0;
    top: 0;
    width: 22%;
    position: absolute;
    z-index: 2;
}

.sc_testimonial_wrapper::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #E8E6ED 98%);
    content: ' ';
    height: 100%;
    right: 0;
    top: 0;
    width: 21%;
    position: absolute;
    z-index: 1;
}

.sc_testimonial_wrapper .common_title_area {
    position: relative;
    z-index: 1;
}

.sc_testimonial_wrapper .common_title_area::before {
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../img/start_quote.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.testimonialSwiper {
    padding: 50px 9% 80px;
}

.sc_testimonial_content_area {
    background-color: #F0EDF9;
    padding: 65px 45px 110px;
    border-radius: 20px;
}

.sc_testi_thought_area>p {
    font-size: 16px;
    line-height: 1.5;
}

.sc_testimonial_person_area {
    position: absolute;
    bottom: 50px;
}

.sc_testimonial_person_area>img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.sc_testimonial_person_area p {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
}

.sc_testimonial_content_area {
    transform: scale(0.9);
    transition: all 0.5s;
    height: 100%;
    position: relative;
}

.sc_testimonials_slider_wrapper .swiper-slide {
    height: unset;
}

.sc_testimonials_slider_wrapper .swiper-slide-next .sc_testimonial_content_area {
    transform: scale(1);
    box-shadow: -5px 6px 26px #0000001F;
}

.sc_testi_thought_area {
    position: relative;
}

.sc_testi_thought_area::before {
    content: "";
    width: 71px;
    height: 54px;
    position: absolute;
    top: -27px;
    left: -3%;
    background-image: url(../img/start_quote.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.sc_testi_thought_area::after {
    content: "";
    width: 71px;
    height: 54px;
    position: absolute;
    bottom: -22px;
    right: -10px;
    background-image: url(../img/end_quote.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}


/* =============================
        KNOW YOUR SAFEY AREA
================================ */

.safey_content_box_wrapper {
    top: -100px;
    padding-bottom: 25px;
    width: calc(100% - 10%);
    background-color: #5338a3;
    background-image: url('../img/safy_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: auto;
    border-radius: 0 25px 25px 0;
    position: relative;
    z-index: 1;
}

.safey_content_box_area {
    column-gap: 90px;
    padding-left: 50px;
}

.safey_content_box_area .common_title_area {
    padding: 85px 0;
    margin: 0;
}

.safey_content_box_area img {
    max-width: 278px;
    height: fit-content;
    width: 100%;
    margin-top: -50px;
    flex: 0 0 auto;
}

/* =============================
        FOOTER AREA 
================================ */

.footer_wrapper {
    background-color: var(--fade-black);
    position: relative;
}

.footer_wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url('../img/ft_right_defence.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    bottom: 0;
    right: 2%;
}

.footer_area {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 95px;
}

.footer_area .logo-area img {
    max-width: 300px;
    max-height: 125px;
}

.footer_area .logo-area>p {
    font-size: 16px;
}

.footer_top_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 70px;
}

.navigation_area>h5 {
    margin-bottom: 35px;
}

.navigation_area ul li a {
    font-size: 16px;
    color: #FCFCFC;
    transition: all 0.5s;
}

.navigation_area ul li a:hover {
    color: var(--theme-color);
}

.navigation_area ul li a span {
    color: #fff;
}

.navigation_area ul li a:hover span {
    color: #fff;
}

/* .navigation_area ul li a span,
.navigation_area ul li span {
    display: inline-block;
    font-size: 14px;
} */

.navigation_area ul li:not(:last-child) {
    margin-bottom: 29px;
}

.navigation_area p {
    font-size: 16px;
}

.get_in_touch ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.get_in_touch ul li img {
    flex: 0 0 auto;
    margin-right: 15px;
    padding-top: 5px;
}

.get_in_touch li:last-child {
    margin-bottom: 0;
}



.lower_footer_wrapper {
    padding: 95px 0 70px;
}

.lower-footer-area {
    display: flex;
    justify-content: space-between;
}



.footer-logo-area a {
    max-width: 273px;
    padding-bottom: 30px;
}

.footer-logo-area a img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.newsletter_form {
    border: 1px solid #FFFFFF;
    border-radius: 25px;
    padding: 3px;
    max-width: 410px;
}

.newsletter_form input {
    width: 100%;
    flex: 1 0 0;
    background-color: transparent;
    border: none;
    padding: 0 10px;
    outline: none;
    color: #fff;
}

button.common_btn {
    text-transform: capitalize;
    color: #1E1E1E;
    font-weight: 400;
}

.social-ul {
    display: flex;
}

.navigation_area .follow_area .social-ul li {
    margin-bottom: 0;
}

.social-ul li:not(:last-child) {
    margin-right: 27px;
}

.social-ul li a {
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--theme-white);
    background-color: #fff;
    border-radius: 100%;
    transition: all 0.5s;
}

.social-ul li a:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.social-ul li a i {
    font-size: 16px;
    color: var(--fade-black);
    transition: all 0.5s;
}

.social-ul li a:hover i {
    color: var(--theme-white);
}

.follow_area {
    gap: 20px;
}

.follow_area>p {
    font-size: 16px;
}

.copyright-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.sitemap-ul {
    display: flex;
}

.sitemap-ul li {
    padding-right: 20px;
    position: relative;
}

.sitemap-ul li:last-child {
    padding-right: 0;
}

.sitemap-ul li a {
    color: var(--fade-white);
    font-size: 14px;
    transition: all 0.5s;
}

.sitemap-ul li a:hover {
    color: var(--theme-color);
}

.sitemap-ul li::after {
    content: "|";
    position: absolute;
    top: 2px;
    right: 7px;
    color: var(--fade-white);
}

.sitemap-ul li:last-child:after {
    display: none;
}

.bottom_area_name {
    color: #F8FAFD;
    font-size: 16px;
    padding: 19px 0;
}

.bottom_area_name p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--fade-white);
}

.bottom_area_name p a {
    color: var(--theme-color);
}

/* =============================
        ABOUT US PAGE CSS 
================================ */

/* BANNER  */
.common_banner_area_main.about_page_banner_wrapper {
    padding: 130px 0 260px;
}

/* MIDDLE VIDEO AREA  */
.middle_up_video_wrapper {
    background-color: #F1F1F1;
    padding-bottom: 100px;
}

.middle_up_video_area {
    max-width: 810px;
    margin: 0 auto;
}

.middle_up_video_area .video_area video {
    margin-top: -140px;
}

/* COUNTER AREA  */
.counter_details_wrapper {
    position: relative;
}

.counter_details_wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../img/about_page_defence.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    position: absolute;
    bottom: 0;
    right: 6%;
}

.counter_details_wrapper .common_title_area {
    padding-right: 75px;
}

.counter_area {
    font-size: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.counter_area :is(.count, .plus) {
    display: inline-block;
    font-size: 1em;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.counter_item h5 {
    color: #1E1E1E;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
}

/* COMMITMENT AREA  */
.commitment_wrapper {
    background-color: #F1F1F1;
    padding-bottom: 260px;
}

.commitment_item_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px 60px;
}

.commitment_item {
    width: 30%;
}

.commitment_item img {
    width: 53px;
    height: 53px;
    margin-bottom: 27px;
}



/* =============================
        SC TEAM PAGE 
================================ */
.before_footer_padding_manager {
    padding: 120px 0 220px;
}

.kd_team_wrapper {
    background-color: #F5F5F5;
}

.kd_team_grid_wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.kd_team_grid_item {
    flex: 0 0 22%;
}

.kd_team_grid_item a {
    border-radius: 15px;
    position: relative;
    transition: var(--transition500);
    overflow: hidden;
}

.kd_team_grid_item a img {
    width: 100%;
    height: 100%;
    aspect-ratio: 2/2.5;
    border-radius: 15px;
    object-fit: cover;
    transition: var(--transition500);
}

.kd_team_member_details {
    padding: 20px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    text-align: center;
    transition: var(--transition500);
    border-image: fill 0 linear-gradient(0deg, #0000004d 47%, #ffffff00 93%);
}

.kd_team_member_details h6 {
    font-size: 20px;
    font-weight: 600;
}

.kd_team_member_details p {
    font-size: 14px;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition500);
}

/* .kd_team_grid_item a:hover .kd_team_member_details {
    top: 0 !important;
} */
.kd_team_grid_item a:hover img {
    transform: scale(1.2);
}

.kd_team_grid_item a:hover .kd_team_member_details p {
    visibility: visible;
    opacity: 1;
}

.general_management_wrapper .kd_team_grid_item a img {
    aspect-ratio: 3/2;
}

.member_all_details_wrapper .common_title_area {
    overflow-y: scroll;
    max-height: 600px;
}

.mm_details_image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 2/2.2;
    object-fit: cover;
    border-radius: 20px;
}

.member_modal_wrapper .modal-body {
    padding: 30px 50px;
}

.member_modal_wrapper {
    backdrop-filter: blur(5px);
}

.member_description>* {
    padding: 0 50px;
}

.modal-header .close {
    background-color: transparent;
    border: none;
    font-size: 36px;
    font-weight: 200;
}

.member_modal_wrapper .modal-header {
    padding: 10px 30px 5px;
}

.member_modal_wrapper .modal-title {
    font-weight: 500;
    font-size: 24px;
}

.member_modal_wrapper .social-ul li a {
    border-color: var(--theme-color);
    background-color: var(--theme-color);
}

.member_modal_wrapper .social-ul li a i {
    color: #fff;
}

.member_modal_wrapper .social-ul li a:hover {
    background-color: transparent;
}

.member_modal_wrapper .social-ul li a:hover i {
    color: var(--theme-color);
}

.modal-content {
    border: none;
    box-shadow: -5px 6px 26px #0000001F;
}

/* =============================
        RESOURCES PAGE 
================================ */
.sc_resources_wrapper {
    overflow: hidden;
}

.sc_category_showing_area {
    display: flex;
    gap: 20px 10px;
    padding: 20px 0 0;
    margin-bottom: 50px;
}

.sc_category_item {
    flex-grow: 1;
    position: relative;
}

.sc_category_item>a {
    padding: 10px 25px;
    background-color: #fff;
    transition: var(--transition500);
    border-radius: 7px;
    font-size: 18px;
    line-height: 1.3;
}

.sc_category_item.active a {
    background-color: var(--theme-color);
    color: #fff;
}

.sc_category_item a:hover {
    color: var(--theme-color);
}
.sc_category_item.active a:hover{
    color: #fff;
}
.sc_category_list_box_area {
    width: 300px;
    text-align: start;
    background-color: #ffffffe7;
    box-shadow: 0 10px 11px 0 rgba(0, 0, 0, .05);
    position: absolute;
    right: 4px;
    top: 60px;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition500);
    backdrop-filter: blur(15px);
    z-index: -1;
    border-radius: 7px;
}

.sc_category_list_item a {
    width: 100%;
    padding: 15px;
    transition: var(--transition500);
    border-radius: 7px;
}

.sc_category_list_item a:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.sc_category_list_item:not(:last-child) {
    border-bottom: 1px solid #c7c7c7d0;
}

.more_arrow i {
    font-size: 14px;
    margin-left: 10px;
}

.sc_resources_box_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

.desktop_sc_category_showing_area .sc_category_item:last-child:hover .sc_category_list_box_area {
    top: 50px;
    visibility: visible;
    opacity: 1;
    z-index: 2;
}

.cn_card {
    /* box-shadow: -5px 6px 26px #0000001F; */
    height: 100%;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition500);
}

.cn_card:hover {
    box-shadow: -5px 6px 26px #0000001F;
}

.cn_card_details {
    padding: 18px 22px 23px;
}

.cn_card_details h4 {
    line-height: 1.5;
    font-weight: 400;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cn_card_image img {
    width: 100%;
    aspect-ratio: 3/1.5;
    object-fit: cover;
    border-bottom: 1px solid #00000038;
}

.cn_card_btn {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    color: var(--theme-color);
    text-transform: uppercase;
    font-weight: 600;
}

.cn_card_btn i {
    font-size: 16px;
}

.mobile_sc_category_showing_area .sc_category_item a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 30px;
}

.mobile_sc_category_showing_area .sc_category_list_box_area {
    width: 100%;
    left: 0;
    right: 0;
}

/* .mobile_sc_category_showing_area .sc_category_item:last-child:hover{
    pointer-events: none;
} */
/* .mobile_sc_category_showing_area .sc_category_item:last-child:hover .sc_category_list_box_area{
    visibility: unset;
    opacity: unset;
    z-index: unset;
    top: 60px;
} */
.mobile_sc_category_showing_area .sc_category_list_box_area {
    visibility: unset;
    opacity: 1;
    display: none;
    transition: none;
    top: 60px;
    z-index: 2;
    backdrop-filter: unset;
    background-color: #fff;
}

.mobile_sc_category_showing_area .sc_category_item {
    z-index: 2;
}

.mobile_sc_category_showing_area .sc_category_item a.active .more_arrow i {
    transform: rotate(-180deg);
}

.mobile_sc_category_showing_area .more_arrow i {
    transition: var(--transition500);
}

/* =============================
        CONTACT PAGE 
================================ */


.contact_form_area_main :is(.input_area, .select_area) {
    margin-bottom: 30px;
    position: relative;
}

.input_area textarea {
    width: 100%;
    height: 130px;
    resize: none;
    outline: 0;
    padding: 10px 20px;
    border: 1px solid #6e6e6e91;
    border-radius: 7px;
    font-size: 16px;
}

.input_area input {
    width: 100%;
    padding: 5px 20px;
    height: 56px;
    border: none;
    outline: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 1px solid #6e6e6e91;
    border-radius: 7px;
    font-size: 16px;
}

.select_area select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 15px 50px 15px 23px;
    background-color: #fff;
    color: var(--theme-black);
    cursor: pointer;
    outline: 0;
    height: 56px;
    border: 1px solid #6e6e6e91;
    border-radius: 7px;
    font-size: 16px;
}

.select_area {
    position: relative
}

.select_area::after,
.select_area::before {
    --size: 6px;
    content: "";
    position: absolute;
    right: 1rem;
    pointer-events: none
}

.select_area::after {
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-top: var(--size) solid #000;
    top: 50%;
    transform: translateY(-50%)
}



.submit_button_area .common_btn:hover {
    background-color: transparent;
    color: var(--theme-color);
}

.submit_button_area {
    display: flex;
    align-items: center
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #fff
}

.wpcf7-not-valid-tip {
    color: #fff !important;
    font-size: 12px !important;
    background-color: #dc3232;
    padding: 2px 5px
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: red !important;
    color: #fff;
    background-color: red;
    margin-left: 0;
    margin-right: 0
}

.wpcf7 form.sent .wpcf7-response-output {
    margin-right: 0;
    margin-left: 0;
    color: #fff;
    background-color: #46b450
}

.contact_service_details .calling_btn {
    color: var(--theme-color);
    font-size: 25px;
    transition: var(--transition500);
}

.contact_service_details .calling_btn:hover {
    color: #5a32cf;
}

.contact_page_contact_form_wrapper {
    padding: 40px 50px;
    background-color: #fff;
    box-shadow: -5px 6px 26px #0000001F;
    border-radius: 20px;
}

.contact_page_contact_form_wrapper h2 {
    margin-bottom: 30px;
}

/* FAQs AREA  */
.faqs_area_main {
    min-height: 830px;
}

.faqs-area .accordion-container {
    position: relative;
    margin: 0 auto;
}


.faqs-area .set {
    position: relative;
    width: 100%;
    height: auto;
}

.faqs-area .set>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    font-size: 18px;
    border-bottom: 1px solid #8b57ea18;
    border-radius: 10px;
}

.faqs-area .set:last-child>a {
    border: none;
}

.faqs-area .set:last-child .content {
    border: none;
}

.faqs-area .set>a i {
    flex: 0 0 auto;
    margin-left: 20px;
}

.faqs-area .set>a svg {
    width: 20px;
    transition: all 0.3s ease 0s;
    flex: 0 0 auto;
    margin-left: 20px;
}

.faqs-area .set>a.active svg {
    transform: rotate(-180deg);
    fill: #ffffff;
}

.faqs-area .set>a.active {
    background-color: var(--theme-color);
    color: #fff;
    border: none;
}

.faqs-area .content {
    display: none;
    padding: 16px 20px;
    border-bottom: 1px solid #8b57ea18;
}

.faqs-area .content p {
    margin: 0;
    color: #000000;
    font-size: 16px;
}

/* =============================
        PARTNERS PAGE 
================================ */
.partners_wrapper {
    background: radial-gradient(circle farthest-corner at 15% 42%, #7E55F6 -103%, rgba(42, 28, 82, 0.1) 50%);
}

.partners_grid_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 80px 100px;
}

.partners_grid_item img {
    width: 150px;
    height: 112px;
    object-fit: scale-down;
}

/* =============================
        NEWS PAGE 
================================ */

.story_wrapper {
    max-width: 1088px;
    margin: 0 auto;
}

.story_content_area {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #D6D6D6;
}



.st_date_area {
    font-size: 12px;
    color: #2A3B90;
    font-weight: 600;
}

.read_more_btn {
    font-size: 18px;
    color: var(--theme-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.read_more_btn>span {
    text-decoration: underline;
    margin-right: 10px;
}

.read_more_btn>img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--theme-color);
    color: #fff;
    object-fit: scale-down;
    padding: 2px;
}

/* SINGLE PAGE  */

.content_writing_area :is(h1, h2) {
    font-size: 32px;
    color: #000;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 700;
}

.content_writing_area :is(h3, h4) {
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 700;
}

.content_writing_area :is(h5, h6) {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 700;
}

.content_writing_area>*:last-child {
    margin-bottom: 30px;
}



.content_writing_area>p {
    font-size: 20px;
    line-height: 1.75;
    color: #000;
    margin-bottom: 25px;
}

.content_writing_area img {
    width: 100%;
    margin-bottom: 35px;
    /* aspect-ratio: 3 / 1.5; */
    object-fit: cover;
}



/* .resources_details_wrapper .content_writing_area img {
    width: 100%;
    max-width: 350px;
    object-fit: cover;
    float: left;
    padding-top: 5px;
    shape-margin: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
} */



.content_writing_area ul {
    margin-bottom: 30px;
}

.content_writing_area ul li {
    font-size: 17px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 25px;
    padding-left: 25px;
    position: relative;
}

.content_writing_area ul li::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--theme-color);
    position: absolute;
    top: 6px;
    left: 0;
}

.content_writing_area a {
    color: var(--theme-color);
    text-decoration: underline;
    font-size: 1em;
}

.resources_details_wrapper .resources_details_area{
    max-width: 1090px;
    margin: 0 auto;
    padding: 50px 60px;
    box-shadow: -5px 6px 50px #0000001F;
    border-radius: 25px;
}
.pdf_info p{
    font-size: 16px;
    margin-bottom: 2px;
    line-height: 1.2;
}
.pdf_info span{
    display: inline-block;
    font-size: 12px;

}
.download_pdf_wrapper{
    padding: 10px 15px;
    border: 1px solid #000;
    border-radius: 10px;
}

.related_posts_wrapper .sc_resources_area{
    max-width: 1090px;
    margin: 0 auto;
}