@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');



*,

*::before,

*::after {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



:root {

   --theme_main_color: #5A8CCF;

    --theme_light_blue: #f0f0dc;

    --theme_second_color: #5A8CCF;

    --theme_white: #fff;

    --theme_grey: #F4F4F4;

    --theme_bg: #f0f0dc;

    --highlight_color: #f0f0dc;
    
    --hover_color: #ffb27d;

}



html {

    scroll-behavior: smooth;

}



body {

/*    font-family: "Open Sans", sans-serif;*/

    background-color: var(--theme_bg);
    font-family: "Bricolage Grotesque", sans-serif;

}



a {

    text-decoration: none;

}



li {

    list-style: none;st

}



h1 {

    font-size: 55px;

    font-weight: 700;

}



h2 {

    font-size: 45px;

    font-weight: 600;

}



h3 {

    font-weight: 600;

    font-size: 32px;

}



h4 {

    font-size: 26px;

    font-weight: 600;

}



h5 {

    font-size: 22px;

    font-weight: 600;

}



h6 {

    font-size: 20px;

    font-weight: 600;

}



p {

    font-size: 18px;

    font-weight: 400;

}

.dropdown-item:focus, .dropdown-item:hover{
        background-color: var(--theme_main_color)!important;
        color: #fff!important;
}















/* --   start Scroll To Top   -- */

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    color: var(--theme_second_color);
    right: 25px;
    bottom: 0px;
    padding-top: 2px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1.0;
}

.scroll-top-wrapper i.fa {
    font-size: 40px;
    bottom: 1px;
    position: relative;
}

/* --  end Scroll To Top  -- */







/* btn css start */



.animated-button {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 4px;

    padding: 8px 36px;

    font-size: 16px;

    background-color: var(--theme_main_color);

    border-radius: 100px;

    font-weight: 600;

    color: var(--theme_white);

    cursor: pointer;

    overflow: hidden;

    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);

}



.animated-button svg {

    position: absolute;

    width: 24px;

    fill: var(--theme_white);

    z-index: 9;

    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);

}



.animated-button .arr-1 {

    right: 16px;

}



.animated-button .arr-2 {

    left: -25%;

}



.animated-button .circle {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 20px;

    height: 20px;

    background-color: var(--theme_second_color);

    border-radius: 50%;

    opacity: 0;

    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);

}



.animated-button .text {

    position: relative;

    z-index: 1;

    transform: translateX(-12px);

    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);

    color: var(--theme_white);

}



.animated-button:hover {

    box-shadow: 0 0 0 12px transparent;

    color: #212121;

    border-radius: 100px;

    /* padding: 6px 36px; */

}



.animated-button:hover .arr-1 {

    right: -25%;

}



.animated-button:hover .arr-2 {

    left: 16px;

}



.animated-button:hover .text {

    transform: translateX(12px);

}



.animated-button:hover svg {

    fill: #1f387e;

}



.animated-button:active {

    scale: 0.95;

    box-shadow: 0 0 0 4px greenyellow;

}



.animated-button:hover .circle {

    width: 100%;

    height: 220px;

    opacity: 1;

}



/* btn css end */

.main_heading {

    font-weight: 600;

    color: var(--theme_main_color);

}



/* breadcrumb start */

.breadcrumb_section {

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    padding: 100px 0;

    position: relative;

    z-index: 1;

}



.breadcrumb_section::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.562);

    z-index: 2;

}



.breadcrumb_section .container {

    position: relative;

    z-index: 3;

}



.breadcrumb-item+.breadcrumb-item::before {

    background: transparent;

}



.breadcrumb_section .breadcrumb-item {

    font-size: 20px;

    font-weight: 600;

    color: var(--theme_second_color);

}



.breadcrumb_section .breadcrumb-item a {

    color: var(--theme_second_color);

}



.breadcrumb_section .breadcrumb-item a:hover {

    color: var(--theme_white);

}



.breadcrumb-item+.breadcrumb-item::before {

    color: var(--theme_second_color);

}



.breadcrumb-item.active {

    color: var(--theme_white);

    padding-bottom: 0;

}



.breadcrumb_title {

    color: var(--theme_second_color);

}



/* breadcrumb end */

/* header strat */

.page_header {

    background: var(--theme_bg);

}



.navbar-brand figure img {

    width: 220px;

    display: block;

    margin-bottom: 15px;

}



.header_contact a span {

    font-size: 18px;

    font-weight: 600;

    transition: transform .25s ease-in-out;

    display: inline-block;

    color: var(--theme_main_color);

}



.header_contact a:hover span {

    /* transform: scale(.95); */

    animation: beat .5s ease-in-out infinite;

}



.header_contact a i {
    position: relative;
    font-size: 22px;
    top: 2px;
    color: var(--theme_main_color);

}



.socials li a:hover i {

    transform: scale(.9);

}



.bottom_header {

    background: linear-gradient(115deg, #5a8ccf 0% -1%, #5a8ccf);

    width: 100%;

    transition: all 0.3s ease-in-out;

    z-index: 999;

}



.bottom_header.sticky {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    animation: slideDown 0.3s ease forwards;

}



.book_appointment span {

    font-size: 18px;

    font-weight: 600;

    color: var(--theme_main_color);

}



.page_header .nav-item .nav-link {

    position: relative;

    z-index: 1;

    color: var(--theme_white);

    font-weight: 500;

    padding-top: 15px;

    padding-bottom: 15px;

    text-transform: uppercase;

    height: 100%;

    font-size: 15px;

}



.page_header .nav-item .nav-link:hover,

.page_header .nav-item .nav-link.active {
    color: #f0f0dc;
}



.page_header .nav-item .nav-link::before {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 100%;

    transform: scaleX(0);

    transform-origin: right;

    transition: transform 0.3s ease-in-out;
    background: #333;
    font-weight: 600;

    z-index: -1;

}



.page_header .nav-item .nav-link:hover::before,

.page_header .nav-item .nav-link.active::before {

    transform: scaleX(1);

    transform-origin: left;

}



/* header end */

/* hero start */

#hero_banner {

    position: relative;

    width: 100%;

    height: 100vh;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

}



.bg_video {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 100%;

    height: 100%;

    z-index: -2;

    object-fit: cover;

}



#hero_banner .overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.3);

    z-index: -1;

    display: none;

}



.hero_content {

    color: var(--theme_white);

    z-index: 2;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

}



.hero_content h6 {

    font-weight: 400;

    margin-bottom: 10px;

}



.hero_content h6 strong {

    color: var(--theme_second_color);

}



.hero_content h1 {

    font-weight: 700;

    line-height: 1.2;

    color: #fff;

}



.btn_wrap .theme_btn {

    background: var(--theme_second_color);

    color: var(--theme_white);

    text-decoration: none;

    padding: 12px 28px;

    border-radius: 30px;

    font-weight: 600;

    transition: 0.3s ease;

}



.btn_wrap .theme_btn:hover {

    background: var(--theme_white);

    color: var(--theme_second_color);

}



/* Responsive Design */

@media (max-width: 768px) {

    #hero_banner {

        height: 80vh;

    }



    .video-foreground {

        width: 177.78vw;

        height: 100vh;

    }



    .hero_content h1 {

        font-size: 2rem;

    }



    .btn_wrap {

        flex-direction: column;

        gap: 1rem;

    }

}



/* hero end */

/* about us start */

.about_us_img {

    height: 460px;

    width: 100%;

    overflow: hidden;

    border-radius: 18px;

}



.about_us_img img {

    width: 100%;

    height: 100%;

    /*object-fit: cover;*/

}



/* about us end */

/* services start */

.service_slider_item {

    position: relative;

    background: #333333;

    border-radius: 18px;

    padding-bottom: 1rem;

    color: var(--theme_second_color);

    overflow: hidden;

    height: 480px;

    transition: all .3s ease-in-out;

}





.service_slider_item:hover {

    transform: scale(.98);

}



.service_card_img {

    margin: 0;

    height: 450px;

}



.service_card_img img {

    width: 100%;

    height: 100%;

    opacity: 0;

    animation: ImageFadeIn .8s 1.4s forwards;

    object-fit: cover;

    object-position: bottom;

}



.card__svg {

    position: absolute;

    left: 0;

    bottom: 85px;

    width: 100%;

    height: auto;

    z-index: 8;

}



.card__line {

    opacity: 0;

    animation: LineFadeIn .8s .8s forwards ease-in;

}



.service_card_text {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    margin-top: -40%;

    padding: 0px 15px 15px 15px;

    text-align: center;

    opacity: 0;

    animation: ContentFadeIn .8s 1.6s forwards;

    background: #333333;

    height: 130px;

    z-index: 9;

}



.service_card_text h4 {

    color: #fff;

    margin-top: 0;

    font-weight: 700;

}



.service_card_text p {

    margin-top: .5rem;

    color: #ccc;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}



.service .owl-next,

.service .owl-prev {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: #11195dd3;

    bottom: auto;

    width: max-content;

    right: -5%;

    padding: 15px;

    border-radius: 50px;

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    width: 60px;

    height: 60px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: var(--theme_second_color);

}



.service .owl-prev {
    left: -5%;
}



.service .owl-next span,

.service .owl-prev span {

    font-size: 44px;

    display: flex;

    position: relative;

    top: -4px;

}



/* Animations remain unchanged */

@keyframes LineFadeIn {

    0% {

        opacity: 0;

        d: path("M 0 300 Q 0 300 0 300 Q 0 300 0 300 C 0 300 0 300 0 300 Q 0 300 0 300 ");

        stroke: #fff;

    }



    50% {

        opacity: 1;

        d: path("M 0 300 Q 50 300 100 300 Q 250 300 350 300 C 350 300 500 300 650 300 Q 750 300 800 300");

        stroke: #888BFF;

    }



    100% {

        opacity: 1;

        d: path("M -2 100 Q 50 200 100 250 Q 250 400 350 300 C 400 250 550 150 650 300 Q 750 450 802 400");

        stroke: #545581;

    }

}



@keyframes ContentFadeIn {

    0% {

        transform: translateY(-1rem);

        opacity: 0;

    }



    100% {

        transform: translateY(0);

        opacity: 1;

    }

}



@keyframes ImageFadeIn {

    0% {

        transform: translate(-.5rem, -.5rem) scale(1.05);

        opacity: 0;

        filter: blur(2px);

    }



    50% {

        opacity: 1;

        filter: blur(2px);

    }



    100% {

        transform: translateY(0) scale(1);

        opacity: 1;

        filter: blur(0);

    }

}



@keyframes beat {

    0% {

        transform: scale(1);

    }



    50% {

        transform: scale(1.03);

    }



    100% {

        transform: scale(1);

    }

}



@keyframes jump-shaking {

    0% {

        transform: translateX(0) rotate(0)

    }



    35% {

        transform: translateY(0) rotate(0)

    }



    85% {

        transform: translateY(0) rotate(0)

    }



    89% {

        transform: translateY(-2px) rotate(-17deg)

    }



    93% {

        transform: translateY(-3px) rotate(17deg)

    }



    98% {

        transform: translateY(-4px) rotate(-17deg)

    }



    100% {

        transform: translateY(0) rotate(0)

    }

}



@keyframes slideDown {

    from {

        transform: translateY(-100%);

    }



    to {

        transform: translateY(0);

    }

}



/* services end */



/* usp start */

.usp {

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    z-index: 1;

}



.usp::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.45);

    z-index: -1;

}



.usp .container {

    position: relative;

    z-index: 2;

}



.usp_item {

    padding: 15px;

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

    border-radius: 15px;

    text-align: center;

    background-color: var(--theme_second_color);

}



.usp_item_img img {

    width: 80px;

    height: 80px;

    object-fit: contain;

    filter: brightness(0) saturate(100%) invert(13%) sepia(34%) saturate(3688%) hue-rotate(219deg) brightness(90%) contrast(107%);

}

.usp_item_content h4{
    color: #fff;
}

.usp_item_content p {
    color: var(--theme_white);
}



/* usp end */

/* contact start */

.home_contact {

    

}
.blog_section{
    background-color: #fff;
}


.contact_us_image {

    overflow: hidden;

    border-radius: 15px;

}



.contact_us_image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.home_contact .form-group input,

.home_contact .form-group textarea {

    background-color: #fff;

    border-radius: 6px;

    padding: 10px 12px;

    border: none;

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

    box-shadow: none;

    outline: none;

    color: var(--theme_main_color);

}



.home_contact .form-group input:not(:placeholder-shown),

.home_contact .form-group textarea:not(:placeholder-shown) {

    background-color: var(--theme_second_color);

    color: var(--theme_white);

}



.home_contact .form-group input::placeholder,

.home_contact .form-group textarea::placeholder {

    color: var(--theme_main_color);

    font-size: 18px;

}



.home_contact_btn.animated-button {

    width: 75%;

}



.home_contact_btn.animated-button .text {

    left: 50%;

    transform: translateX(-50%);

}



.home_contact_btn.animated-button .arr-1 {

    right: 35%;

}



.home_contact_btn.animated-button:hover .arr-1 {

    right: -25%;

}



.home_contact_btn.animated-button:hover .arr-2 {

    left: 35%;

}



/* contact end */



/* tratment */

.treatment .blog-post .blog-post-content {

    text-align: left;

    padding: 20px 20px;

    margin: 0px 25px 0;

    -webkit-box-shadow: 0px 8px 27px 0px rgba(20, 10, 48, 0.15);

    box-shadow: 0px 8px 27px 0px rgba(20, 10, 48, 0.15);

    background-color: var(--theme_second_color);

    border-radius: 15px;

    position: relative;

    top: -45px;

    z-index: 9;

    -webkit-transition: all 0.5s ease-in-out;

    transition: all 0.5s ease-in-out;

}



.treatment .owl-item:hover .blog-post .blog-post-content {

    top: -80px;

    background-color: var(--hover_color);

    -webkit-transition: all 0.5s ease-in-out;

    transition: all 0.5s ease-in-out;

}



.treatment .blog-post .blog-post-info .blog-post-author a i,

.treatment .blog-post .blog-post-info .blog-post-date i {

    font-size: 16px;

    color: var(--text-clr);

    transition: all .4s ease-in-out;

}



.treatment .owl-item:hover .blog-post-author a i,

.treatment .owl-item:hover .blog-post-date i {

    color: var(--clr-gray-dark);

    transition: all .4s ease-in-out;

}



.treatment .blog-post .blog-post-info .blog-post-author a,

.treatment .blog-post .blog-post-info .blog-post-date {

    color: var(--color-main);

    font-size: 16px;

    font-weight: 500;

    transition: all .4s ease-in-out;

}



.treatment .owl-item:hover .blog-post-author a,

.treatment .owl-item:hover .blog-post-date {

    color: var(--color-off-white);

    transition: all .4s ease-in-out;

}



.treatment .blog-post hr {

    margin: 10px 0 !important;

    transition: all .4s ease-in-out;

}



.treatment .owl-item:hover .blog-post hr {

    color: var(--color-off-white);

    transition: all .4s ease-in-out;

}



.treatment .blog-post .blog-post-title {
    font-weight: 600;
    color: #fff;
}
.treatment .blog-post:hover .blog-post-title{
    color: #000;
}


.treatment .blog-post p.post_para {

    color: var(--theme_white);

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

    overflow: hidden;

}



.treatment .owl-item:hover .blog-post p.post_para {

    color: #333333;

}



.treatment .blog-post .blog-post-image {

    width: 100%;

    height: 250px;

    overflow: hidden;

    border-radius: 15px;

    transition: all 0.5s ease-in-out;

}



.treatment .blog-post .blog-post-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: all 0.5s ease-in-out;



}



.treatment .owl-item:hover .blog-post .blog-post-image img {

    transform: scale(1.1);

}



/* survey form */

.survey_form {

    background-color: var(--theme_grey);

}



.survey_form .animated-button {

    width: 50%;

    left: 50%;

    transform: translateX(-50%);

}



.survey_form .form-check-input:focus {

    box-shadow: none;

}



.survey_form .form-label {

    font-size: 24px;

}



.survey_form .form-check label {

    font-size: 20px;

}



.survey_form .form-check-input:checked {

    background-color: var(--theme_second_color);

    border-color: var(--theme_second_color);

}



/* survey form end */

/* testimonial  start */

.testimonial_section {

    display: block;
    background-color: #fff;
    overflow: hidden;

}



.testimonial_section:after {

    display: block;

    clear: both;

    content: "";

}



.testimonial_section .about_content {

    /* background-color: #020d26; */

    position: relative;

}



.testimonial_section .about_content .background_layer {

    /* background-color: #020d26; */

    width: auto;

    /* margin-left: -200px; */

    right: 0;

    position: absolute;

    height: 100%;

    width: 100%;

    top: 0;

    left: 0;

    display: none;

}



.testimonial_section .about_content .layer_content {

    position: relative;

    z-index: 9;

    height: 100%;

    left: 20px;

}



.testimonial_section .about_content .layer_content .section_title {

    margin-bottom: 24px;

    position: relative;

}



.testimonial_section .about_content .layer_content .section_title:after {

    display: block;

    clear: both;

    content: "";

}



.testimonial_section .about_content .layer_content .section_title h5 {

    color: #fff;

    font-family: "Bricolage Grotesque", sans-serif;

    font-weight: 400;

    /* font-size: 15px; */

    line-height: 28px;

    color: #818a8f;

    margin-top: -5px;

    margin-bottom: 6px;

}



.testimonial_section .about_content .layer_content .section_title h2 {

    font-family: "Titillium Web";

    font-weight: 300;

    /* font-size: 45px; */

    line-height: 50px;

    padding-bottom: 51px;

    margin-bottom: 0px;

    color: #fff;

}



.testimonial_section .about_content .layer_content .section_title h2 strong {

    font-weight: 600 !important;

    width: 100%;

    display: block;

}



.testimonial_section .about_content .layer_content .section_title .heading_line {

    position: relative;

}



.testimonial_section .about_content .layer_content .section_title .heading_line span {

    transition: all 0.3s ease-in-out 0s;

    position: relative;

}



.testimonial_section .about_content .layer_content .section_title .heading_line span:after {

    content: "";

    right: auto;

    left: 69px;

    position: absolute;

    bottom: 28px;

    width: 17px;

    margin-left: 0;

    border-bottom-width: 3px;

    border-bottom-color: #cacaca;

    border-bottom-style: solid;

}



.testimonial_section .about_content .layer_content .section_title .heading_line:after {

    content: "";

    left: 1%;

    margin-left: 0;

    position: absolute;

    bottom: 28px;

    width: 59px;

    border-bottom-width: 3px;

    border-bottom-style: solid;

    border-bottom-color: #ff5e14;

}



.testimonial_section .about_content .layer_content .section_title p {

    color: #fff;

    margin: 0 0 15px;

}



.testimonial_section .about_content .layer_content a {

    color: #fff;

    text-transform: capitalize;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s;

}



.testimonial_section .about_content .layer_content a i {

    /* font-size: 18px; */

    vertical-align: middle;

}



.testimonial_section .about_content .layer_content a:hover {

    color: #ff5e14;

}



.testimonial_section .testimonial_box {

    position: relative;

}



.testimonial_section .testimonial_box .testimonial_container {

    /* background-color: var(--theme_main_color); */

    position: relative;

    border-radius: 15px;

    overflow: hidden;

}



.testimonial_section .testimonial_box .testimonial_container .background_layer {

    /* background-color: var(--theme_main_color); */

    width: auto;

    /* margin-right: -200px; */

    right: 0;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    position: absolute;

    height: 100%;

    top: 0;

    left: 0;

    display: none;

}



.testimonial_section .testimonial_box .testimonial_container .layer_content {

    position: relative;

    z-index: 9;

    height: 100%;

}



.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel {

    display: block;

    position: relative;

}



.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {

    margin: 10px 0 10px 0;

    padding: 5px 0px 50px 50px;

    position: relative;

    text-align: center;

}



.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {

    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);



    padding: 45px 40px 45px 40px;

    z-index: 1;

    position: relative;

    background-color: var(--theme_second_color);

    transition: all 0.5s ease-in-out 0s;

    margin-right: 15px;

    border: 2px solid var(--theme_main_color);

}



.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption {

    margin-bottom: 15px;

    position: relative;

}



.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption:after {

    content: "";

    width: 30px;

    display: block;

    height: 2px;

    text-align: center;

    left: 46%;

    margin-top: 6px;

    background-color: #ff5e14;

    position: absolute;

}



.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption h6 {

    padding-top: 0;

    margin-bottom: -5px;

    /* font-size: 19px; */

    font-weight: 600;

    line-height: 24px;

    color: #020d26;

}



.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption span {

    /* font-size: 12px; */

    color: #fff;

    margin: 0;

}



.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content p {

    padding: 0;

    margin: 0;

    padding-top: 10px;

    /* font-size: 16px; */

    line-height: 28px;

    font-weight: 400;

    color: #fff;

    font-style: italic;

}



.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box {

    display: none;

}



.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {

    border: none;

    position: absolute;

    left: 20px;

    top: 20px;

}



.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {

    border: 5px solid var(--theme_second_color);

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

    width: 160px;

    height: 160px;

    object-fit: contain;

    position: relative;

    z-index: 99;

    left: 20%;

    /* background-color: var(--theme_second_color); */

    border-radius: 10px;

    filter: brightness(0) saturate(100%) invert(10%) sepia(34%) saturate(4545%) hue-rotate(225deg) brightness(103%) contrast(107%);

}



.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev {

    position: absolute;

    top: 25px;

    right: 65px;

    border-radius: 0;

    background: var(--theme_main_color);

    display: block;

    outline: 0;

    width: 34px;

    line-height: 34px;

    height: 34px;

    color: #fff;

    font-size: 23px;

    margin-top: -20px;

    transition: all 0.3s ease-in-out;

}



.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:hover {

    background: var(--theme_second_color);

}



.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {

    position: absolute;

    top: 25px;

    right: 20px;

    border-radius: 0;

    display: block;

    background: var(--theme_main_color);

    outline: 0;

    width: 34px;

    text-align: center;

    line-height: 34px;

    height: 34px;

    color: #fff;

    font-size: 23px;

    margin-top: -20px;

    transition: all 0.3s ease-in-out;

}



.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:hover {

    background: var(--theme_second_color);

}



.testimonial_content::after {

    /* want font awesome icon of quatation mark */

    content: "\f10d";

    font-family: "Font Awesome 5 Free";

    font-weight: 900;

    font-size: 60px;

    position: absolute;

    top: 0;

    left: 50px;

    color: var(--highlight_color);

}



.testimonial_content::before {

    /* want font awesome icon of quatation mark */

    content: "\f10e";

    font-family: "Font Awesome 5 Free";

    font-weight: 900;

    font-size: 60px;

    position: absolute;

    bottom: 0;

    right: 50px;

    color: var(--highlight_color);

}



/* testimonial end */

/* call banner strat */

.call_banner {

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    background-attachment: fixed;

    padding: 60px 0;

    position: relative;

    z-index: 1;

}



.call_banner:after {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.5);

    z-index: -1;

}



.call_banner .container {

    position: relative;

    z-index: 2;

}



.call_banner_content h2 span {

    font-size: 64px;

    font-weight: 700;

    color: #fff;

}



.call_banner_content p.call {

    color: var(--theme_white);

    font-weight: 700;

    font-size: 32px;

}



.call_banner_content p a {

    color: var(--theme_white);

}



.call_banner_content p a i {

    animation: jump-shaking 1.83s infinite;

    color: var(--theme_second_color);

}



/* call banner end */

/* blogs start */

.blog_card {

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

    border-radius: 15px;

    transition: all 0.5s ease-in-out;

    background-color: var(--theme_second_color);

}

.blog_card:hover{
    background-color: var(--hover_color);
    transition: all 0.5s ease-in-out;
}

.blog_section .blog_img {

    width: 100%;

    height: 320px;

    border-radius: 15px 15px 0 0;

    overflow: hidden;

    transition: all 0.5s ease-in-out;



}



.blog_section .blog_img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: all 0.5s ease-in-out;

}



.blog_card:hover {

    transform: translateY(-10px);

}



.blog_card:hover .blog_img img {

    transform: scale(1.1);

}



.blog_content h5 {

    color: #fff;

    height: 55px;

    place-content: center;

}



.blog_content p {

    overflow: hidden;

    text-overflow: ellipsis;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

}



/* blogs end */

/* site map start */

.site_map iframe {

    width: 100%;

    height: 400px;

    margin: 0;

}



/* site map end */

/* footer start */



/* ============================================================== 
    # Footer Style
=================================================================== */

.footersec{
    background-size: 100% auto;
    padding-top: 10%;
    background-color: #5a8ccf;
/*    background-image: url(../assets/images/footershape.png);*/
}
.footercont h2{
    color: #f0f0dc;
}
.footercont h4{
    color: #f0f0dc;
}
.footercont p{
    color: #f0f0dc;
}
.bg-img p{
    font-size: 14px;
    color: #f0f0dc;
    text-align: left;
    font-weight: 500;
    padding-top: 20px;
}
.form-subscribe{
  margin:0 auto;
}
.form-subscribe .form-control{
  background-color:hsla(0,0%,100%,.8);
  padding: 20px;
  letter-spacing: 1px;
  border-radius: 50px!important;
}
.form-subscribe .form-control.focus,.form-subscribe .form-control:focus
{
  z-index:2;
  background-color:hsla(0,0%,100%,.8)
}
.form-subscribe .btn{
  background:#11185e;
  border-color:#11185e;
  border-radius: 50px!important;
height:50px;
height: 50px;
position: absolute;
right: 10px;
top: 8px;
}





.footerlogobg{
    background-size: 100% 100%;
    background-repeat: no-repeat;
/*    background-image: url(../assets/images/floralpattern.png);*/
}

.footerlogo{
    width: 80%;
    margin: auto;
    height: auto;
    object-fit: contain;
}



/* Footer Style One */
.user-card .thumb {
    display: flex;
    margin-left: 20px;
    min-width: 90px;
}

.user-card .thumb img {
    height: 50px;
    width: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    margin-left: -20px;
}

.user-card .thumb span {
    display: inline-block;
    border: 2px solid;
    height: 50px;
    width: 50px;
    text-align: center;
    background: var(--color-primary);
    border-radius: 50%;
    line-height: 45px;
    font-weight: 700;
    font-size: 18px;
    margin-left: -20px;
    min-width: 50px;
}

.color-secondary .user-card .thumb span {
    background: var(--color-secondary);
}

.user-card {
    display: flex;
    align-items: center;
    gap: 30px;
}

.user-card h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

ul.address-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer-top-area ul.address-list {
    gap: 100px;
        padding-top: 6%;
    padding-bottom: 20px;
    justify-content: center;
}

ul.address-list li p {
    margin: 0;
}

ul.address-list li {
    display: flex;
    gap: 20px;
}

ul.address-list li i {
    display: inline-block;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 48px;
    background: #f0f0dc;
    border-radius: 50%;
    color: #5a8ccf;
    font-size: 25px;
    min-width: 50px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
}

ul.address-list li h4 {
    font-weight: normal;
    margin-bottom: 5px;
    font-size: 20px;
    color: #fff;
}
ul.address-list li p{
    font-weight: 600;
    color: #fff;
}
ul.address-list li a {
    font-weight: 600;
    color: #fff;
     font-size: 20px;
}
.address-list li:hover .info a{
    color: #000;
    transition: .5s;
}
.footer-top-area{
    background: linear-gradient(115deg, #5a8ccf 0% -1%, #5a8ccf);
  --mask:
    radial-gradient(34.99px at 50% 48px,#000 99%,#0000 101%) calc(50% - 60px) 0/120px 100%,
    radial-gradient(34.99px at 50% -18px,#0000 99%,#000 101%) 50% 30px/120px 100% repeat-x;
  -webkit-mask: var(--mask);
          mask: var(--mask);
}
.footer-top-area .user-card {
/*    border-right: 1px solid rgba(255, 255, 255, 0.28);*/

}

footer .shape img:first-child {
    position: absolute;
    z-index: 2;
    bottom: 50px;
    max-width: 10%;
}

footer .shape img:nth-child(2) {
    position: absolute;
    right: 5%;
    top: -80px;
    max-width: 12%;
    z-index: -1;
}

footer {
    position: relative;
    z-index: 1;
}

footer .footer-item {
    margin-top: 50px;
}

footer .f-items {
    
}
footer .f-items ul{
    padding: 0px;
}
.footer-style-one {
    overflow: hidden;
}

.footer-style-one .f-item.about {
    position: relative;
    z-index: 1;
    padding-right: 50px;
}

.footer-style-one .footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-style-one .footer-bottom p {
    margin: 0;
}
.footer-style-one .footer-bottom p a{
    color: #f0f0dc;
}

.hrborder{
    background-size: 100% 100%;
    background-repeat: no-repeat;
/*    background-image: url(../assets/images/bordercurve.png);*/
    width: 100%;
    height: 20px;
    margin-top: 20px;
    border-top: 1px solid #0b517b;
}
.copyrighttext_right ul li{
display: inline;
}
.copyrighttext_right ul li a{
color: #f0f0dc;
padding: 0px 10px;
}
.copyrighttext_right ul li a:hover{
color: #000;
padding: 0px 10px;
}
.copyrighttext_right {
    text-align: end;
}
.copyrighttext p{
color: #f0f0dc;
}
.copyrighttext p a{
color: #f0f0dc!important;
}
.copyrighttext p a:hover{
color: #000!important;
}
.copyrighttext {
    text-align: left;
}
.footer-style-one .footer-logo img {
    margin-bottom: 30px;
}

footer .f-item.link li {
    margin-top: 15px;
}

footer .f-item.link li a {
    font-weight: 400;
        color: #fff;
}
footer .f-item.link li a:hover{
    font-weight: 400;
        color: #000;
}
footer .f-item.link li i {
    font-weight: 400;
        color: #000;
}
footer .f-item.link li i:hover{
    font-weight: 400;
        color: #000;
        border: 1px solid var(--hover_color);
         transition: all 0.35s ease-in-out;

}
.f-item.link{
    color: #f0f0dc;
    font-weight: bold;
}
.f-item.link h5 a{
    font-weight: 400;
    color: #fff;
}
.widgetbtn{
    color: #fff;
    padding: 20px 10px;
    background-color:#11185e;
    width: 250px;
    border-radius: 50px;
    text-align: center;
}
footer .widget-title {
    margin-bottom: 10px;
    padding-bottom: 10px;
    color: #f0f0dc;
    font-weight: bold;
}

footer.bg-dark .f-item.link li a {
    color: #fff;
}

footer.bg-dark .f-item.link li a:hover {
    color: #5a8ccf;
}

ul.footer-social-regular {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    margin-bottom: 0;
    gap: 12px;
}

ul.footer-social-regular li {
    display: inline-block;
}

ul.footer-social-regular li a {
    display: inline-flex;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 50%;
    background: #f0f0dc;
    border: 1px solid #f0f0dc;
}

.bg-dark ul.footer-social-regular li a {
    background: #f0f0dc;
    border: 1px solid;
    color: #fff;
}
ul.footer-social-regular li a:hover{
    background-color: var(--hover_color)!important;
    color: #fff!important;
}
.bg-dark ul.footer-social-regular li a:hover{
    background: #333;
    border: 1px solid #333;
    color: #fff;
}
ul.footer-social-regular li a img {
    height: 16px;
    width: auto;
    max-width: max-content;
    filter: brightness(0);
    transition: all 0.35s ease-in-out;
}

.bg-dark ul.footer-social-regular li a img {
    filter: brightness(1);
}

ul.footer-social-regular li a:hover img {
    filter: brightness(1);
}

ul.footer-social-regular li a:hover {
    background: var(--color-primary);
    color: var(--white);
    border: 1px solid transparent;
}

.bg-dark ul.footer-social-regular li a:hover {
    border: none;
}

form.newsletter-form-style-one input {
    background: var(--white);
    color: var(--color-heading);
    border-radius: 40px;
    padding-left: 20px;
    text-align: center;
}

form.newsletter-form-style-one button {
    width: 100%;
    border-radius: 40px;
    height: 50px;
    border: none;
    background: var(--color-primary);
    color: var(--white);
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.color-secondary form.newsletter-form-style-one button {
    background: var(--color-secondary);
}

form.newsletter-form-style-one button svg {
    height: 15px;
}

@media (min-width: 1024px) {
    .footer-style-one .f-item.link {
        padding-left: 5px;
        align-content: center;
    }

    .footer-style-one .f-item.about::after {
        position: absolute;
        right: 0;
        top: -120px;
        height: 300%;
        content: "";
        width: 400%;
        background: #f0f0dc;
        z-index: -1;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Footer Style Two */
.footer-style-two .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.footer-style-two .footer-bottom p {
    margin: 0;
}

.footer-top-style-two {
    position: relative;
    z-index: 2;
}

.footer-top-style-two .footer-logo img {
    margin-bottom: 0;
}

.footer-top-style-two::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 500%;
    background: var(--color-primary);
    z-index: -1;
}

.footer-top-style-two .footer-logo {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-style-two);
}

footer.footer-style-two {
    background-size: contain !important;
    background-position: center !important;
}

.footer-style-two .shape img:nth-child(2) {
    position: absolute;
    right: 3%;
    bottom: 0;
    z-index: -1;
    max-width: 100%;
    top: auto;
}

.footer-style-two .f-item.about {
    padding-right: 50px;
    position: relative;
    z-index: 1;
}
.f-item p{
    text-align: center;
    color: #333;
    text-align: center;
}
@media (min-width: 1024px) {
    .footer-style-two .f-item.about::after {
        position: absolute;
        right: 0;
        top: -300px;
        content: "";
        height: 400%;
        width: 500%;
        background: var(--dark-secondary);
        z-index: -1;
    }
}

.footer-style-two .shape img:first-child {
    position: absolute;
    left: 0;
    top: -20%;
    max-width: 18%;
}

.footer-style-two .f-item {
    position: relative;
    z-index: 2;
}

.footer-top-style-two .newsletter-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 0;
}

.footer-top-style-two .newsletter-form h4 {
    margin: 0;
}

.footer-top-style-two .newsletter-form form {
    position: relative;
    background: var(--white);
    border-radius: 40px;
}

.footer-top-style-two .newsletter-form form input {
    background: transparent;
    border: none;
    box-shadow: inherit;
    padding-left: 20px;
    min-height: 55px;
    min-width: 350px;
    border-radius: 40px;
}

.footer-top-style-two .newsletter-form form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--dark);
    border: none;
    border-radius: 50%;
    height: 45px;
    width: 45px;
}

ul.contact-list-two {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

ul.contact-list-two li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

ul.contact-list-two li h5 {
    margin: 0;
    color: var(--white-secondary);
}

ul.contact-list-two li i {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

ul.contact-list-two li a {
    font-weight: 500;
    color: var(--white-secondary);
}

ul.contact-list-two li a:hover {
    color: var(--white);
}

ul.contact-list-two li h5 {
    font-weight: 500;
    font-size: 16px;
}

/* Footer Style Three */
.footer-style-three {
    background-repeat: no-repeat !important;
    background-position: bottom center !important;
}

.footer-grid-items {
    padding-top: 70px;
    grid-template-columns: 1fr 2fr 1fr;
    display: grid;
    gap: 50px;
    padding-bottom: 110px;
}

.footer-grid-items .footer-item.links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    gap: 30px;
}

@media (min-width: 1024px) {
    .footer-grid-items .footer-item.links {
        padding: 0 60px;
    }

    .footer-grid-items .footer-item.links::after {
        position: absolute;
        left: 0;
        top: -200px;
        content: "";
        height: 300%;
        background: var(--dark-secondary);
        width: 100%;
        z-index: -1;
    }
}

.footer-style-three .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
}

.footer-style-three .footer-bottom p {
    margin: 0;
}

footer.footer-style-three .shape img:first-child {
    bottom: auto;
    top: 0;
    max-width: inherit;
    z-index: -1;
}

.footer-style-three ul.contact-list-two li i {
    border: none;
    background: var(--color-primary);
}

footer.footer-style-three .shape img:nth-child(2) {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 0;
    z-index: 1;
}

.footer-style-three .newsletter form {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
}

.footer-style-three .newsletter form input {
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 20px;
    border-radius: 40px;
    color: var(--white);
}

.footer-style-three .newsletter form input::-webkit-input-placeholder {
 /* Chrome */
    color: var(--white-secondary);
}

.footer-style-three .newsletter form input:-ms-input-placeholder {
 /* IE 10+ */
    color: var(--white-secondary);
}

.footer-style-three .newsletter form input::-moz-placeholder {
 /* Firefox 19+ */
    color: var(--white-secondary);
    ;
    opacity: 1;
}

.footer-style-three .newsletter form input:-moz-placeholder {
 /* Firefox 4 - 18 */
    color: var(--white-secondary);
    ;
    opacity: 1;
}

.footer-style-three .newsletter form button {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    background: var(--color-primary);
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50%;
}

/* Footer Style Four */
.footer-logo img {
    margin-bottom: 30px;
}

footer .f-item.recent-project-gallery ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

footer .f-item.recent-project-gallery ul li a {
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: block;
}

footer .f-item.recent-project-gallery ul li a i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    transition: all 0.35s ease-in-out;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

footer .f-item.recent-project-gallery ul li a:hover i {
    opacity: 1;
    visibility: visible;
    margin: 0;
    transition-delay: 0.1s;
}

footer .f-item.recent-project-gallery ul li a::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--dark);
    opacity: 0;
    transform: scale(0);
    visibility: hidden;
    transition: all 0.35s ease-in-out;
}

footer .f-item.recent-project-gallery ul li a:hover::after {
    opacity: 0.6;
    visibility: visible;
    transform: scale(1);
}

@media (min-width: 1024px) {

    .footer-style-four .f-item.about {
        position: relative;
        z-index: 1;
        padding-right: 50px;
        margin-right: 20px;
    }

    .footer-style-four .f-item.about::after {
        position: absolute;
        right: 0;
        top: -300px;
        content: "";
        height: 500%;
        width: 500%;
        background: var(--white);
        z-index: -1;
        opacity: 0.6;
    }
}

.footer-style-four .footer-bottom {
    padding: 25px 0;
}

.footer-style-four .footer-bottom p {
    margin: 0;
}

.footer-newsletter-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    box-shadow: 0px 10px 30px -10px rgb(109 117 143 / 33%);
    padding: 50px;
    border-radius: 10px;
}

.footer-newsletter-card h2 {
    margin: 0;
}

.footer-newsletter-card form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-newsletter-card form input {
    border: none;
    box-shadow: none;
    background: #f1f1f1;
    padding: 20px;
    border-radius: 7px;
}

.footer-newsletter-card form button {
    display: flex;
    align-items: center;
    background: var(--color-primary);
    border: none;
    color: var(--white);
    border-radius: 8px;
    height: 60px;
    width: 230px;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    gap: 5px;
    min-width: 160px;
    transition: all 0.35s ease-in-out;
}

.color-secondary .footer-newsletter-card form button {
    background: var(--color-secondary);
}

.footer-newsletter-card form button svg {
    height: 15px;
    position: relative;
    top: 2px;
}

.footer-newsletter-card form button:hover {
    background: var(--dark);
}























footer {

/*    background: linear-gradient(115deg, #5a8ccf 0% -1%, #5a8ccf);*/
background-color: #fff;

}



.footer_logo img {
    width: 320px;
}



footer .footer_links a {
    color: #fff;
    font-weight: 600;
}

.footer_links i{
    position: relative;
    top: 5px;
}

footer .footer_links a:hover {
    transition: .5s;
    color: #333;

}



footer .footer_quick a {
    position: relative;
    padding-left: 5px;
    color: #fff;
}



/* footer .footer_quick a:hover::before {

    content: "\f";

    font-family: "Font Awesome 6 Free";

    position: absolute;

    left: -20px;

    font-weight: 600;

    margin-right: 10px;

    color: var(--theme--clr-txt4);

} */



footer .footer_links h4 {

    color: var(--theme_white);

}



.footer_content .description {
    font-family: "Bricolage Grotesque", sans-serif;
    color: #fff;
    font-weight: 600;
}



/* footer bottom */

.footer_bottom {

    background-color: #333333;

}



.footer_bottom p a {

    color: var(--highlight_color)!important;

}



.footer_bottom p:hover a {
    color: #5a8ccf!important;
    font-weight: 400;
}





/* heartbeat animation */



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

/* %%%%%%%%%%%  About Us  %%%%%%%% */

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.why_choose_us ul li {

    font-size: 20px;

}



.why_choose_figure {

    height: 450px;

    width: 100%;

    border-radius: 15px;

    overflow: hidden;

}



.why_choose_figure img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: top;

}



/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

/* __________Gallery__________ */

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.gallery_popup {

    z-index: 1050;

}



.popup_wrapper {

    width: 90vw;

    height: 90vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}



.large-image {

    width: 100%;

    height: 90%;

    object-fit: cover;

}



.gallery .close_btn {

    color: var(--color-white);

    font-size: 22px;

}



.gallery .close_btn:hover {

    background-color: var(--color-para-2);

    padding: 5px 8px;

    scale: .8;

    border-radius: 5px;

    color: red;

    border: .3px solid red;

}



.gallery .left-arrow,

.gallery .right-arrow {

    font-size: 22px;

}



.gallery .left-arrow:hover,

.gallery .right-arrow:hover {

    color: var(--bg-color-green);

}



.gallery_img_wrapper img {

    width: 100%;

    height: 180px;

    object-fit: cover;

}



/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

/* __________testimonial__________ */

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

.testimonial-wrapper {

    background: white;

    padding: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    border-radius: 15px;

    position: relative;

}



.testimonial-header {

    text-align: center;

    margin-bottom: 30px;

}



.testimonial-header img {

    width: 180px;

}



.subtitle {

    font-family: 'Playfair Display', serif;

    font-style: italic;

    font-size: 20px;

    color: #333333;

    margin: 0;

}



.title {

    color: #00a6ad;

    font-weight: 700;

    letter-spacing: 1px;

    margin-top: 5px;

}



.testimonial-content {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

}



.client-photo {

    position: absolute;

    top: -45px;

    left: 40px;

    border-radius: 50% 50% 0% 50%;

    overflow: hidden;

    width: 100px;

    height: 100px;

    border: 5px solid white;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    background-color: var(--theme_second_color);

}



.client-photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.testimonial-text {

    background-color: var(--theme_main_color);

    border-radius: 100px 100px 0% 100px;

    color: white;

    padding: 60px 30px 30px 30px;

    text-align: center;

    width: 100%;

}



.client-name {

    margin: 0;

    font-weight: 600;

}



.client-position {

    color: var(--theme_second_color);

    margin-bottom: 10px;

}



.stars {

    margin-bottom: 15px;

    color: yellow;

}



.quote {

    line-height: 1.6;

    color: #f0f0f0;

    margin-bottom: 25px;

}





/* $$$$$$$$$$$$$$$$$$$$$$$$$$$ */

/* __________contacts__________ */

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

#contact__form h3 {

    color: var(--bg-color-blue);

}



#contact__form form input,

#contact__form form textarea {

    padding: 8px 15px;

    box-shadow: none;

    outline: none;

}



#contact__form .card {

    border-radius: 15px;

    overflow: hidden;

}



#contact__us h5 {

    color: var(--theme_second_color) !important;

    margin-bottom: 10px;

}



#contact__us .contact-card p {

    color: var(--theme_main_color);

}





#contact__us .contact-card {

    border-radius: 15px;

}



#contact__us .contact-card img {

    width: 20%;

    display: block;

    margin: auto;

    margin-bottom: 15px;

}



.contact__us_page .contact-card:hover {

    background-color: var(--theme_main_color);

    transform: translateY(-10px);

}



.contact__us_page .contact-card:hover h5 {

    color: var(--color-white) !important;

}



#contact__us .contact-card:hover p {

    color: var(--theme_white) !important;

}



#contact__form .home_contact_btn {

    left: 50%;

    transform: translateX(-50%);

}



/* $$$$$$$$$$$$$$$$$$$$$$$$$$$ */

/* __________details page__________ */

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

/* service */

.details_image {

    height: 350px;

    border-radius: 15px;

    overflow: hidden;

}



.details_image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.more-service-card {

    background-color: var(--theme_second_color);

    border-radius: 5px;

    transition: all 0.5s ease-in-out;

}



.more-service-card:hover {

    transform: scaleX(0.98);

}



.more-service-card h5 {

    color: var(--theme_main_color);

}



.more-service-card:hover h5 {

    color: var(--theme_white);

}



.sideBar_wrap {

    position: sticky;

    top: 60px;

}



.details_brand_logo img {

    width: 160px;

}



.contact-card {

    background-color: var(--theme_main_color);

    padding: 15px;

    border-radius: 15px;

    border-bottom: 1px solid var(--theme_white);

}



.contact-card p {

    margin: 0;

    overflow-wrap: break-word;

    color: var(--theme_white);

}



.contact-card:hover p {

    color: var(--theme_second_color);

}



/* $$$$$$$$$$$$$$$$$$$$$$$$$$ */

/* ________blogs details________ */

/* $$$$$$$$$$$$$$$$$$$$$$$$$$ */

.more-blogs-card {

    background-color: var(--theme_second_color);

    border-radius: 16px;

}



.more-blogs-card figure {

    width: 120px;

    height: 80px;

    overflow: hidden;

    border-radius: 15px;

}



.more-blogs-card figure img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: all 0.5s ease-in-out;

}



.more-blogs-card:hover figure img {

    transform: scale(1.1);

}



.more-blogs-card .card-title {

    width: calc(100% - 120px);

    color: var(--theme_main_color);

    font-weight: 400;

}



.more-blogs-card:hover .card-title {

    color: var(--theme_white);

}



/* stepper */

#tm-recovery-process {

    background-color: var(--theme_grey);

}



.uk-block {

    padding: 40px 0;

    background-color: #f4f4f4;

}



.uk-main_container {

    max-width: 90%;

    margin: 0 auto;

}



.uk-text-center {

    text-align: center;

}



.uk-h1 {

    font-size: 24px;

    font-weight: bold;

    color: var(--theme_main_color);

    margin: 0;

    text-transform: uppercase;

}



.uk-grid p {

    padding-top: 20px;

}







.g5-color-success {

    color: #333333;

}



.g5-color-black {

    color: #333333;

}



.uk-border-rounded {

    border-radius: 8px;

}



.g5-padding-large-top {

    padding-top: 40px;

}



.g5-padding-large-bottom {

    padding-bottom: 40px;

}



.uk-list {

    list-style: none;

    padding: 0;

    margin: 20px 0;

    display: flex;

    justify-content: space-between;

    position: relative;

}



.uk-list>li {

    flex: 1;

    position: relative;

    text-align: center;

    padding: 10px;

}



.uk-list>li:not(:first-child)::after {

    content: "";

    display: block;

    border-top: 2px dotted #ddd;

    position: absolute;

    top: 50%;

    right: 100%;

    width: 100%;

    transform: translate(50%, -50%);

    z-index: 1;

}



.uk-list>li:first-child::after {

    content: none;

}



.uk-list>li.uk-active {

    /* background-color: #007bff;

     */

    color: #ffffff;

    border-radius: 4px;

}



.uk-list>li.uk-active figure {

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}



.uk-list>li figure {

    background-color: #ddd;

    border-radius: 50%;

    width: 100px;

    height: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto;

    position: relative;

    z-index: 2;

}



.uk-list>li figure span {

    font-weight: 700;

    color: #333;

    line-height: 50px;

    display: inline-block;

    font-size: 42px;

}



#tm-recovery-process li:nth-child(1)>figure {

    background: #f53737;

    color: #ffffff;

}



#tm-recovery-process [data-uk-switcher] li:nth-child(1)+li>figure {

    background: linear-gradient(to right, rgba(245, 55, 55, 1) 0%, rgba(255, 191, 114, 1) 100%);

}



#tm-recovery-process [data-uk-switcher] li:nth-child(1)+li+li>figure {

    background: linear-gradient(to right, rgba(255, 191, 114, 1) 0%, rgba(250, 252, 113, 1) 100%);

}



#tm-recovery-process [data-uk-switcher]>li:nth-child(1)+li+li+li>figure {

    background: linear-gradient(to right, rgba(250, 252, 113, 1) 0%, rgba(0, 163, 0, 1) 100%);

}



#tm-recovery-process .uk-list>li:last-child figure {

    background-color: rgba(0, 163, 0, 1);

}



.uk-list>li.uk-active::after {

    border-top: 2px solid #28a745;

}



.uk-list>li.uk-active::before {

    content: "";

    display: block;

    border-top: 2px solid #28a745;

    position: absolute;

    top: 50%;

    left: -15px;

    width: calc(100% + 30px);

    transform: translateY(-50%);

    z-index: -1;

}



.uk-list li:not(.uk-active) {

    /* background-color: #f0f0f0;

     */

    color: #333;

}



/* Switcher Styles */

.uk-switcher {

    display: flex;

    flex-direction: column;

}



.uk-switcher>li {

    display: none;

}



.uk-switcher .uk-active {

    display: block;

    padding: 20px;

}



/* Responsive Grid */

.uk-grid {

    display: flex;

    gap: 5%;

}



.uk-width-medium-2-3 {

    width: 60%;

}



.uk-width-medium-1-3 {

    width: 35%;

    padding-left: 20px;

}



/* Image Styles */

.uk-border-rounded {

    border-radius: 8px;

    overflow: hidden;

}



img {

    width: 100%;

    height: auto;

}



.bottom_hr {

    border-top: 0.5px solid var(--p-clr-2);

}