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

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

:root {
    --theme-color: #2c9cd8;
    --theme-color3: #3260a0;
    --primary-color: #0143a1;
    --secondry-color: #026ccd;
    /* --secondry-color: #58b036; */
    --white-color: #fff;
    --black-color: #000;
    --black-color2: #222222;
    --black-color3: #2C2C2C;
    --black-color4: #3D3D3D;
    --gray-color: #E5E4E2;
    --gray-color2: #f5f5f5;
    --gray-color3: #f7f7f7;
    --gray-color4: #8d8787;
    --facebook-color: #3b5998;
    --instagram-color: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    --youtube-color: #c4302b;
    --background-color: #f9f6f0;
    --rating-color: #FDCC0D;
    --rating-color2: #FF9529;
}



img {
    max-width: 100% !important;
}


body {
    font-family: "Bai Jamjuree", sans-serif !important;
    /* font-family: "Fredoka", sans-serif; */
    overflow-x: hidden !important
}

body,
html {
    font-family: "Bai Jamjuree", sans-serif !important;
    scroll-behavior: smooth;
    /* font-family: "Fredoka", sans-serif; */
}

a {
    text-decoration: none !important;
}

a:focus {
    outline: none;
    text-decoration: none;
}


textarea {
    resize: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Signika Negative", sans-serif; */
    font-family: "Bai Jamjuree", sans-serif !important;

}

.split-heading,
.split-heading *,
.split-heading .char {
    text-transform: none !important;
    display: inline-block !important;

}



/*  */
/* ================= HERO SECTION ================= */
.hero_section{
    position: relative;
}

/* ===== SLIDER IMAGE ===== */
.hero_section img{
    height: 85vh;
    object-fit: cover;
}

/* ===== SHOW / HIDE DESKTOP MOBILE ===== */
.hero_mobile{
    display: none;
}

.hero_desktop{
    display: block;
}

/* ===== OVERLAY ===== */
.hero_overlay{
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: #eeeeee;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.feature_box{
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature_box img{
    width: 40px;
    height: 40px;
}

.feature_box h6{
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.feature_box p{
    margin: 0;
    font-size: 12px;
    color: #666;
}


.feature_box i{
    font-size: 22px;
    color: var(--theme-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
/* ===== MOBILE VIEW ===== */
@media (max-width: 991px){
    .hero_overlay{
        display: none !important;
    }
}


@media (max-width: 768px){

    .hero_desktop{
        display: none;
    }

    .hero_mobile{
        display: block;
    }

    .hero_section img{
        height: 60vh;
    }

    .hero_overlay{
        position: relative;
        bottom: 0;
        transform: none;
        width: 100%;
        margin-top: -10px;
        grid-template-columns: repeat(2,1fr);
        border-radius: 0;
    }
}

@media (max-width: 480px){
    .hero_overlay{
        grid-template-columns: 1fr;
    }
}



























/* slider css end */

/* =========================
   ABOUT SECTION
========================= */

.about_section {
    padding: 85px 0px;
    background-color: #f8fbff;
    overflow: hidden;
}

/* IMAGE AREA */
.about_image_main {
    position: relative;
    padding-right: 15px;
}

.about_img_box {
    position: relative;
    overflow: hidden;
    /* border-radius: 30px; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
border-radius: 20px 0 20px 0;
}

.about_img_box img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    /* border-radius: 30px; */
    /* transition: .6s ease; */
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
   border-radius: 20px 0 20px 0;
}

/* .about_img_box:hover img{
    transform: scale(1.08);
} */

/* floating card */
.about_floating_card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    animation: floatingCard 3s ease-in-out infinite;
}

.about_floating_icon {
    width: 65px;
    height: 65px;
    border-radius: 100px;
    background: linear-gradient(135deg, #0097b2, #0f3d56);
    color: #fff;
    text-align: center;
    line-height: 65px;
    font-size: 26px;
}

.about_floating_card h4 {
    margin-bottom: 2px;
    font-size: 30px;
    font-weight: 800;
    color: #0f3d56;
}

.about_floating_card p {
    margin-bottom: 0px;
    color: #555;
    font-weight: 500;
}

/* small image */
.about_small_image {
    position: absolute;
    top: 40px;
    right: 0;
    width: 220px;
    border: 8px solid #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: upDown 4s ease-in-out infinite;
}

.about_small_image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* CONTENT */
.about_content {
    padding-left: 20px;
}

.about_content span {
    display: inline-block;
    /* padding: 10px 22px; */
    color: var(--theme-color);
    border-radius: 100px;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.about_content h2 {
    font-size: 33px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #0f172a;
}

.about_content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: var(--black-color2);
    margin-bottom: 18px;
}

/* FEATURES */
.about_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.about_feature_box {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    padding: 18px 22px;
    border-radius: 16px;
    transition: .4s ease;
    border: 1px solid #eee;
}

.about_feature_box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about_feature_box i {
    color: #0097b2;
    font-size: 20px;
}

.about_feature_box span {
    font-weight: 700;
    color: #111827;
}

/* BUTTON */
.about_btn_div {
    margin-top: 20px;
}

.about_btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 20px;
    border-radius: 100px;
    background: var(--theme-color);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .4s ease;
}

.about_btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 151, 178, 0.35);
}

.about_btn i {
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 100px;
    /* background-color: #fff; */
    color: #fff;
    text-align: center;
    transition: .4s ease;
}

.about_btn:hover i {
    transform: rotate(-45deg);
}

/* ANIMATIONS */

@keyframes floatingCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes upDown {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* RESPONSIVE */

@media(max-width:991px) {

    .about_section {
        padding: 70px 0px;
    }

    .about_image_main {
        padding-right: 0px;
        margin-bottom: 50px;
    }

    .about_title {
        font-size: 38px;
    }

    .about_small_image {
        width: 180px;
    }

}

@media(max-width:767px) {

    .about_title {
        font-size: 30px;
    }

    .about_features {
        grid-template-columns: 1fr;
    }

    .about_floating_card {
        left: 10px;
        bottom: 10px;
        padding: 15px 18px;
    }

    .about_small_image {
        width: 130px;
        top: 20px;
    }

    .about_img_box img {
        height: 450px;
    }

}


/*  about  css end */




/* products css */
.product_section{
    padding:50px 0;
    background:#eef8ff;
}

/* HEADER */
.section_header{
    text-align:center;
    margin-bottom:50px;
}

.section_header .sub_title{
    color:var(--theme-color);
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;
}

.section_header h2{
    font-size:36px;
    font-weight:800;
    margin:10px 0;
}

.section_header p{

    margin:0 auto;
   font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: var(--black-color2);
}

/* GRID */
.product_grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */
/* .product_card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:0.4s;
    position:relative;
} */

/* .product_card:hover{
    transform:translateY(-10px);
} */

/* IMAGE */
.product_img{
    height:200px;
    overflow:hidden;
}

.product_img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.product_card:hover .product_img img{
    transform:scale(1.08);
}

/* ICON */
.icon_wrap{
    width:70px;
    height:70px;
    background:#1e88e5;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin:-35px auto 15px;
    box-shadow:0 10px 20px rgba(30,136,229,0.3);
}

/* TITLE */
/* CARD */
.product_card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:0.4s;
    position:relative;

    display:flex;
    flex-direction:column;
    height:100%;
}

/* TITLE */
.product_card h3{
    font-size:20px;
    font-weight:700;
    padding:15px 15px 10px;
    margin:0;

    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* TEXT */
.product_card p{
    font-size:16px;
    font-weight:500;
    line-height:24px;
    color:var(--black-color2);
    padding:0 15px;
    margin-bottom:15px;

    display:-webkit-box;
    -webkit-line-clamp:3; /* 3 lines only */
    -webkit-box-orient:vertical;
    overflow:hidden;

    flex-grow:1;
}

/* BUTTON */
.product_card a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--background-color);
    font-weight:600;
    text-decoration:none;
    transition:0.3s;

    background-color:var(--theme-color);
    padding:8px 10px;
    border-radius:8px;

    margin:0 0 20px 15px;
    width:fit-content;
}

.product_card a:hover{
    color:var(--background-color);
    background-color: #111;
}

.product_content h3 i{
    margin-right: 8px;
}

/* BUTTON */
.bottom_btn{
    text-align:center;
    margin-top:40px;
}

.bottom_btn a{
    display:inline-flex;
    gap:10px;
    padding:12px 25px;
    background:var(--theme-color);
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    align-items: center;
}

.bottom_btn a:hover{
    background:#000;
}

/* RESPONSIVE */
@media(max-width:991px){
    .product_grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .product_grid{
        grid-template-columns:1fr;
    }

    .section_header h2{
        font-size:28px;
    }
}



/* =========================
   COUNTER SECTION START
========================= */

.counter_section{
    padding: 80px 0;
    background:
    linear-gradient(rgba(44,156,216,0.92), rgba(2,108,205,0.92)),
    url('../images/counter-bg.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* COUNTER BOX */

.counter_box{
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.18);

    border-radius: 24px;
    padding: 35px 25px;

    text-align: center;

    transition: 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.counter_box:hover{
    transform: translateY(-10px);
    background: rgba(255,255,255,0.18);
}

/* ICON */

.counter_icon{
    width: 85px;
    height: 85px;

    margin: auto auto 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.15);

    border: 1px solid rgba(255,255,255,0.25);

    color: #fff;
    font-size: 34px;

    animation: floatIcon 3s ease-in-out infinite;
}

/* CONTENT */

.counter_content h2{
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.counter_content p{
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin: 0;
}

/* FLOAT ANIMATION */

@keyframes floatIcon{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-8px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* RESPONSIVE */

@media(max-width:991px){

    .counter_content h2{
        font-size: 40px;
    }
}

@media(max-width:576px){

    .counter_section{
        padding: 60px 0;
    }

    .counter_box{
        padding: 30px 20px;
    }

    .counter_content h2{
        font-size: 34px;
    }

    .counter_icon{
        width: 75px;
        height: 75px;
        font-size: 28px;
    }
}

/* counter css end */
/* =========================================================
   WHY CHOOSE SECTION
========================================================= */

.why_choose_section{
    position: relative;
    padding: 54px 0;
    /* background: linear-gradient(135deg,#f4f9ff,#eef7ff); */
    background-color: #fff;
    overflow: hidden;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

/* BACKGROUND SHAPES */

.why_choose_section::before{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgb(217 226 231 / 29%);
    border-radius: 50%;
    top: -120px;
    left: -120px;
}

.why_choose_section::after{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(113,175,247,0.12);
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
}

.container{
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================================================
   HEADING
========================================================= */

.why_choose_heading{
    text-align: center;
    margin-bottom: 70px;

}
.why_choose_heading span{
        color: var(--theme-color);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.why_choose_heading h5{
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;

}

.why_choose_heading p{
    margin: auto;
        font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-color2);
}

/* =========================================================
   GRID
========================================================= */

.why_choose_grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

/* =========================================================
   ITEM CARD
========================================================= */

.why_choose_item{
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    z-index: 1;
}

/* TOP BORDER EFFECT */

.why_choose_item::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right,var(--theme-color),#71aff7);
}

/* BIG NUMBER */

.why_choose_item::before{
    content: attr(data-number);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    font-weight: 900;
    color: rgb(44 156 216 / 10%);
    line-height: 1;
    z-index: -1;
}

/* HOVER */

.why_choose_item:hover{
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(44,156,216,0.15);
}

/* =========================================================
   ICON
========================================================= */

.icon_circle{
    width: 80px;
    height: 80px;
    margin: auto auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,var(--theme-color),#71aff7);

    color: #fff;
    font-size: 30px;

    box-shadow: 0 10px 30px rgba(44,156,216,0.25);

    transition: 0.4s ease;
}

.why_choose_item:hover .icon_circle{
    transform: rotateY(180deg) scale(1.08);
}

/* =========================================================
   TITLE
========================================================= */

.why_choose_item h4{
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

/* =========================================================
   TEXT
========================================================= */

.why_choose_item p{
        font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-color2);
    margin: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .why_choose_grid{
        grid-template-columns: repeat(2,1fr);
    }

    .why_choose_heading h5{
        font-size: 34px;
    }
}

@media(max-width:600px){

    .why_choose_section{
        padding: 70px 0;
    }

    .why_choose_grid{
        grid-template-columns: 1fr;
    }

    .why_choose_heading{
        margin-bottom: 50px;
    }

    .why_choose_heading h5{
        font-size: 28px;
    }

    .why_choose_item{
        padding: 35px 25px;
    }

    .why_choose_item::before{
        font-size: 60px;
    }
}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial_section{
    padding: 60px 0;
    /* background: #f5fbff; */
    background-image:
        linear-gradient(rgba(204, 221, 230, 0.88), rgba(198, 207, 212, 0.582)),
        url('../images/footer.jpg');
    overflow: hidden;
}

/* TITLE */

.testimonial_title{
    margin-bottom: 60px;
}

.testimonial_title span{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-color);

}

.testimonial_title h2{
     font-weight: 800;
    line-height: 30px;
    color: var(--black-color2);
    font-size: 33px;
    margin-bottom: 15px;
}

.testimonial_title p{
    width: 100%;
    margin: auto;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-color2);
}

/* CARD */

.testimonial_card{
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    height: 100%;
    margin-bottom: 50px;
    margin-top: 15px;

}

.testimonial_card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* QUOTE ICON */

.quote_icon{
    position: absolute;
    top: 20px;
    right: 25px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,#2c9cd8,#026ccd);

    color: #fff;
    font-size: 22px;
}

/* STARS */

.testimonial_stars{
    margin-bottom: 20px;
}

.testimonial_stars i{
    color: #ffc107;
    margin-right: 4px;
}

/* TEXT */

.testimonial_card p{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-color2);
    margin-bottom: 30px;
}

/* USER */

.testimonial_user{
    display: flex;
    align-items: center;
    gap: 15px;
}

/* IMAGE */

.testimonial_img img{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #aadefa;
}

/* INFO */

.testimonial_info h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111;
}

.testimonial_info span{
    color: #666;
    font-size: 14px;
}

/* PAGINATION */

.testimonial_pagination{
    position: relative;
    margin-top: 50px;
}

.testimonial_pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: #2c9cd8;
    opacity: 0.4;
}

.testimonial_pagination .swiper-pagination-bullet-active{
    opacity: 1;
}

/* RESPONSIVE */

@media(max-width:991px){

    .testimonial_title h2{
        font-size: 34px;
    }
}

@media(max-width:576px){

    .testimonial_section{
        padding: 60px 0;
    }

    .testimonial_title h2{
        font-size: 28px;
    }

    .testimonial_card{
        padding: 25px;
    }

    .quote_icon{
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* =========================
   FAQ SECTION START
========================= */

.faq_section{
    padding: 50px 0px 60px 0px !important;
    background: #f5fbff;
}

/* TITLE */

.faq_title{
    margin-bottom: 35px;
}

.faq_title span{
    display: inline-block;
    padding: 8px 0px;
    border-radius: 30px;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-color);
}

.faq_title h2{
    font-size: 33px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.faq_title p{
   font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-color2);
}

/* ACCORDION */

.custom_accordion .accordion-item{
    border: none;
    margin-bottom: 18px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.custom_accordion .accordion-button{
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    padding: 20px 22px;
    box-shadow: none !important;
}

.custom_accordion .accordion-button:not(.collapsed){
    background: linear-gradient(135deg,#2c9cd8,#2c9cd8);
    color: #fff;
}

.custom_accordion .accordion-button::after{
    filter: brightness(0);
}

.custom_accordion .accordion-button:not(.collapsed)::after{
    filter: brightness(100);
}

.custom_accordion .accordion-body{
    padding: 20px 22px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-color2);
    background: #fff;
}

/* IMAGE */

.faq_image_main{
    position:relative;
    width:100%;
    height:100%;
}

.faq_image{
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
    height:100%;
}

.faq_image img{
    width:100%;
    height:550px;
    object-fit:cover;
    display:block;
    transition:0.5s ease;
}

/* HOVER EFFECT */
.faq_image:hover img{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:991px){

    .faq_image img{
        height:500px;
    }

}

@media(max-width:576px){

    .faq_image{
        border-radius:20px;
    }

    .faq_image img{
        height:350px;
    }

}

/* FLOAT CARD */

.faq_card{
    position: absolute;
    bottom: 30px;
    left: -20px;

    display: flex;
    align-items: center;
    gap: 18px;

    background: #fff;
    padding: 20px 25px;
    border-radius: 18px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);

    animation: floatCard 3s ease-in-out infinite;
}

.faq_icon{
    width: 65px;
    height: 65px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,#2c9cd8,#026ccd);
    color: #fff;
    font-size: 24px;
}

.faq_card h4{
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 3px;
}

.faq_card p{
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-color2);
}

/* FLOAT */

@keyframes floatCard{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* RESPONSIVE */

@media(max-width:991px){

    .faq_title h2{
        font-size: 25px;
    }

    .faq_image img{
        height: 500px;
    }

    .faq_card{
        left: 20px;
    }
}

@media(max-width:576px){

    .faq_section{
        padding: 60px 0;
    }

    .faq_title h2{
        font-size: 18px;
    }

    .faq_image img{
        height: 400px;
    }

    .faq_card{
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }
}

/* faq css end */



/* =========================
   BLOG SECTION START
========================= */

.blog_section{
    padding: 50px 0;
    background: #f5fbff;
    overflow: hidden;
}

/* TITLE */

.blog_title{
    margin-bottom: 55px;
}

.blog_title span{
    display: inline-block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-color);
    padding: 8px 0px;
    border-radius: 30px;
}

.blog_title h2{
    font-size: 33px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.blog_title p{
   font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-color2);
    width: 100%;
}

/* BLOG CARD */

.blog_card{
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

.blog_card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE */

.blog_img{
    overflow: hidden;
}

.blog_img img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.blog_card:hover .blog_img img{
    transform: scale(1.08);
}

/* CONTENT */

.blog_content{
    padding: 25px;
}

/* META */

.blog_meta{
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.blog_meta span{
    font-size: 18;
     font-weight: 500;
    line-height: 24px;
    color: var(--black-color2);
}

.blog_meta span i{
    color: #2c9cd8;
    margin-right: 5px;
}

/* TITLE */

.blog_content h3{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 15px;
    color: #111;
}

/* TEXT */

.blog_content p{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-color2);
    margin-bottom: 22px;
}

/* BUTTON */

.blog_btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2c9cd8;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.blog_btn i{
    transition: 0.3s;
}

.blog_btn:hover{
    color: #111;
}

.blog_btn:hover i{
    transform: translateX(6px);
}

/* SWIPER BUTTON */

.swiper-button-next,
.swiper-button-prev{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #2c9cd881;
}

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

/* PAGINATION */

.swiper-pagination{
    position: relative;
    margin-top: 50px !important;
}

.swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: #2c9cd8;
    opacity: 0.4;
}

.swiper-pagination-bullet-active{
    opacity: 1;
}

/* RESPONSIVE */

@media(max-width:991px){

    .blog_title h2{
        font-size: 34px;
    }
}

@media(max-width:576px){

    .blog_section{
        padding: 60px 0;
    }

    .blog_title h2{
        font-size: 28px;
    }

    .blog_img img{
        height: 220px;
    }

    .blog_content h3{
        font-size: 20px;
        line-height: 30px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display: none;
    }
}


/* footer css */
.footer {
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image:
        linear-gradient(rgba(44, 156, 216, 0.88), rgba(44, 156, 216, 0.88)),
        url('../images/footer.jpg');
    padding: 50px 0px 20px 0px;
    background-attachment: fixed;
    /* background-color: #222222c5; */

}



.main_div_footer {
    margin-bottom: 24px;
}

.main_div_footer img {
    width: 200px;
    margin-bottom: 8px;
}

.main_div_footer .fa {
    background-color: var(--theme-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--white-color);

    border-radius: 50%;

    margin-right: 10px;
    font-size: 18px;
    border: 1px solid var(--white-color);
}



.footer_num_div>h6 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px !important;
}

.footer_num_div a {
    color: var(--white-color);
    display: block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;

}


.footer_num_div a:hover {
    color: var(--background-color);
    display: block;
    font-size: 14px;
}

.footer_num_div p {
    color: var(--white-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 0px !important;
    max-width: 75%;

}

.main_div_footer h5 {
    color: var(--white-color);
    text-transform: capitalize;
    padding-bottom: 20px;
    font-size: 22px;
    font-weight: 700;

}

.footer_usefull_link {
    margin-bottom: 20px;
}

.footer_usefull_link h5 {
    color: var(--white-color);
    text-transform: capitalize;
    padding-bottom: 13px;
    font-size: 20px;
    font-weight: 700;

}

.footer_usefull_link ul {
    list-style: none;
    padding: 0px;
}

.footer_usefull_link li {
    line-height: 45px;
    border-bottom: 1px dotted var(--third-color);
}

.footer_usefull_link li a {
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: .3px;
    text-transform: capitalize;
    font-weight: 500;

}


.footer_usefull_link li a:hover {
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: .3px;
}


.footer_usefull_link li:before {
    position: relative;
    content: '';
    margin-right: 4px;
    font-weight: bold;
    color: var(--white-color);
    top: 1px;
    font-size: 15px;
}

.footer_usefull_link b {
    letter-spacing: 1px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
}

.footer_usefull_link p {
    margin-bottom: 4px !important;
}

.footer_usefull_link p iframe {
    border-radius: 10px;
    margin-bottom: 10px;
}

.footer_social_icon {
    text-align: left;
}

.footer_social_icon>b {
    color: var(--white-color);
    font-size: 14px;
    margin-right: 6px;
    display: block;
    margin-bottom: 5px;
}

.footer_social_icon>a {
    color: var(--white-color);
    border: 1px solid var(--background-color);
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    /* border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; */
    border-radius: 5px;
    transition: .4s ease-in-out;

}

.footer_social_icon>a:hover {
    color: var(--white-color);
    background-color: var(--secondry-color);
    border: 1px solid var(--secondry-color);

}

.footer_usefull_link ul li a i{
    margin-right: 10px;
}

.footer_usefull_link ul li a:hover i{
    background: var(--theme-color);
    color: #fff;
    transform: rotate(12deg) scale(1.08);
    box-shadow: 0 8px 20px rgba(44,156,216,0.35);
}


/*  */

.copy_right_section {
    background-color: #2180c0;
    text-align: center;
    padding: 7px 1px;
}

.copyright_content_div>p {
    margin-bottom: 0px !important;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
}

.copyright_content_div>p>a {
    color: #ddfff9;
    text-decoration: underline !important;
    transition: .3s ease-in-out;
}

.copyright_content_div>p>a:hover {
    color: var(--white-color);
}

.copyright_content_div>p>a>img {
    width: 45px;
    object-fit: contain;
    margin-left: 3px;
    filter: brightness(0%) invert(1)
}

/**/



/* services css */

.service_section {
    position: relative;
    padding: 47px 0px 30px 0px;
    background-color: #fff;
}



/* ================= TAGLINE BOX ================= */

.main_div_heading_services {
    margin: auto;
    text-align: center;
}

.services_section-title__tagline-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    position: relative;
}

/* ================= TEXT ================= */
.services_section-title__tagline {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    color: var(--black-color);
    margin: 0;
    position: relative;
}

.nav-pills .nav-link:hover {
    color: var(--white-color) !important;
    background-color: var(--secondry-color) !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--white-color) !important;
    background-color: var(--secondry-color) !important;
}

/* .nav_pills_div_main .nav-pills.nav-item.active{
color: var(--black-color2) !important;
} */
.nav_pills_div_main>ul {
    list-style: none !important;
    outline: none !important;
}

.nav_pills_div_main>ul>li {
    display: block;
    width: 100% !important;
}


.nav_pills_div_main>ul>li>button {
    position: relative;
    width: 100%;
    background-color: var(--color-white) !important;
    outline: none !important;
    box-shadow: none !important;
    border: 1.4px solid var(--secondry-color) !important;
    padding: 17px 20px !important;
    border-radius: 8px !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black-color2);
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

/* .nav_pills_div_main > ul > li > button::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: all 0.4s ease;
    z-index: -1;
} */


/* .nav_pills_div_main > ul > li > button::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}


.nav_pills_div_main > ul > li > button:hover::before{
    left: 0;
}

.nav_pills_div_main > ul > li > button:hover::after{
    opacity: 1;
}

.nav_pills_div_main > ul > li > button:hover{
    color: var(--color-white);
    border-color: var(--secondary-color) !important;
} */

/*  */

#pills-tabContent {
    border: 1px solid var(--secondry-color) !important;
    padding: 20px 15px;
}



.nav_pills_div_main>ul>li>a {
    position: relative;
    width: 100%;
    background-color: var(--color-white) !important;
    outline: none !important;
    box-shadow: none !important;
    border: 1.4px solid var(--secondry-color) !important;
    padding: 17px 20px !important;
    border-radius: 8px !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black-color3) !important;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.nav_pills_div_main>ul>li>a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondry-color);
    transition: all 0.4s ease;
    z-index: -1;
    color: var(--background-color);
}


.nav_pills_div_main>ul>li>a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
    color: var(--background-color);
}


.nav_pills_div_main>ul>li>a:hover::before {
    left: 0;
}

.nav_pills_div_main>ul>li>a:hover::after {
    opacity: 1;
    color: var(--background-color) !important;
}

.nav_pills_div_main>ul>li>a:hover {
    color: var(--color-white) !important;
    border-color: var(--secondry-color) !important;
}


.nav_pills_div_main>ul>li>button.active {
    background: var(--secondry-color);
    border: none !important;
    color: var(--color-white);
}

.main_div_content {
    background-color: var(--color-white);
    border: 1px solid var(--secondry-color);
    padding: 0px 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.main_div_content {
    padding: 10px 10px 10px 0px;
    border-radius: 10px;
}

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

.service_image_main_div>.service_image {
    text-align: center;
    border-radius: 10px;
}

.service_image_main_div>.service_image>img {
    filter: brightness(94%);
    border-radius: 10px;
}


.sercive_tab_content_div>h3 {
    color: var(--black-color2);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 22px;
    margin-bottom: 5px;
    padding-top: 22px;
}

.sercive_tab_content_div>p {
    font-size: 15px;
    line-height: 24px;
    color: var(--black-color2);
    font-weight: 500;
    margin-bottom: 10px;
}


.sercive_tab_content_div>h4 {
    color: var(--secondry-color);
    font-weight: 800;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 5px;
}

.sercive_tab_content_div>ul {
    list-style: none;
}


.sercive_tab_content_div>ul>li {
    font-size: 15px;
    line-height: 28px;
    color: var(--black-color2);
    font-weight: 500;
    margin-bottom: 0px;
}

.sercive_tab_content_div>ul>li>a {
    color: var(--black-color2);
}

.sercive_tab_content_div>ul>li>a:hover {
    color: var(--secondry-color);
}

.services_slider_image_div {
    height: 150px;
    width: 100%;
    object-fit: cover;
    border: 2px solid var(--color-white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}


.services_slider_image_div>img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    border: 2px solid var(--color-white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;

}

/* end tab css */



.services_main_div_box {
    position: relative;
    margin-bottom: 20px;
    border: 2px solid var(--color-white);
    border-radius: 25px;
}

.service_image_div {
    position: relative;
    margin-bottom: 7px;
}

.overlay_arrow_icon_div {
    position: absolute;
    top: 10px;
    left: 20px;
}

.overlay_arrow_icon_div>i {
    background-color: var(--secondry-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100px;
    color: var(--color-white);
    font-size: 17px;
    clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);


}

.services_main_div_box:hover .overlay_arrow_icon_div i {
    background-color: var(--secondry-color);
}

.service_content_div {
    padding: 0px 8px 10px 7px;
}

.service_content_div>h3 {
    color: var(--secondry-color);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.services_main_div_box:hover .service_content_div>h3 {
    color: var(--secondry-color);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.service_content_div>p {
    color: var(--black-color2);
    font-size: 15px;
    line-height: 24px;
}

.service_content_div>p>span {
    display: block;
    font-weight: 600;
    color: var(--secondry-color);
    font-size: 15px;
}


/* end */



/*  */

/* css start====== */
.mobile_call_whatsapp_fixed_main_div {
    position: fixed;
    bottom: 120px;
    right: 10px;
    z-index: 9;
}

.mobile_whatsapp {
    display: none;
}

.call_icon_div {
    text-align: center;
}

.call_icon_div>a {
    background-color: var(--third-color);
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 100px;
    animation: moveUpDown 2s ease-in-out infinite;
    display: inline-block;
    margin-bottom: 8px;
}

@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
        /* Adjust the distance */
    }
}

.call_icon_div>a>img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}

.whatsapp_icon_div {
    text-align: center;
}

.whatsapp_icon_div>a {
    background-color: #008000;
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 100px;
    animation: zigzag 0.5s ease-in-out infinite;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    animation-timing-function: steps(1, end);
    position: relative;
    animation: zigzag 8s infinite;
    display: inline-block;
}

@keyframes zigzag {
    0% {
        left: 0px;
    }

    1% {
        left: -5px;
    }

    2% {
        left: 5px;
    }

    3% {
        left: -5px;
    }

    4% {
        left: 5px;
    }

    5% {
        left: 0px;
    }

    100% {
        left: 0px;
    }
}

.whatsapp_icon_div>a>img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}

.call_icon_div a {
    background-color: #ffcb3a;
}

.desktop_whatsapp {
    display: block;
}

.mobile_whatsapp {
    display: none;
}

/*  */






.faq-section {
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 40px 0px 40px 0px;
    background-color: #ececec;
}

.faq-section.style-vision-mission {
    background-position: left;
    margin-bottom: -160px;
}

.faq-section .common-title {
    max-width: 430px;
    width: 100%;
    margin-bottom: 15px;
}

.faq-section .common-title h5 {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.faq-section .common-title span {
    color: var(--secondry-color);
}

.faq-section .text {
    max-width: 550px;
    width: 100%;
    margin-bottom: 30px;
}

.faq-section .blog-btn {
    margin-bottom: 50px;
}

.faq-accordion .accordion-item {
    border: 0;
    margin-bottom: 20px;
    background-color: var(--background-color);
    padding-bottom: 10px;
    border-radius: 40px;
}

.faq-accordion .accordion-item .accordion-header .accordion-button {
    border: 0;
    box-shadow: none;
    padding: 22px 20px 12px 22px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: var(--black-color2);
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    font-weight: 700;
    background-color: var(--background-color);
    gap: 10px;
}

.faq-accordion .accordion-item .accordion-header .accordion-button .accordion-title {
    color: var(--secondry-color);
    margin-right: 5px;
}

.faq-accordion .accordion-item .accordion-header .accordion-button .icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--background-color);
    border-radius: 50%;
    margin-left: auto;
    background-color: #f8f7f0;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-plus,
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-minus {
    position: absolute;
    background-color: var(--secondry-color);
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-plus {
    width: 12px;
    height: 2px;
}

.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-minus {
    width: 2px;
    height: 12px;
}

.faq-accordion .accordion-item .accordion-header .accordion-button.collapsed .icon .icon-plus {
    opacity: 1;
}

.faq-accordion .accordion-item .accordion-header .accordion-button.collapsed .icon .icon-minus {
    opacity: 1;
}

.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon {
    background-color: var(--secondry-color);
    transform: rotate(180deg);
}

.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon .icon-plus {
    opacity: 1;
    background-color: var(--background-color);
}

.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon .icon-minus {
    opacity: 0;
    background-color: var(--background-color);
}

.faq-accordion .accordion-item .accordion-header .accordion-button:after {
    display: none;
}

.faq-accordion .accordion-item .accordion-body {
    padding: 0 50px 12px 35px;
    font-size: 15px;
    font-weight: 500;
}

.faq-section .common-subtitle {
    margin-bottom: 10px;
}

.faq-section .common-subtitle i {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondry-color);
}

.faq-section .common-subtitle span {
    font-weight: 700;
    font-size: 20px;
    color: var(--secondry-color);
}

.faq_right_txt>p {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
}

.faq_btn_div {
    margin-top: 30px;
}

.faq_btn_div>a {
    background-color: var(--secondry-color);
    padding: 10px 20px;
    border-radius: 100px;
    color: var(--background-color) !important;
    font-weight: 500;
    font-size: 18px;

}

/* end */











/* faq */

.faq_section {
    padding: 4px 0;
    background: #ffffff;
    overflow: hidden;
}

.faq_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.faq_left {
    width: 40%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.faq_left h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondry-color);
}

.faq_left p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--black-color2);
    font-weight: 500;
    margin: 0;
    max-width: 500px;
}

.faq_image {
    margin-top: 30px;
}
/*
.faq_image img {
    width: 320px;
    max-width: 100%;
} */

/* RIGHT SIDE */
.faq_right {
    width: 50%;
}

/* FAQ ITEM */
.faq_item {
    border-bottom: 1px solid #d8d8d8;
    padding: 12px 0;
}

/* QUESTION */
.faq_question {
    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;

    font-size: 18px;
    font-weight: 600;
    color: var(--secondry-color);

    background-color: #fff;

    padding: 18px 20px;

    border-radius: 6px;

    transition: 0.4s ease;
}

.faq_question:hover {
    background-color: var(--secondry-color);
    color: #fff;
}

/* PLUS ICON */
.faq_question span {
    font-size: 24px;
    transition: 0.4s ease;
}

/* ANSWER */
.faq_answer {
    max-height: 0;
    overflow: hidden;

    transition: all 0.4s ease;

    color: var(--black-color2);

    line-height: 1.7;

    background: #fff;

    padding: 0 20px;

    border-radius: 0 0 6px 6px;

    font-size: 15px;
    font-weight: 500;
}

/* ACTIVE */
.faq_item.active .faq_question {
    background-color: var(--secondry-color);
    color: #fff;
}

.faq_item.active .faq_answer {
    max-height: 300px;
    padding: 20px;
    margin-top: 5px;
}

.faq_item.active .faq_question span {
    transform: rotate(45deg);
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px) {

    .faq_main {
        flex-direction: column;
        gap: 50px;
    }

    .faq_left,
    .faq_right {
        width: 100%;
    }

    .faq_left {
        align-items: center;
        text-align: center;
    }

    .faq_left h2 {
        font-size: 50px;
    }

    .faq_left p {
        max-width: 100%;
    }

}

@media(max-width:576px) {

    .faq_section {
        padding: 60px 0;
    }

    .faq_left h2 {
        font-size: 36px;
    }

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

    .faq_question {
        font-size: 16px;
        padding: 16px;
    }

    .faq_answer {
        font-size: 14px;
    }

}
