:root {
    --theme-color: #4db93a;
    --secondary-color: #000;
    --dark-color: #000;
    --third-color: #f78202;
    --forth-color: #275375;
    --yellow-color: #fcb142;
    --white-color: #fff;
    --bg-color: #f3f1f2;
    --light-blue: #eff6fd;
}

.clearfix::after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0px;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

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

header,
nav,
section,
article,
aside,
footer,
hgroup {
    display: block;
}

* {
    box-sizing: border-box;
}

html,
body {
    font-family: "Inter", serif;
    font-weight: 400;
    background-color: #000;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.55;
}

#main {
    flex-grow: 1;
}

a {
    color: rgb(51, 204, 255);
    text-decoration: none !important;
}

a:hover {
    color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "League Spartan", serif;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: normal;
    /* letter-spacing: -0.025em; */
}

ul {
    margin-bottom: 0px;
}

p {
    font-size: 18px;
    color: var(--white-color)
}

p:last-child {
    margin-bottom: 0;
}

.list-styled li {
    list-style: disc;
    margin-bottom: 15px;
}

img {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

 ::selection {
    background: var(--theme-color);
    color: rgb(255, 255, 255);
}

.btn-primary {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn {
    transition: all 150ms linear 0s;
    font-weight: 600;
    padding: 8px 30px;
    /* border-radius: 50px; */
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
}

.btn-white1 {
    color: var(--theme-color) !important;
    border: 2px solid var(--theme-color);
}

.btn-white1:hover {
    color: var(--theme-color) !important;
    border: 2px solid var(--theme-color);
}

img {
    object-fit: cover;
    /* border-radius: 10px; */
}

.navbar {
    font-weight: 500;
    font-size: 0.875rem;
    background-color: var(--primary);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
    padding: 0;
	background: linear-gradient(to bottom, #070707 0%, #474747 100%);
}

.navbar .navbar-brand {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.navbar .logo-image img {
    width: 232px;
    /* height: 66px; */
    object-fit: contain;
}

.navbar .logo-text {
    color: #fff;
    font-weight: 500;
    font-size: 1.575rem;
    text-decoration: none;
}

.navbar .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
}

.navbar .dropdown-menu {
    border: none;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    background-color: #fff;
}

.navbar .dropdown-item {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 15px;
    padding-top: 0.625rem;
    text-decoration: none;
    padding-bottom: 0.25rem;
}

.navbar .dropdown-item:hover {
    background-color: var(--primary);
}

.navbar .dropdown-divider {
    width: 100%;
    height: 1px;
    border: none;
    margin: 0.5rem auto 0.5rem auto;
    background-color: var(--primary-light);
}

.navbar .nav-item .nav-link {
    color: var(--theme-color);
    text-decoration: none;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 20px;
    margin-right: 16px;
    /* font-family: "Roboto", serif; */
    text-transform: uppercase;
}

.navbar .fa-stack {
    width: 2em;
    font-size: 0.75rem;
    margin-right: 0.25rem;
}
.offcanvas-header .btn-close {
   
    filter: invert(1);
}
.navbar .fa-stack-2x {
    background: -webkit-gradient( linear, left top, left bottom, from(#0ee951), to(#00dabf));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
    color: #ffffff;
    transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
    color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
    color: var(--primary);
}

.navbar .navbar-toggler {
    padding: 0;
    border: none;
    font-size: 1.25rem;
}


/* megamenu */


/*************************
Responsive
*************************/

@media (min-width: 992px) {
    .navbar .dropdown-menu {
        margin: 0px;
        font-size: 14px;
        border-radius: 0px;
        border: none;
        left: 100%;
        -webkit-transform: translate3d(-50%, 10px, 0);
        transform: translate3d(-50%, 10px, 0);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-transition-property: opacity, visibility, -webkit-transform;
        transition-property: opacity, visibility, -webkit-transform;
        transition-property: opacity, visibility, transform;
        transition-property: opacity, visibility, transform, -webkit-transform;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        visibility: hidden;
        opacity: 0;
        display: block !important;
        border-radius: 3px;
        top: 100%;
    }
    .navbar .dropdown-menu.megamenu {
        left: 50%;
    }
    .navbar-nav .dropdown-menu.dropdown-menu-lg {
        min-width: 540px;
    }
    .navbar-nav .mega-menu {
        position: static;
    }
    .navbar .dropdown:hover>.dropdown-menu {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
        visibility: visible;
        opacity: 1;
    }
    .navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
        left: 100%;
        right: auto;
        -webkit-transform: translate3d(15px, 10px, 0);
        transform: translate3d(15px, 10px, 0);
    }
    .navbar .dropdown-menu .dropdown-submenu .dropdown-menu.left-side {
        right: 100%;
        left: auto;
        -webkit-transform: translate3d(-15px, 10px, 0);
        transform: translate3d(-15px, 10px, 0);
    }
    .navbar-nav li:hover>ul.dropdown-menu {
        visibility: visible;
        opacity: 1;
    }
    .navbar .dropdown:hover>.dropdown-menu.megamenu {
        -webkit-transform: translate3d(-50%, -26px, 0);
        transform: translate3d(-50%, -26px, 0);
    }
}

.mypadding {
    padding: 15px 12px;
    background: #022539;
}

.mypadding p {
    margin-top: 10px;
}

.navbg {
    background: #dc3545;
}

.mypadding a:hover {
    color: #adb5bd;
}

@media (min-width: 992px) {
    .offcanvas-collapse {
        position: static;
        top: auto;
        bottom: auto;
        left: auto;
        width: auto;
        padding-right: 0;
        padding-left: 0;
        background-color: transparent;
        overflow-y: visible;
        visibility: visible;
    }
}

.pt-50 {
    padding-top: 100px;
}

.pb-50 {
    padding-bottom: 80px;
}

.pb-100 {
    padding-bottom: 80px;
}

.section_head h2 {
    color: var(--theme-color);
    margin-bottom: 40px;
    font-size: 45px;
    font-weight: 700;
    line-height: initial;
    /* letter-spacing: -0.025em; */
}

p:last-child {
    margin-bottom: 0;
}


/* banner */


/* 
.vh-100 {
    height: 100vh !important;
    position: relative;
}

.mainbanner:before {
    content: close-quote;
    background: rgb(0 0 0 / 30%);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    right: 0;
    left: 0;
} */
/*working  */
/* .mainbanner:before {
    content: close-quote;
    background: linear-gradient(to right, rgb(21 140 53 / 87%), transparent);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    right: 0;
    left: 0;
} */


/* .mainbanner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
 
    height: 100%;
    background: linear-gradient(to right, rgb(21 140 53 / 50%), transparent);
    z-index: 1;
}

.mainbanner {
    position: relative;
}

.mainbanner .h-100 {
    position: relative;
    z-index: 0;
} */

.topimg img {
    width: 67px;
}

.mainbanner .card {
    background-color: transparent;
    /* padding: 15px; */
}

.bgcard {
    background-color: rgb(77 185 58 / 85%) !important;
    /* padding: 15px; */
}

.vh-70 {
    height: 85vh !important;
    position: relative;
}

@media (min-width: 1500px) {
    .vh-70 {
        height: 73vh !important;
        position: relative;
    }
}


/* .mainbanner:before {
    content: close-quote;
    background: rgb(0 0 0 / 25%);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    right: 0;
    left: 0;
} */


/* .mainform {
    position: absolute;

    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.w-200 {
    width: 200px;
    margin: auto;
}

.mainbanner h1 {
    font-size: 63px;
    font-weight: 700;
    /* text-shadow: rgba(0, 0, 0, 0.4) 4.12497px 4.12497px 0px; */
    /* letter-spacing: -0.025em; */
    line-height: 56px;
}

.display-7 {
    font-size: 32px;
    text-shadow: rgba(0, 0, 0, 0.325) 0px 1.2px 5.1px;
}

.mainbanner {
    height: 100vh;
}

.minheight {
    height: 100vh;
}

@media (min-width: 992px) {
    .py-lg-8 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}

.py-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

@media (min-width: 1400px) {
    .py-lg-8 {
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }
}

.px-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
}

.bannerform1 .form-control {
    border: 0;
    border-bottom: 1px solid #000;
    /* border: navajowhite; */
    border-radius: 0;
}

.bannerform1 .card {
    box-shadow: 10px 10px var(--theme-color);
}

.bannerform1 i {
    border-radius: 100%;
    font-size: 16px;
    padding: 5px;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
}

.form-icon-start {
    padding-left: calc(2.5rem + 1px);
}

.bannerform1 ::placeholder {
    color: #000;
    font-size: 14px;
}


/* services */
.whyus .card {
    background: #000;
}
.servicecard a {
    color: #fff;
}
.card{
	background:#000;
}
.servicecard a {
    color: #fff;
}

.servicecard a:hover h3,
.servicecard img:hover a {
    color: var(--secondary-color);
    transition: all 150ms linear 0s;
}

.fs-24 {
    font-size: 25px;
}

.fs-18 {
    font-size: 18px;
}

.fs-32 {
    font-size: 32px !important;
}

.fs-85 {
    font-size: 85px !important;
}

.whatdoes p {
    color: #000;
}

.fw-900 {
    font-weight: 900 !important;
}

.swiper-wrapper.ticker {
    display: flex;
    width: max-content;
    /* Prevent breaking on small screens */
    animation: scroll 15s linear infinite;
    /* Continuous scroll */
}


/* Adjust animation speed according to your needs */

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
        /* Moves half of duplicated content */
    }
}

.object-fit-cover {
    object-fit: cover;
}

.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    z-index: 1;
}

.bg-image:before {
    content: close-quote;
    background: rgb(0 0 0 / 65%);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    right: 0;
    left: 0;
}

.bg-image1 {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    z-index: 1;
}

.bg-image1:before {
    content: close-quote;
    background: rgb(0 0 0 /75%);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    right: 0;
    left: 0;
}

.bg-opacity {
    background: rgb(37 59 105 / 75%) !important;
}

.experience h3 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1;
}

.experience span {
    font-size: 52px;
}

.experience img {
    /* width: 80px; */
    height: 80px;
    object-fit: contain;
}


/* .whyus p {
    font-size: 16px;
} */

.whyus img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}


/* faq */

.faqsection .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #000;
}

.faqsection .accordion-item {
    border: 0;
    background: transparent;
    padding-bottom: 1rem;
}

.faqsection .accordion-item h3 {
    font-family: inherit;
    margin-bottom: 10px;
    color: #fff !important;
}

.faqsection .accordion-button {
    /* font-size: 1rem; */
    font-weight: 600;
    padding: 0;
    background: transparent;
    color: #000;
}

.faqsection .accordion-button::after {
    filter: invert(1);
}

.faqsection .accordion-body {
    padding: 0;
    color: #000;
}

.accordion-button:not(.collapsed) {
    box-shadow: unset !important;
}

/* .homeservices img {
    border-radius: 12px 12px 0 0 !important;
}
 */
.homeservices p {
    color: #fff;
}

.homeservices .accordion-body {
    padding: 1rem 2rem;
}

.homeservices .card {
    transition: .05s;
/*     border-radius: 12px 12px 0 0 !important; */
    border: 4px solid var(--theme-color);
}

.homeservices .card-body {
    transition: .05s;
    /* border-radius: 12px 12px 0 0; */
}

.homeservices .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 4px hsla(0, 2%, 61%, .25);
}

.homeservices .card:hover .card-body {
    background: var(--dark-color) !important;
}

.swiper {
    height: 100%;
    width: 100%;
}

.swiper .swiper-slide {
    height: auto;
}

.fs-20 {
    font-size: 30px;
}

.text-theme {
    color: var(--theme-color);
}

.cont_details li {
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.cont_details li:last-child {
    border-bottom: 0
}

.social-links a {
    font-size: 20px;
    display: inline-block;
    margin-right: 13px;
    transition: all 0.3s ease 0s;
}

.copyright {
    margin: 0px 0px 5px;
}

.credits {
    font-size: 13px;
}

.footmenu a {
    font-size: 17px;
    color: rgb(255, 255, 255);
}

#footer {
    background: #fff;
    color: rgb(255, 255, 255);
    font-size: 14px;
    text-align: center;
    padding: 20px 0px;
}

footer {
    padding-top: 6rem !important;
}

footer img {
    width: 150px;
}

.footmenu li {
    padding-right: 10px;
}

.fs-74 {
    font-size: 64px;
}

.icon-md i {
    width: 2.6rem;
    height: 2.6rem;
    text-align: center;
    font-size: 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 100%;
    color: #fff;
    justify-content: center;
    align-items: center;
    display: flex;
}

.form-control {
    font-size: 14px;
}

 :focus {
    box-shadow: none !important;
}

.bg-theme {
    background: var(--theme-color) !important;
}

.bg-second {
    background: var(--secondary-color) !important;
}

.offcanvas {
    width: 80% !important;
}

.inspection_works h3 {
    font-size: 32px;
}

.inspection_works li {
    list-style: disc;
}

.inspection_works h6 {
    font-size: 64px;
    font-weight: 900;
}

.ser_content p {
    /* color: #fff; */
    margin-bottom: 0;
}

.serviceinner:nth-child(even) p {
    color: var(--theme-color);
    margin-bottom: 0;
}

.serviceinner h3 {
    font-size: 54px;
}

.client-info .img {
    width: 265px;
    height: 265px;
    overflow: hidden;
    margin: auto;
    margin-bottom: 15px;
}

.fs-15 {
    font-size: 15px;
}

.fs-64 {
    font-size: 64px !important;
}

.color-white p {
    color: #fff;
}


/* blog */

.article__body {
    margin-bottom: 3em;
}

.myblog .h2 {
    font-weight: 700;
    font-size: 44px;
    color: var(--theme-color);
}

.blogimg img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    margin-bottom: 15px;
}

.article__body p,
.quote__body p {
    line-height: 1.75;
    margin-bottom: 1.35em;
}

.article__body blockquote,
.quote__body blockquote {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71429;
    position: relative;
    margin-bottom: 3em;
    padding: 52px 20px 60px;
    text-align: center;
    /* text-transform: uppercase; */
    color: #204866;
    background-color: #f5f9fc;
    font-style: italic;
}

@media only screen and (min-width: 767px) {
    .article__body blockquote {
        padding: 40px 65px 45px;
    }
}

.article__body blockquote:before,
.quote__body blockquote:before {
    top: 0;
    left: 6px;
    content: '"';
}

.article__body blockquote:after,
.article__body blockquote:before,
.quote__body blockquote:after,
.quote__body blockquote:before {
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    position: absolute;
    color: #d6e3ed;
}

@media only screen and (min-width: 767px) {
    .article__body blockquote:before {
        left: 25px;
    }
}

.article__body blockquote:after,
.quote__body blockquote:after {
    right: 6px;
    bottom: 25px;
    content: '"';
}

@media only screen and (min-width: 767px) {
    .article__body blockquote:after {
        right: 25px;
        bottom: 15px;
    }
}

ul.myblog_right>li {
    padding: 5px 0 15px !important;
    display: inline-block;
    width: 100%;
    line-height: 20px;
}

ul.myblog_right>li a {
    color: #000;
}

ul.myblog_right>li a p {
    webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
}

ul.myblog_right>li .post-date {
    display: block;
    font-size: 11px;
    line-height: 14px;
    margin-bottom: 5px;
}

ul.myblog_right>li a {
    color: #000;
    font-size: 15px;
    display: block;
}

ul.myblog_right>li img {
    display: block;
    width: 84px;
    /* height: 84px; */
    float: left;
    margin-right: 18px;
    object-fit: contain;
}

.article__body ul li {
    font-size: 18px;
}

.blogmain p {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.breadcrumb_area {
    position: relative;
    background-position: 0 50%;
    background-repeat: no-repeat !important;
    background-color: #fff;
    background-size: cover!important;
    padding: 80px 0;
    background-repeat: no-repeat !important;
    /* background-size: 300px 100px !important; */
    background-position: center center !important;
    z-index: 1;
}

.breadcrumb_area:before {
    content: close-quote;
    background: rgb(0 0 0 / 45%);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    right: 0;
    left: 0;
    z-index: -1;
}

.breadcrumb_area h1 {
    font-size: 45px;
    margin: auto;
    font-weight: 700;
    color: #fff;
    /* text-shadow: rgba(0, 0, 0, 0.4) 4.12497px 4.12497px 0px; */
}

.bg-third {
    background-color: var(--third-color);
}

.contactlogo {
    width: 100px;
}

.font-prompt {
    font-family: "Prompt", sans-serif;
}

.fs-45 {
    font-size: 45px;
}

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

.ctaform .form-control {
    /* border-radius: 30px; */
    padding: 8px 13px;
    /* border-radius: 13px; */
}

.submitbtn {
    padding: 13px 40px;
    /* border-radius: 13px; */
    font-weight: 500;
    background-color: var(--theme-color) !important;
}

.ctaform ::placeholder {
    color: #424367;
    font-weight: 500;
    font-size: 14px;
}

.submitbtn {
    /* background: #F4924C !important; */
    font-size: 18px;
    width: 100%;
    font-weight: 600;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination-bullets {
    padding-top: 1rem;
}


/* areas */

.popularareas ul {
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px 24px;
    gap: 20px 24px;
    list-style: none;
    padding: 0;
}

.popularareas ul li span {
    border-width: 1px;
    border-color: var(--theme-color);
}

.popularareas span {
    min-width: 90px;
    height: 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #f5f5f5;
    border-radius: 16px;
    background: #fafafa;
    position: relative;
    overflow: hidden;
    -webkit-transition: -webkit-transform .2s, -webkit-filter .3s;
    transition: -webkit-transform .2s, -webkit-filter .3s;
    transition: transform .2s, filter .3s;
    transition: transform .2s, filter .3s, -webkit-transform .2s, -webkit-filter .3s;
}

.popularareas ul li span img {
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;
}

.popularareas li h6 {
    margin: 10px 0 0;
    font-weight: 600;
    font-size: 24px;
    line-height: 18px;
    text-align: center;
    letter-spacing: .01em;
    color: var(--theme-color);
}

.bg-color {
    background: var(--third-color);
}

.footlogo {
    width: 300px;
}


/* privacy policy */

.privacypolicy h1,
h2 {
    color: var(--theme-color);
    font-weight: 600
}

.privacypolicy h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.privacypolicy a {
    color: var(--secondary-color);
    font-weight: 600;
}

.privacypolicy h3 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 10px;
}

.privacypolicy p {
    margin-bottom: 15px;
}

.privacypolicy ul {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style: disc;
}

.privacypolicy ul li {
    list-style: disc;
}

.privacypolicy a:hover {
    text-decoration: underline;
}

.privacypolicy .contact-info {
    margin-top: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 5px solid var(--theme-color);
}

.privacypolicy .contact-info p {
    margin: 0;
}


/* gallery */

.card-grid-lg {
    height: 400px;
}

.card-overlay-hover:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #0b0a12;
    display: block;
}

.card.card-element-hover .hover-element {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 9;
}

.card-overlay-hover:hover:before {
    opacity: 0.5;
}

.card-overlay-hover:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #0b0a12;
    display: block;
}

.card.card-element-hover:hover .hover-element {
    visibility: visible;
    opacity: 1;
}

.card-element-hover {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    /* height: 10em; */
}

.card.overflow-hidden {
    will-change: transform;
}

.card-grid .card-grid-sm {
    height: calc(200px - var(--bs-gutter-y) / 2);
}

.icon-lg {
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    font-size: 1.2rem;
}

.img1 {
    width: 100px !important;
}

.z-9 {
    z-index: 9;
}

.fs-25 {
    font-size: 25px;
}

@media(min-width:992px) {
    .mainbanner .card {
        background-color: transparent;
        /* padding: 15px; */
        width: 589px;
        /* margin: auto; */
        padding: 0;
    }
}

@media(max-width:767px) {
    .mobilebanner {
        background-position: 20% center !important;
    }
    .newpad {
        padding: 1rem 0 !important;
    }
    .pt-50 {
        padding-top: 50px;
    }
    .vh-70 {
        height: 17vh !important;
        position: relative;
    }
    .logo {
        /* width: 80px; */
        margin: auto;
    }
    .topimg img {
        width: 65px;
        border-radius: 0;
    }
    .img1 {
        width: 80px !important;
    }
    .fs-20 {
        font-size: 24px;
    }
    footer {
        padding-top: 4rem !important;
    }
    .py-6 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .py-9 {
        padding: 11rem 0;
    }
    .mainbanner h1 {
        font-size: 30px;
        margin-bottom: 1rem;
        line-height: normal;
        text-align: center;
    }
    .breadcrumb_area h1 {
        font-family: 38px;
    }
    .px-xxl-8 {
        padding: 2rem 0
    }
    .section_head h2 {
        font-size: 35px;
        margin-bottom: 20px;
    }
    .fs-25 {
        font-size: 25px;
    }
    .fs-19 {
        font-size: 16px;
    }
    .w-200 {
        width: 130px;
        margin: auto;
    }
    .offcanvas .navbar-nav {
        margin-top: 0.75rem;
        margin-bottom: 0.5rem;
        padding: 0 30px;
    }
    .navbar .logo-image img {
        width: 170px;
        /* height: 48px; */
        object-fit: contain;
    }
    .breadcrumb_area {
        padding: 40px 0;
    }
    br {
        display: none !important;
    }
    .breadcrumb_area h2 {
        font-size: 20px !important;
        margin: auto;
        /* text-transform: uppercase; */
        font-family: "Lilita One", sans-serif;
    }
    .icon-lg {
        width: 5.5rem;
        height: 5.5rem;
    }
    .icon-lg img {
        /* border: 1px solid; */
        width: 51px;
    }
    .fs-45 {
        font-size: 24px;
    }
    .btn {
        font-size: 15px;
    }
    .display-7 {
        font-size: 18px;
    }
    .vh-100 {
        height: 37vh !important;
    }
    p {
        font-size: 16px;
    }
    .fs-18 {
        font-size: 16px;
    }
    .fs-32 {
        font-size: 23px;
    }
    .inspection_works h6 {
        font-size: 40px;
        font-weight: 900;
    }
    .inspection_works h3 {
        font-size: 28px;
    }
    .fs-85 {
        font-size: 30px !important;
    }
    .experience h3 {
        font-size: 26px;
    }
    .faqsection .accordion-button {
        font-size: 16px;
    }
    .fs-74 {
        font-size: 31px;
    }
    .footmenu a {
        font-size: 14px;
        color: rgb(255, 255, 255);
    }
    .copyright {
        margin: 0px 0px 5px;
        font-size: 14px;
    }
    .fs-64 {
        font-size: 35px !important;
    }
    .fs-24 {
        font-size: 25px;
    }
    .myblog .h2 {
        font-weight: 700;
        font-size: 25px;
        color: var(--theme-color);
    }
    .popularareas ul {
        margin-bottom: 28px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px 24px;
        gap: 20px 24px;
        list-style: none;
        padding: 0;
    }
    .popularareas li h6 {
        margin: 10px 0 0;
        font-weight: 600;
        font-size: 16px;
    }
    .popularareas span {
        min-width: 90px;
        height: 70px;
    }
    ul {
        font-size: 16px;
    }
    .header .btn {
        padding: 2px 34px;
    }
    .header .navbar {
        background-color: var(--dark-color) !important;
    }
    .experience span {
        font-size: 35px;
    }
}

@media(min-width:992px) {
    .p-30 {
        padding: 0 68px
    }
    .p-36 {
        padding: 0 36px
    }
}