@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;600;700&family=Montserrat:wght@400;600;700&display=swap');


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

:root {
    --primary-color: #ff0000;
    --secondry-color: #e60d2e;
    --white-color: #fff;
    --black-color: #000;
    --black-color2: #222222;
    --black-color3: #2C2C2C;
    --black-color4: #3D3D3D;
    --gray-color: #E5E4E2;
    --gray-color2: #f5f5f5;
    --gray-color3: #f7f7f7;
    --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: 'Montserrat', sans-serif;
    overflow-x: hidden !important
}

body,
html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', 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: 'Bai Jamjuree', sans-serif;
}

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

}

/*  */

.slider_section2 {
    display: none;
}


.about_us_section {
    padding: 40px 0px 30px 0px;
}

.section-title__tagline-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.section-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    border: 1px solid var(--secondry-color);
}

.section-title__shape-1 {
    position: absolute;
    right: -1px;
    top: -4px;
}

.section-title__shape-1>.section-title__circle {
    position: relative;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}

.section-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    border: 1px solid var(--secondry-color);
}

.section-title__shape-2 {
    position: absolute;
    left: -1px;
    top: -4px;
}

.section-title__shape-2>.section-title__circle {
    position: relative;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}

.section-title__tagline {
    position: relative;
    display: block;
    color: var(--servixa-base);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 0px !important;
}

.about_us_image_div_main {
    margin-bottom: 150px;
    border-radius: 4px;
    position: relative;
}


.about_us_image_div_main>.about_us_img_box {
    border-radius: 5px;
    position: relative;
}

.about_us_image_div_main>.about_us_img_box>img {
    border-radius: 5px;
    width: 400px;
    height: 280px;
    object-fit: cover;
    border: 10px solid var(--white-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

.about_us_img_box_overlay {
    position: absolute;
    bottom: -130px;
    width: 300px;
    right: 0px;
    border: 10px solid var(--white-color);
    border-radius: 2px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.about_us_img_box_overlay>img {
    border-radius: 2px;
}


.experience_box_overlay {
    position: absolute;
    bottom: -80px;
    left: 0px;
    background-color: var(--secondry-color);
    text-align: center;
    padding: 5px 26px;
    border-radius: 4px;
}

.experience_box_overlay>h4 {
    color: var(--white-color);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 30px;
    margin-bottom: 3px !important;
}

.experience_box_overlay>span {
    color: var(--white-color);
    font-weight: 600;
    font-size: 14px;
}




.about_us_content_div>h1 {
    color: var(--black-color2);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 30px;
}

.about_us_content_div>h1>span {
    color: var(--secondry-color);
}

.about_us_content_div>p {
    font-size: 14px;
    line-height: 25px;
    color: var(--black-color);
    font-weight: 500;
}

.flex_div_about_ser {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.about_service_image_div>span {
    background-color: var(--secondry-color);
    border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
}

.about_service_image_div>span:hover {
    background-color: var(--black-color);
}

.about_service_image_div>span>img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: auto;
    filter: brightness(0%) invert(1);
    transition: transform .4s ease;
}

.about_service_image_div:hover>span>img {
    animation: zigzag .5s ease-in-out;
}

@keyframes zigzag {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0);
    }
}


.about_service_content>h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--black-color2);
    margin-bottom: 2px !important;
}

.about_service_content>p {
    font-size: 14px;
    line-height: 22px;
    color: var(--black-color);
    font-weight: 500;
}

.about_us_content_div>strong {
    color: var(--black-color);
    display: inline-block;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
}

.about_us_content_div>strong>span {
    color: var(--secondry-color);
}

.read_more_btn>a {
    background-color: var(--black-color);
    padding: 10px 0px 10px 20px;
    border-radius: 100px;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.read_more_btn>a>i {
    background-color: var(--secondry-color);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 100px;
    margin: 0px 0px 0px 12px;
}

.read_more_btn>a:hover {
    background-color: var(--secondry-color);
}

.read_more_btn>a:hover>i {
    background-color: var(--black-color);
}

/*  */


/* services start */

.services_section {
    padding: 30px 0px 30px 0px;
    background-color: var(--gray-color2);
}


.main_div_title_service {
    margin-bottom: 30px;
    text-align: center;
}


.service-title__tagline-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.service-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    border: 1px solid var(--secondry-color);
}

.service-title__shape-1 {
    position: absolute;
    right: -1px;
    top: -4px;
}

.service-title__shape-1>.service-title__circle {
    position: relative;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}

.service-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    border: 1px solid var(--secondry-color);
}

.service-title__shape-2 {
    position: absolute;
    left: -1px;
    top: -4px;
}

.service-title__shape-2>.service-title__circle {
    position: relative;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}

.service-title__tagline {
    position: relative;
    display: block;
    color: var(--servixa-base);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 0px !important;
}


.main_div_title_service>h2 {
    color: var(--black-color);
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}


.main_div_title_service>h2>span {
    color: var(--secondry-color);
}

.services_main_div {
    background-color: var(--white-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 5px;
    padding: 5px;
}

.services_main_div>.services_image_div {
    position: relative;
    margin-bottom: 30px;
}


.services_main_div>.services_image_div>img {
    border-radius: 3px;
    transition: .5s ease-in-out;
}

.services_main_div:hover>.services_image_div>img {
    filter: brightness(70%);
    border-radius: 3px;
    transition: .5s ease-in-out;
}

.services_main_div>.services_image_div>.overlay_icon_service {
    position: absolute;
    bottom: -30px;
    left: 0px;
    right: 0px;
    margin: auto;
    text-align: center;
}

.services_main_div>.services_image_div>.overlay_icon_service>span {
    background-color: var(--secondry-color);
    width: 70px;
    height: 70px;
    line-height: 60px;
    border-radius: 100px;
    display: inline-block;
    text-align: center;
    border: 4px solid var(--white-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.services_main_div>.services_image_div>.overlay_icon_service>span>img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin: auto;
    filter: brightness(0%) invert(1);
    border-radius: 5px;
}


.services_main_div>.services_image_div>.overlay_icon_service>span>img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: auto;
    filter: brightness(0%) invert(1);
    transition: transform .4s ease;
}

.services_main_div:hover>.services_image_div>.overlay_icon_service>span>img {
    animation: zigzag .5s ease-in-out;
}

.services_main_div:hover>.services_image_div>.overlay_icon_service>span {
    background-color: var(--black-color);
}

@keyframes zigzag {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0);
    }
}

.overlay_number_service {
    position: absolute;
    top: 0px;
    left: 0px;
    margin: auto;
    text-align: center;
}

.overlay_number_service>span {
    background-color: var(--secondry-color);
    height: 60px;
    width: 50px;
    line-height: 60px;
    color: var(--white-color);
    font-weight: 700;
    font-size: 24px;
    display: inline-block;
    border-radius: 3px 0px 20px 0px;
    border-right: 4px solid var(--white-color);
    border-bottom: 4px solid var(--white-color);
}

.services_main_div:hover .overlay_number_service>span {
    background-color: var(--black-color);
}


.service_content_box_div {
    text-align: center;
    padding: 6px 10px;
}

.service_content_box_div>h4 {
    color: var(--black-color);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 22px;
}


.service_content_box_div>h4>a {
    color: var(--black-color);
}

.service_content_box_div>h4>a:hover {
    color: var(--secondry-color);
}

.service_content_box_div>p {
    font-size: 14px;
    line-height: 24px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 6px !important;
}

.service_content_box_div>a {
    color: var(--secondry-color);
    font-weight: 600;
    font-size: 14px;
    transition: .5s ease-in-out;
}

.service_content_box_div>a:hover {
    letter-spacing: .4px;
    transition: .5s ease-in-out;
}

.view_all_service_btn {
    text-align: center;
    margin-top: 35px;
}


.view_all_service_btn>a {
    background-color: var(--black-color);
    padding: 10px 0px 10px 20px;
    border-radius: 100px;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.view_all_service_btn>a>i {
    background-color: var(--secondry-color);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 100px;
    margin: 0px 0px 0px 12px;
}

.view_all_service_btn>a:hover {
    background-color: var(--secondry-color);
}

.view_all_service_btn>a:hover>i {
    background-color: var(--black-color);
}

/* services end */


/* how to work css */

.how_to_work_section {
    padding-bottom: 20px;
}

.main_div_title_how_to_work {
    padding: 50px 0px 20px 0px;
    text-align: center;
}


.how_to_work-title__tagline-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.how_to_work-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    border: 1px solid var(--secondry-color);
}

.how_to_work-title__shape-1 {
    position: absolute;
    right: -1px;
    top: -4px;
}

.how_to_work-title__shape-1>.how_to_work-title__circle {
    position: relative;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}

.how_to_work-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    border: 1px solid var(--secondry-color);
}

.how_to_work-title__shape-2 {
    position: absolute;
    left: -1px;
    top: -4px;
}

.how_to_work-title__shape-2>.how_to_work-title__circle {
    position: relative;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}

.how_to_work-title__tagline {
    position: relative;
    display: block;
    color: var(--servixa-base);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 0px !important;
}


.main_div_title_how_to_work>h3 {
    color: var(--black-color);
    font-size: 30px;
    font-weight: 800;
    text-transform: capitalize;
}


.main_div_title_how_to_work>h3>span {
    color: var(--secondry-color);
}

/* howtobg01 */

.how_to_work_main_box_div {
    position: relative;
    margin-bottom: 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.801), rgba(0, 0, 0, 0.696)), url(../images/howtobg01.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 20px;
    border-radius: 10px;
}

.how_to_work_img_div {
    margin-bottom: 20px;
    border-bottom: 1px dotted var(--white-color);
    padding-bottom: 15px;
}

.how_to_work_img_div>img {
    width: 70px;
    filter: brightness(0%) invert(1);
}

.howto_content_div>h4 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.howto_content_div>p {
    color: var(--white-color);
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 2px !important;
}

.overlay_how_to_number {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: var(--secondry-color);
    width: 60px;
    height: 70px;
    line-height: 66px;
    border: 4px solid var(--white-color);
    text-align: center;
    border-radius: 3px 0px 0px 20px;
}

.overlay_how_to_number>span {
    color: var(--white-color);
    font-size: 30px;
    font-weight: 600;
}

/* end */


/*  */

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

.image_overlay_car_whyus {

    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.208)), url(../images/bg.jpeg);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 74.5% 100%, 74.5% 93%, 5.5% 93%, 0 60%);
    padding: 30px 40px 50px 70px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
    background-color: var(--secondry-color);

}


.main_div_title_whychoose {
    padding: 50px 0px 10px 0px;

}


.whychoose-title__tagline-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.whychoose-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    border: 1px solid var(--secondry-color);
}

.whychoose-title__shape-1 {
    position: absolute;
    right: -1px;
    top: -4px;
}

.whychoose-title__shape-1>.whychoose-title__circle {
    position: relative;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}

.whychoose-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    border: 1px solid var(--secondry-color);
}

.whychoose-title__shape-2 {
    position: absolute;
    left: -1px;
    top: -4px;
}

.whychoose-title__shape-2>.whychoose-title__circle {
    position: relative;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}

.whychoose-title__tagline {
    position: relative;
    display: block;
    color: var(--servixa-base);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 0px !important;
}


.main_div_title_whychoose>h3 {
    color: var(--black-color);
    font-size: 30px;
    font-weight: 800;
    text-transform: capitalize;
}


.main_div_title_whychoose>h3>span {
    color: var(--secondry-color);
}

.why_choose_us_content_div>p {
    font-size: 14px;
    line-height: 25px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.nested_point_div {
    display: flex;
    gap: 7px;
    margin-bottom: 20px;
}

.nested_point_img_div>span {
    background-color: var(--secondry-color);
    border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;

}

.nested_point_img_div>span>img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0%) invert(1);
}

.nested_point_div:hover>.nested_point_img_div>span {
    background-color: var(--black-color);
}

.nested_why_us_cotent>h4 {
    color: var(--black-color);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
    margin-bottom: 4px !important;
}


.nested_why_us_cotent>p {
    color: var(--black-color2);
    font-size: 14px;
    font-weight: 500;
}


.counter_main_div {
    background-color: rgba(0, 0, 0, 0.651);
    padding: 20px 20px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 10px;

}

.counter_icon_div {
    margin-bottom: 15px;
}

.counter_icon_div>img {
    width: 70px;
    height: 70px;
    filter: brightness(0%) invert(1);
}


.counter_number_flex_div {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.counter_number_flex_div>h3 {
    color: var(--white-color);
    margin-bottom: 10px !important;
    font-size: 30px;
    font-weight: 700;
}

.counter_number_flex_div>span {
    color: var(--white-color);
    font-size: 30px;
}

.counter_number_div>h4 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
}

/*  */


/*  */

.before_after_section {
    background-color: var(--gray-color2);
    padding: 30px 0px 20px 0px;
}

.main_div_title_beforeafter {
    padding: 0px 0px 10px 0px;

}


.beforeafter-title__tagline-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.beforeafter-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    border: 1px solid var(--secondry-color);
}

.beforeafter-title__shape-1 {
    position: absolute;
    right: -1px;
    top: -4px;
}

.beforeafter-title__shape-1>.beforeafter-title__circle {
    position: relative;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}

.beforeafter-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    border: 1px solid var(--secondry-color);
}

.beforeafter-title__shape-2 {
    position: absolute;
    left: -1px;
    top: -4px;
}

.beforeafter-title__shape-2>.beforeafter-title__circle {
    position: relative;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}

.beforeafter-title__tagline {
    position: relative;
    display: block;
    color: var(--servixa-base);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 0px !important;
}


.main_div_title_beforeafter>h3 {
    color: var(--black-color);
    font-size: 30px;
    font-weight: 800;
    text-transform: capitalize;
}


.main_div_title_beforeafter>h3>span {
    color: var(--secondry-color);
}

.before_after_img_div {
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: var(--secondry-color);
    clip-path: polygon(0% 0%, 84% 1%, 100% 50%, 88% 100%, 0% 100%);
    padding-right: 10px;

}


.before_after_img_div>img {
    border-radius: 10px;
    clip-path: polygon(0% 0%, 84% 1%, 100% 50%, 88% 100%, 0% 100%);
}

.before_after_content_div>strong {
    color: var(--secondry-color);
    font-style: italic;
    display: inline-block;
    margin-bottom: 4px;
    font-size: 15px;
}

.before_after_content_div>p {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 22px;
    margin-bottom: 3px !important;
}

.before_after_content_div>h5 {
    color: var(--black-color2);
    font-weight: 700;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 3px !important;
    margin-top: 6px;
}

/*  */


/*  */
.faq_section {
    padding: 40px 0px 20px 0px;
}


.main_div_title_faq_faq {
    padding: 0px 0px 10px 0px;

}


.faq_faq-title__tagline-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.faq_faq-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    border: 1px solid var(--secondry-color);
}

.faq_faq-title__shape-1 {
    position: absolute;
    right: -1px;
    top: -4px;
}

.faq_faq-title__shape-1>.faq_faq-title__circle {
    position: relative;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}

.faq_faq-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    border: 1px solid var(--secondry-color);
}

.faq_faq-title__shape-2 {
    position: absolute;
    left: -1px;
    top: -4px;
}

.faq_faq-title__shape-2>.faq_faq-title__circle {
    position: relative;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}

.faq_faq-title__tagline {
    position: relative;
    display: block;
    color: var(--servixa-base);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 0px !important;
}


.main_div_title_faq_faq>h3 {
    color: var(--black-color);
    font-size: 30px;
    font-weight: 800;
    text-transform: capitalize;
}


.main_div_title_faq_faq>h3>span {
    color: var(--secondry-color);
}


.faq_main_div>.accordion>.accordion-item>.accordion-header>.accordion-button {
    box-shadow: none !important;
    outline: none !important;
    background-color: var(--white-color) !important;
    color: var(--black-color) !important;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq_main_div>.accordion>.accordion-item>.accordion-collapse>.accordion-body {
    padding: 10px 20px 6px 20px !important;
    border-top: 1px solid var(--gray-color) !important;
}

.faq_main_div>.accordion>.accordion-item>.accordion-collapse>.accordion-body>.faq_content_div>p {
    font-size: 13px;
    line-height: 23px;
    font-weight: 600;
    color: var(--black-color4);
    margin-bottom: 2px !important;
}

.faq_image_div {
    position: relative;
    margin-top: 80px;
}


/*  */



/* footer css */
.footer {
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--black-color);
    padding: 50px 0px 20px 0px;
    background-attachment: fixed;

}



.main_div_footer {
    margin-bottom: 20px;
}

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

.main_div_footer .fa {
    background-color: var(--black-color2);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--white-color);
    border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
    margin-right: 10px;
    font-size: 18px;
}

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

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

}


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

.footer_num_div p {
    color: var(--white-color);
    font-size: 13px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 0px !important;

}

.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: 13px;
    letter-spacing: .3px;
    text-transform: capitalize;
    font-weight: 600;

}


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


.footer_usefull_link li:before {
    position: relative;
    content: '\279D';
    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(--gray-color4);
    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%;
    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);

}


/*  */

.copy_right_section {
    background-color: var(--black-color2);
    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: var(--white-color);
    text-decoration: underline !important;
}

.all_pg_bn_sections {
    background-color: #eaeaea;
    padding: 7px 0px;
}

.all_pg_bn_ovr_txt a {
    margin: 0px 10px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.all_pg_bn_ovr_txt span {
    color: #000;
}

.all_pg_a {
    color: #000 !important;
}

.contact-us-page {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
    background-color: #fff;
}

.contact-content {
    background: var(--white-color);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    border: 1px solid #ccc;
    margin-bottom: 0px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    font-size: 20px;
    color: var(--white-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    flex-shrink: 0;
    border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
    background: var(--primary-color);
}

.contact-info h5 {
    color: var(--secondry-color);
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px !important;
}

.contact-info-content p {
    font-size: 14px;
    color: var(--black-color);
    display: block;
    margin-bottom: 0px;
    font-weight: 600;
}

.contact-info-content p a {
    color: var(--black-color);
    font-weight: 600;
}

.footer_social_icon.social-icon-contact .facebook1 {
    background-color: #1877F2 !important;
    color: #fff;
    border: none;
}

.footer_social_icon.social-icon-contact .instagram1 {
    background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C, #F77737, #FCAF45);
    color: #fff;
    border: none;
}

.footer_social_icon.social-icon-contact .youtube1 {
    background-color: #FF0000;
    color: #FFFFFF;
    border: none;
}

.footer_social_icon.social-icon-contact b {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 600;
}

.footer_social_icon.social-icon-contact{
    position: relative;
    margin-top: 7px;
}

.main_div_contact_us_numbers>h3 {
    font-size: 35px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--black-color);
    letter-spacing: .4px;
    margin-bottom: 15px;
}

.main_div_contact_us_numbers>span {
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}


.contact_page_frm_main_div {
    padding: 20px;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 0px;
    background-color: #fff;
    border-radius: 10px 0px 0px 10px;
}

.contact_page_frm_main_div>h3 {
    font-size: 35px;
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: .4px;
    margin-bottom: 20px;
    color: var(--black-color2);
}

.contact_page_frm_main_div>span {
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.contact_page_frm_main_div .input_div_contact>label {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.contact_page_frm_main_div .input_div_contact>input {
    border-radius: 5px !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 400;
    color: var(--black-color);
    border: 1px solid #333 !important;
    height: 40px;
    background-color: var(--white-color);
}

.contact_page_frm_main_div .input_div_contact>input:focus {
    box-shadow: none;
    outline: none;
}

.form-select {
    border: 1px solid #000;

}

.contact_page_frm_main_div .input_div_contact {
    margin-bottom: 10px;
}

.form-select:focus {
    border: 1px solid #000;
    box-shadow: none;
    outline: none;
}

.form-controlarea {
    border-radius: 5px !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
    padding: .375rem .75rem;
    resize: none;
    font-weight: 400;
    color: var(--black-color);
    border: 1px solid #333 !important;
    height: 120px;
    width: 100%;
    background-color: var(--white-color);
}

.contact_page_frm_main_div .input_div_contact_btn>button {
    color: var(--white-color);
    background-color: var(--primary-color);
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px !important;
}

.map-sec{
    position: relative;
    width: 100%;
    padding: 0px 0px 20px;
}

.about-us-how-it-word{
    background-color: #f1f2f1;
}
.sitemap-sec-page{
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
}

.sitemap_main_div_list {
    position: relative;
    margin-bottom: 20px;
}

.collpase_list_ul_div {
    max-height: 280px;
    overflow: auto !important;
}


.collpase_list_ul_div::-webkit-scrollbar {
    width: 6px;
}

.collpase_list_ul_div::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.collpase_list_ul_div::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.collpase_list_ul_div::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.collpase_list_ul_div {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.rkbrush_collapse_div>li>a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding-right: 0px;
    font-weight: 700;
    font-size: 16px;
}

.collpase_list_ul_div>ul {
    padding: 0px 10px !important;
    list-style: none !important;
}

.collpase_list_ul_div>ul>li {
    border-bottom: 1px dashed #4a4d51;
    padding: 7px 0px 7px 0px;
}

.collpase_list_ul_div>ul>li:last-child {
    border-bottom: none;
}

.collpase_list_ul_div>ul>li>a {
    display: block;
    font-size: 15px;
    color: #000;
    text-transform: capitalize;
}

.rkbrush_collapse_div>li {
    background-color: var(--primary-color);
    margin-bottom: 0px;
    padding: 10px 20px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.rkbrush_collapse_div>li>span {
    cursor: pointer;
    background-color: var(--black-color);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white-color);
}


.services-main-all-sec{
    position: relative;
    width: 100%;
    padding: 15px 0px 15px;
}

.services-main-card-box{
    position: relative;
    margin-bottom: 20px;
    background: #fff;
    border: solid 1px #d4d4d4;
    border-radius: 6px;
    padding: 4px;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}
.services-main-card-box .services_image_div {
    position: relative;
    margin-bottom: 30px;
}

.services-main-card-box>.services_image_div>img {
    border-radius: 3px;
    transition: .5s ease-in-out;
}

.services-main-card-box:hover>.services_image_div>img {
    filter: brightness(70%);
    border-radius: 3px;
    transition: .5s ease-in-out;
}

.services-main-card-box>.services_image_div>.overlay_icon_service {
    position: absolute;
    bottom: -30px;
    left: 0px;
    right: 0px;
    margin: auto;
    text-align: center;
}

.services-main-card-box>.services_image_div>.overlay_icon_service>span {
    background-color: var(--secondry-color);
    width: 70px;
    height: 70px;
    line-height: 60px;
    border-radius: 100px;
    display: inline-block;
    text-align: center;
    border: 4px solid var(--white-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.services-main-card-box>.services_image_div>.overlay_icon_service>span>img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin: auto;
    filter: brightness(0%) invert(1);
    border-radius: 5px;
}


.services-main-card-box>.services_image_div>.overlay_icon_service>span>img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: auto;
    filter: brightness(0%) invert(1);
    transition: transform .4s ease;
}

.services-main-card-box:hover>.services_image_div>.overlay_icon_service>span>img {
    animation: zigzag .5s ease-in-out;
}

.services-main-card-box:hover>.services_image_div>.overlay_icon_service>span {
    background-color: var(--black-color);
}

@keyframes zigzag {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0);
    }
}
.services-main-card-box .overlay_number_service {
    position: absolute;
    top: 0px;
    left: 0px;
    margin: auto;
    text-align: center;
}

.services-main-card-box .overlay_number_service>span {
    background-color: var(--secondry-color);
    height: 60px;
    width: 50px;
    line-height: 60px;
    color: var(--white-color);
    font-weight: 700;
    font-size: 24px;
    display: inline-block;
    border-radius: 3px 0px 20px 0px;
    border-right: 4px solid var(--white-color);
    border-bottom: 4px solid var(--white-color);
}

.services-main-card-box:hover .overlay_number_service>span {
    background-color: var(--black-color);
}



.services-main-card-box .service_content_box_div {
    text-align: center;
    padding: 6px 10px;
}

.services-main-card-box .service_content_box_div>h4 {
    color: var(--black-color);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 22px;
}


.services-main-card-box .service_content_box_div>h4>a {
    color: var(--black-color);
}

.services-main-card-box .service_content_box_div>h4>a:hover {
    color: var(--secondry-color);
}

.services-main-card-box .service_content_box_div>p {
    font-size: 14px;
    line-height: 24px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 6px !important;
}

.services-main-card-box .service_content_box_div>a {
    color: var(--secondry-color);
    font-weight: 600;
    font-size: 14px;
    transition: .5s ease-in-out;
}

.services-main-card-box .service_content_box_div>a:hover {
    letter-spacing: .4px;
    transition: .5s ease-in-out;
}

.services-page-main-details{
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
}
.product_image_div {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e7e6e6;
}

.product_image_div img {
    width: 100%;
    transition: .5s ease-in-out;
    display: block;
    filter: brightness(90%);
}

.product_image_div:hover img {
    transform: scale(1.1, 1.1);
    transition: .6s ease-in-out;
}

.products_details_ovr_en_btn {
    position: absolute;
    right: 30px;
    top: 15px;
    transition: .5s ease-in-out;
}

.products_details_ovr_en_btn a {
    background-color: #D41D24;
    padding: 8px 18px 8px 18px;
    color: white;
    text-align: center;
    border-radius: 25px;
    transition: .5s ease-in-out;
    font-size: 14px;
    font-weight: 700;
}
.products_details_txt {
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
}
.product-title-inner-page {
    font-size: 27px;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}


.products_details_txt p {
    color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
}
.sub-text-box-content {
    position: relative;
    padding-top: 6px;
}

.sub-text-box-content p {
    color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
    line-height: 26px;
}
.sub-title-product-page {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}

.sub-text-box-content ul {
    padding-left: 18px;
}

.sub-text-box-content ul li {
    margin-bottom: 5px;
    font-size: 14px;
    list-style-type: disclosure-closed;
    padding-left: 0px;
    color: var(--black-color);
    font-weight: 500;
}

.mobile_call_whatsapp_fixed_main_div {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 1000;
}

.mobile_whatsapp {
    display: none;
}


.call_icon_div {
    text-align: center;
}

.call_icon_div>a {
    background-color: #dc3545;
    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);
    }
}

.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;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content {
  border: 4px solid var(--primary-color);
  border-radius: 10px;
  box-shadow: none;
  background-color: #ffff;
  outline: none;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-header {
  padding: 8px 10px !important;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-header .modal-title {
  font-size: 21px;
  color: #000;
  font-weight: 800;
  text-transform: capitalize;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .contact_pg_form_right_side input,
textarea {
  border: 1px solid #333 ! Important;
  outline: none ! Important;
  background: #fff;
  border-radius: 5px !important;
  height: 38px;
  line-height: 38px;
  margin-bottom: 10px;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .contact_pg_form_right_side .form-control:focus {
  box-shadow: none;
}

.enquiry_popup_input_div>label {
  font-size: 14px;
  color: #000 !important;
  font-weight: 600;
  margin-bottom: 2px !important;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .close {
  box-shadow: none;
  position: absolute;
  right: -19px;
  background: var(--primary-color);
  opacity: 1;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  font-weight: 600;
  color: #fff;
  font-size: 30px;
  border: none;
  top: -19px;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .close:focus {
  border: none;
  box-shadow: none;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-body {
  padding: 5px 15px;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .contact_pg_form_right_side .btn-success {
  background-color: var(--primary-color) !important;
  border: none;
  font-size: 15px;
  font-weight: 600;
}
.custom-textarea{
    height: 110px;
    resize: none;
}
.why_choose_us_section.about-us-why-choose .image_overlay_car_whyus{
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 100.0% 100%, 100.0% 93%, 5.5% 93%, 0 60%);
}
.services_top_section.services-details-page{
    position: relative;
    width: 100%;
    padding: 30px 0px 10px;
}

.products-disicrption-text p{
    text-align: justify;
        color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
}


.products_details_txt p{
       text-align: justify; 
           color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
}
