@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --theme-main-color: #DF552F;
    --theme-second-color: #cc7f40;
    /*--color_black: #0e0e0e;*/
    --color_black: #000;
    --color--white: #fff;
    --color-blue: #1877f2;
    --color--linkedin: #0077b5;
    --color--whatsapp: #25d366;
    --para-main: #1d2634;
    --para1-color: #303030;
    --para2-color: #ebebeb;
    --bg-color: #f0f0f0;

    --gradient-color1: linear-gradient(90deg,
            rgba(226, 161, 53, 1) 0%,
            rgba(187, 157, 101, 1) 100%);
    --gradient-color2: linear-gradient(90deg,
            rgba(226, 161, 53, 1) 0%,
            rgba(187, 157, 101, 1) 50%,
            rgba(226, 161, 53, 1) 100%);
    --gradient--insta: linear-gradient(45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%);
}

body {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

h1 {
    /* font-size: clamp(1.5rem, 3.8vw, 2.8rem); */
    font-size: clamp(2rem, 4vw, 5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.4rem, 3.4vw, 2.4rem);
    font-weight: 600;
    color: var(--para-main);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--para-main);
}

h4 {
    font-size: clamp(1.2rem, 2.6vw, 1.6rem);
    color: var(--para-main);
}

p {
    font-size: 20px;
    font-weight: 400;
    color: var(--para1-color);
}

/* button css */
.blob-btn {
    z-index: 1;
    position: relative;
    padding: 10px;
    /* margin-bottom: 30px; */
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background-color: transparent;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
    white-space: nowrap;
}

.blob-btn:before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* border: 0.3px solid #e2a135; */
    border-radius: 30px;
}

.blob-btn:after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
    border-radius: 30px;
}

.blob-btn:hover {
    color: #ffffff;
    border-radius: 30px;
}

.blob-btn:hover:after {
    transition: all 0.3s;
    left: 0;
    top: 0;
    border-radius: 30px;
}

.blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    /* background: #bb9d65; */
    background: rgb(3, 2, 0);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    box-shadow: 0 0 10px rgba(247, 137, 94, 0.726),
        0 0 20px rgba(240, 155, 115, 0.466);
}

.blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url("#goo");
}

.blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 30%;
    height: 100%;
    background: var(--theme-main-color);
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
}

@supports (filter: url("#goo")) {
    .blob-btn__blob {
        transform: translate3d(0, 150%, 0) scale(1.4);
    }
}

.blob-btn__blob:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.7);
}

@supports (filter: url("#goo")) {
    .blob-btn:hover .blob-btn__blob {
        transform: translateZ(0) scale(1.4);
    }
}

.blob-btn2 .blob-btn__inner {
    background: var(--theme-second-color);
}

/* button end */

/* Keyframes */
@keyframes beat {
    to {
        transform: scale(1.1);
    }
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(-30px);
    }

    67% {
        opacity: 1;
        transform: translateY(-40px);
    }

    100% {
        opacity: 0;
        transform: translateY(-55px) scale3d(0.5, 0.5, 0.5);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Keyframes */
/* pagination */
.pagination ul {
    justify-content: center;
}

.pagination ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    color: var(--theme-main-color);
    border: 1px solid var(--theme-main-color);
    border-radius: 3px !important;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 600;
}

.pagination ul li a:hover,
.pagination ul li.active a {
    background: var(--theme-main-color);
    color: var(--color--white);
    border-color: var(--theme-main-color);
}

.pagination ul li a:focus {
    color: var(--color--white);
    background-color: var(--theme-main-color);
    box-shadow: 0px 0px 0px 2px var(--theme-main-color);
}

/* header start */

.navbar {
    width: 100%;
    padding: 0;
    box-shadow: 0 1px 3px rgba(226, 160, 53, 0.082);
    transition: background-color 0.5s ease-in-out;
    /* transform: translateY(-100%); */
}

.fixed_nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    animation: slideDown 0.5s ease forwards;
}

.scrolled_nav {
    background-color: var(--color--white);
    box-shadow: 0 1px 3px rgba(226, 160, 53, 0.082);
}

.navbar-brand {
    /* mix-blend-mode: multiply; */
    display: inline-block;
}

.navbar-expand-lg .navbar-nav {
    flex-wrap: wrap;
}

.top_bar {
    background-color: var(--theme-main-color);
}

nav.navbar {}

.topbar_left a {
    color: var(--color--white);
}

.topbar_left a .top_icon,
.topbar_socials a {
    /* padding: 5px; */
    background-color: var(--color--white);
    border-radius: 50px;
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.topbar_left a .top_icon img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(34%) saturate(4201%) hue-rotate(354deg) brightness(98%) contrast(88%);
}

.topbar_left a:hover .top_icon img {
    animation: beat 0.5s infinite alternate;
}

.topbar_socials a.top_facebook {
    background-color: var(--color-blue);
}

.topbar_socials a.top_instagram {
    background: var(--gradient--insta);
}

.topbar_socials a.top_linkedin {
    background-color: var(--color--linkedin);
}

.topbar_socials a.top_whatsapp {
    background-color: var(--color--whatsapp);
}

.topbar_socials a:hover {
    animation: beat 0.5s infinite alternate;
}

.nav-item a.nav-link {
    color: #fff;
    font-weight: 500;
    transition: 0.3s ease;
    font-size: 20px;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
    /*background-color: var(--theme-second-color) !important;*/
    color: var(--theme-main-color) !important;
    /*border-radius: 8px;*/
    transform: scale(1.05);
}

/* Background video */
.main_videobg {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
    pointer-events: none;
}

/* hero banner */
.hero_banner {
    width: 100%;
    height: 100vh;
}

.hero_text {
    width: 70%;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.hero_text h1 {
    filter: drop-shadow(0 6px 9px rgba(36, 16, 0, 0.945));
    -webkit-text-stroke: 1px var(--theme-main-color);
}

.scroll-down-btn {
    background: transparent;
    /* border: 2px solid #fff; */
    /* width: 60px; */
    /* height: 60px; */
    /* border-radius: 50%; */
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: var(--theme-main-color);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.9));
}

.scroll-down-btn:hover {
    /* background: rgba(255, 255, 255, 0.25); */
    transform: translateY(4px);
    color: var(--color--white);
}

.scroll-down-btn i {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* home service section */
.our_services {
    width: 100%;
    background: var(--color_black);
}

.divider {
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--theme-main-color);
}

.service_card {
    overflow: hidden;
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
}

.card-body {
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
    background: var(--theme-main-color);
    transition: .5s ease-in-out;
    position: relative;
    top: -50px;
    border-radius: 0 0 15px 15px;
}

.our_services .service_card .card-title {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-body:hover {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
    background: var(--theme-second-color);
}

.service_card .service_fig {
    height: 300px;
    width: 100%;
    overflow: hidden;
    transition: .5s ease-in-out;
}

.service_card .service_fig img {
    transition: .5s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.service_card:hover .service_fig img {
    transform: scale(1.2);
}

.owl_service .item {
    margin-bottom: -30px;
}

.owl_service .owl-nav {
    position: relative;
    margin-bottom: 20px;
}

.owl_service .owl-prev {
    left: 35%;
    position: absolute;
    filter: brightness(0) saturate(100%) invert(58%) sepia(24%) saturate(4881%) hue-rotate(351deg) brightness(95%) contrast(93%);
}

.owl_service .owl-next {
    right: 35%;
    position: absolute;
    filter: brightness(0) saturate(100%) invert(58%) sepia(24%) saturate(4881%) hue-rotate(351deg) brightness(95%) contrast(93%);
}

.owl_service span {
    font-size: 65px;
    line-height: .5;
}

.owl_service .owl-next:hover,
.owl_service .owl-prev:hover {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7462%) hue-rotate(279deg) brightness(115%) contrast(105%);
}

/* about us  */
.aboutUs {
    background-color: #fff;
}

.aboutUs h2 {
    color: var(--theme-main-color);
    font-weight: 700;
}

.about_img {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease-in-out;
}

.aboutUs:hover .about_img img {
    transform: scale(1.2);
}

.float_right_box {
    height: 250px;
    width: 200px;
    float: right;
    align-items: baseline;
    background: var(--theme-second-color);
    margin: 10px 0px 10px 20px;
    border-radius: 12px;
    border: 3px solid var(--theme-main-color);
}

.float_right_box .inner_span {
    font-size: 20px;
    font-weight: 600;
    color: var(--color_black);
}

/* usp section */
.usp {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

.usp_card {
    background-color: var(--theme-main-color);
    padding: 20px;
}

.usp_card .usp_img {
    width: 120px;
    height: 120px;
    background-color: var(--color--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.usp_card .usp_img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(50%) sepia(69%) saturate(763%) hue-rotate(348deg) brightness(95%) contrast(94%);
}

/* testimonials */
.clients_testimonials {
    background-color: var(--color--white);
    bottom: 0;
}

.testi_card {
    background-color: transparent;
    border: none;
    z-index: 1;
    left: 0;
    bottom: 0;
    height: 400px;
    width: 100%;
}

.testi_inner_bottom {
    width: 90%;
    margin: auto;
    background-color: var(--theme-main-color);
    border-radius: 0 0 20px 20px;
    z-index: 2;
    height: 300px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%)
}

.testi_inner_top {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    margin: auto;
    border-radius: 20px 20px 0 0;
    padding: 20px 35px 10px;
    background-color: var(--color_black);
    text-align: justify;
    z-index: 3;
}

.testi_card::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: var(--theme-main-color);
    border-radius: 50%;
    z-index: 4;
    bottom: 280px;
    left: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    color: var(--color--white)
}

.testi_card::after {
    content: "\f10e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: var(--theme-main-color);
    border-radius: 50%;
    z-index: 4;
    bottom: 280px;
    right: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    color: var(--color--white)
}

.testi_star_rating {
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    z-index: 4;
}

.testi_star_rating li i {
    color: yellow;
    font-size: 16px;
}


.clients_testimonials .section_title .blob-btn {
    width: 300px;
}

/* banner call */
.banner_call {
    padding-top: 120px;
    padding-bottom: 120px;
}

.contact_wrapper {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.contact_slider {
    display: flex;
    flex-direction: column;
    animation: slideLoop 6s ease-in-out infinite;
    cursor: pointer;
}

.contact_slider:hover {
    animation-play-state: paused;
}

.slide_item {
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

@keyframes slideLoop {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(0);
    }


    40% {
        transform: translateY(-150px);
    }

    60% {
        transform: translateY(-150px);
    }


    80% {
        transform: translateY(-300px);
    }

    100% {
        transform: translateY(-300px);
    }

}

.contact_wrapper h2 span,
.banner_call_left h2 span {
    display: block;
    color: var(--theme-main-color);
    font-size: 50px;
    font-weight: 900;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.726));
}

.banner_call .blob-btn {
    width: 500px;
}

/* blogs strat */

.project_img figure {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(190, 190, 190, 0.1) 0px 4px 6px -1px,
        rgba(179, 179, 179, 0.06) 0px 2px 4px -1px;
    position: relative;
    /* transition: all .4s ease-in-out; */
    width: 100%;
    height: 450px;
}

.project_img figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.project_img figure::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    mix-blend-mode: multiply;
    background: linear-gradient(0deg,
            rgb(180, 97, 3) 0%,
            rgba(226, 145, 53, 0.25) 57%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 100% 100%;
    transition: all 0.6s ease-in-out;
}

.project_details {
    z-index: 9;
    bottom: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    /* transition: all .4s ease-in-out; */
}

.project_details .project_btn {
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    pointer-events: none;
    opacity: 0;
}

.project_img figure:hover .project_details .project_btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.project_img:hover figure::before {
    background-size: 200% 200% !important;
    background-position: bottom center;
}

/* contact section */
.contact_section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.contact_section .contact_left {
    background-color: var(--color_black);
    padding: 50px;
}

/* footer */
#footer {
    background-color: rgba(0, 0, 0, 0.726);
}

#footer .footer_links ul li a,
#footer .footer_links ul li a p {
    color: var(--para2-color);
    font-size: 20px;
}

#footer .footer_links ul li:hover a {
    color: var(--theme-main-color);
}

#footer .footer_links .footer_title {
    color: var(--theme-main-color);
}

/* ----- */
#footer .footer_links ul li a::before {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-5px);
}

#footer .footer_links ul li a:hover::before {
    content: "\f105";
    opacity: 1;
    transform: translateX(0);
}

/* footer bottom */
.footer_bottom {
    background-color: rgba(0, 0, 0, 0.9);
    border-top: 3px solid var(--theme-main-color);
}

.footer_bottom p a {
    color: var(--theme-main-color) !important;
}

.footer_bottom p:hover a {
    color: var(--theme-second-color) !important;
    font-weight: 400;
    text-decoration: underline;
}

/* common breadcrumb */
.page_breadcrumb h1 {
    -webkit-text-stroke: 2px var(--theme-main-color);
    /* color: transparent !important; */
}

.page_breadcrumb {
    padding: 150px 0 120px;
    background-position: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.breadcrumb .breadcrumb-item a {
    color: var(--color--white);
    font-size: 16px;
    font-weight: 400;
}

.breadcrumb .breadcrumb-item a:hover,
.breadcrumb .breadcrumb-item.active {
    color: var(--theme-main-color);
    font-weight: 500;
}

.page_breadcrumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.breadcrumb_wrapper {
    position: relative;
    z-index: 2;
}

/* *************************** */
/* -------About Us Page------- */
/* *************************** */
.why_figure {
    width: 100%;
    height: 450px;
}

.why_figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
}

.why_us h2 {
    color: var(--theme-main-color);
}

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
/* %%%%%%%%%%%%%% Faq page %%%%%%%%%%%% */
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
#accordion {
    background-color: var(--color--white);
}

#accordion .accordion-item {
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 10px;
    position: relative;
    background-color: var(--color--white) !important;
}

.acc_head h2 {
    color: var(--theme-main-color);
}

#accordion .accordion-button {
    padding: 15px 70px 15px 70px;
    background: #fff;
    /* font-size: 18px; */
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--txt--clr2);
    border-radius: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.212),
        0 0 40px rgba(231, 153, 102, 0.459) inset;
    position: relative;
    text-align: left;
    padding-left: 75px;
}

/* LEFT ICON WRAPPER - FIXED BORDER */
#accordion .accordion-button .icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 100%;
    border-right: 2px solid var(--color_black);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    pointer-events: none;
}

/* ICON inside left wrapper */
#accordion .accordion-button .icon {
    font-size: 20px;
    color: var(--theme-main-color) !important;
}

/* REMOVE Bootstrap's built-in arrow icon */
.accordion-button::after {
    display: none;
}

/* RIGHT ARROW ICON (custom) */
#accordion .accordion-button::before {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid var(--color_black);
    color: var(--theme-main-color);
    transition: transform 0.3s ease;
}

/* ROTATE when active */
#accordion .accordion-button:not(.collapsed)::before {
    content: "\f106";
}

/* Accordion body */
#accordion .accordion-body {
    padding: 10px 20px;
    margin-bottom: 20px;
    border-bottom: 8px solid var(--color_black);
    background: var(--theme-second-color);
    /* font-size: 15px; */
    color: var(--color_black);
    line-height: 27px;
}

.accordion-item h2 {
    padding: 0;
    border: none;
    border-radius: 0;
    margin-bottom: 15px;
    z-index: 1;
    position: relative;
}

.accordion-item h2:before,
.accordion-item h2:after {
    content: "";
    width: 50%;
    height: 20%;
    box-shadow: 0 15px 5px rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 15px;
    left: 10px;
    transform: rotate(-3deg);
    z-index: -1;
}

.accordion-item h2:after {
    left: auto;
    right: 10px;
    transform: rotate(3deg);
}

/* gallery page */

.thumb {
    width: 100%;
    height: auto;
    object-fit: cover;
    height: 300px;
    border: 5px solid var(--theme-main-color) !important;
}

.modal.modal-down .modal-dialog {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.modal-content {
    top: 30px;
    width: 100%;
    /* aspect-ratio: 1/1; */
}

.mod-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: none;
    background-color: transparent;
    color: var(--para-main);
    font-weight: 600;
    font-size: 18px;
}

.mod-btn.left {
    left: 5%;
}

.mod-btn.left:hover,
.mod-btn.right:hover {
    color: var(--theme-main-color);
}

.mod-btn.right {
    right: 5%;
}

.img-thumbnail {
    padding: 0;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24);
}

img#modalImage {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

#gallery h2 {
    color: var(--theme-main-color);
}

/* testimonial page */
.testimonial_card {
    padding-top: 80px;
    padding-bottom: 40px;
}

.testimonial_wrapper h2 {
    color: var(--theme-main-color);
}

.card_text {
    border-radius: 20px 0 20px 0;
    padding: 20px 30px;
    background-color: var(--color_black);
}

.card_text::after {
    content: '';
    position: absolute;
    top: 99%;
    left: 50px;
    width: 60px;
    height: 45px;
    background-color: var(--color_black);
    clip-path: polygon(100% 0, 15% 0, 0 100%);
}


.card_text .title::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 38px;
    position: absolute;
    color: var(--theme-main-color);
    top: -10px;
    left: 100px;
}

.card_text .title::after {
    content: "\f10e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 38px;
    position: absolute;
    color: var(--theme-main-color);
    bottom: -10px;
    right: 100px;
}

.admin_icon {
    width: 90px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 6px solid var(--color_black);
    position: absolute;
    top: -70px;
    left: 70%;
}

.admin_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 5px solid var(--theme-main-color);
    border-radius: 50%;
}

/* contact page */
.page_form_side {
    height: 100vh;
    position: sticky;
    top: 0px;
}

.contact_page>.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.contact_data {
    background-color: var(--para2-color);
}

.map_side h2,
.contact_details_side h2,
.form_wrapper h2 {
    color: var(--theme-main-color);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.925));
}

.map_side iframe {
    height: 450px;
    border-left: 5px solid var(--theme-main-color) !important;
}

.contact_data {
    position: relative;
    border: 5px solid var(--color_black);

}

.contact_data::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    z-index: 2;
    background-color: transparent;
    border: 5px double var(--theme-main-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact_page .contact_icon {
    width: 70px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 6px double var(--color--white);
    margin: auto;
    background-color: var(--theme-main-color);
    color: var(--color--white);
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center
}

.contact_data:hover .contact_icon {
    animation: beat 0.5s infinite alternate;
}

/* blog details page */
.page_service_image {
    width: 100%;
    height: 60vh;
}

.page_service_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aside_more_services {
    position: sticky;
    top: 20px;
    background-color: var(--color_black);
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24);
}

.aside_more_services .more_services {
    background-color: var(--color--white);
    border-radius: 8px;
    text-align: center;
    padding: 10px 0
}

.aside_more_services ul li figure {
    width: 100%;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    margin: auto
}

.aside_more_services ul li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.aside_more_services ul li p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.aside_more_services ul li h5 {
    color: var(--theme-main-color);
}

.aside_more_services ul li {
    border-bottom: 1px solid var(--para1-color);
    transition: all 0.5s ease;
}

.aside_more_services ul li:hover figure img {
    transform: scale(1.1);
}

.overlay_top h3 {
    background-color: var(--color--white);
    padding: 8px 0;
    border-radius: 8px;
}

.page_other_call a {
    color: var(--color--white);
    font-weight: 400;
}

.page_other_call a i {
    color: var(--theme-main-color);
    font-size: 28px;
}

.contact_aside {
    box-shadow: rgba(89, 89, 95, 0.822) 0px 30px 60px -12px inset, rgba(182, 175, 175, 0.795) 0px 18px 36px -18px inset;
}

/* service details page */
.service_details .col-md-6 {
    display: flex;
}

.service_details_img {
    display: flex;
    width: 100%;
    height: 100%;
}

.service_details_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service_details_content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.more_services_img {
    width: 120px;
    height: 90px;
    overflow: hidden;
    display: block;
    transition: all 0.5s ease;
}

.more_services_content {
    background-color: var(--color_black);
    padding: 10px 20px;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.more_services_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.more_services_content:hover {
    scale: .98;
}

.more_services_content:hover .more_services_img img {
    transform: scale(1.1);
}

.service_details_title {
    width: calc(100% - 120px);
}

.more_services h2 {
    color: var(--theme-main-color);
}