/*
 Theme Name:     GeneratePress Child Theme
 Template:       GeneratePress
 Description:    Custom child theme for Airmd, based on GeneratePress
 Author:         Faiz
 Version:        1.0
*/
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.woff2') format('woff2'),
        url('fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Medium.woff2') format('woff2'),
        url('fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.woff2') format('woff2'),
        url('fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-SemiBold.woff2') format('woff2'),
        url('fonts/Roboto-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
:root {

    --title-color: #010F34;
    --body-color: #788094;
    --smoke-color: #F5F7FA;
    --smoke-color2: #ECF1F5;
    --smoke-color3: #F4E8E1;
    --black-color: #000000;
    --black-color2: #1b1b1b;
    --gray-color: #F8F8F8;
    --gray-dark-color: var(--gray-dark-color);
    --white-color: #fff;
    --light-color: #CDCDCD;
    --yellow-color: #FFB539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --th-border-color: #D8DDE1;
    --primary-color: #17a7e0;
    --primary2-color:#1280ac;
    --secondary-color: #54595F;
    --text-colo: #7A7A7A;
    --accent-color: #61CE70;
    --primary-font-family: 'Roboto', sans-serif;
}

html {
    margin-top: 0px !important;
}
body {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--body-color);
    background-color: var(--white-color);
    font-family: var(--primary-font-family);
}

p {
    font-family: var(--primary-font-family);
    margin: 0 0 18px 0;
    color:var(--body-color);
    line-height: 1.75;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{color: var(--title-color);}
.container.grid-container {
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: 100%;
    display: flex;
}
.site-content {
    display: flex;
    flex-direction: column;
    width:100%
}
ol, ul {
    margin: 0 !important;
}
.mt-40 {margin-top: 40px;}
.mb-40 {margin-bottom: 40px;}

/* top-bar */

.top-bar a {
    color: var(--white-color);
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--primary2-color);
    ;
}


.header-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.top-layout .header-links li {
    font-size: 16px;
}

.header-links li:not(:last-child) {
    margin: 0;
}


/* menu 2 */
.header-logo.new-header-logo {
    position: relative;
    z-index: 9;
}

.custom-navbar {
    padding-left: 40px;
}

.new-nav {
    position: relative;
    z-index: 7;
    background-color: #fafafa;
}

.th-btn.style2:before,
.th-btn.style2:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary2-color);
    transition: height 0.4s ease-in-out;
    z-index: -1;
}

.th-btn.style2:hover:before,
.th-btn.style2:hover:after {
    height: 100%;
}

.th-btn.styles{
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
}

.navbar-nav .current-menu-item > .nav-link,
.navbar-nav .current_page_item > .nav-link,
.navbar-nav .current-menu-item > .nav-link span,
.navbar-nav .current_page_item > .nav-link span {
    color: var(--primary-color) !important;
    position: relative;
}

/* .navbar-toggler:hover{background-color: var(--white-color);} */

.new-nav.shrink {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white-color);
    z-index: 999;
    -webkit-animation: headerSticky .95s ease forwards;
    animation: headerSticky .95s ease forwards;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
}

@keyframes headerSticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Navbar */
.navbar-brand {
    font-size: 1.8rem;
    max-width: 130px;
    margin-right: 0;
}

.navbar-nav .nav-link {
    color: var(--title-color)!important;
    font-weight: 500;
    font-size: 15px !important;
    margin-right: 15px !important;
    text-transform: uppercase;
    white-space: nowrap;
}

.navbar-nav .btn {
    border-radius: 20px;
}

.header-links li {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
}

.top-bar {
    position: relative;
    z-index: 9;
    background-color: var(--primary2-color);
    padding: 13px 0;
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
  color: var(--primary-color)!important;
font-size: 30px;
font-weight: bold;
}

.header-links li>i {
    margin-right: 6px;
}


.top-layout .social-links .social-title {
    font-size: 16px;
    color: var(--white-color);
}

.social-links .social-title {
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    color: var(--white-color);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.top-layout .social-links a:not(:hover) {
    color: var(--gray-color);
}

.social-links a {
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    color: var(--white-color);
    margin: 0 0 0 15px;
}

/* main-menu */
.header-layout .sticky-wrapper {
    position: relative;
    background-color: transparent;
    box-shadow: none;
    text-align: left;
}

.th-header .sticky-wrapper {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.header-layout .menu-area {
    position: relative;
    z-index: 3;
}

.menu-area .container {
    max-width: 1350px;
}

.header-button .th-btn.style2 {
    background-color: var(--primary-color);
    color: var(--white-color);
}


.header-layout .header-logo {
    position: relative;
}

.header-logo {
    padding-top: 15px;
    padding-bottom: 15px;
}

.header-layout .header-logo .logo-bg {
    content: "";
    position: absolute;
    top: -24px;
    left: -60%;
    width: 300px;
    height: 120px;
    border-radius: 0px 100px 100px 0;
    background: var(--white-color);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
    z-index: -1;
}

.header-layout .main-menu {
    padding-left: 45px;
}

.main-menu ul li:first-child {
    margin-left: 0 !important;
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu>ul>li {
    margin: 0 11px;
}

.header-layout .main-menu>ul>li>a {
    padding: 31px 0;
    color: var(--white-color);
}

.main-menu>ul>li>a {
    padding: 26.5px 0;
}

.main-menu a {
    display: block;
    position: relative;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 14px;
    color: var(--title-color);
    text-transform: uppercase;
}

.header-button {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.logo{max-width: 270px;max-height: 80px;}
.top-bar a img { padding-top: 9px;}
.th-btn.style2 {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    border: none;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 21px 30px;
    min-width: 144px;
    border-radius: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    white-space: nowrap;
}

.th-btn::before,
.th-btn:after {
    content: "";
    background: var(--white-color);
    position: absolute;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: -1;
    height: 0%;
    left: 0;
    top: 0;
    -webkit-transform: skew(0deg);
    -ms-transform: skew(0deg);
    transform: skew(0deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    width: 100%;
    border-radius: 10px;
}
.th-btn3{
  color: var(--primary-color);
  font-family: var(--body-font);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  font-size: 15px;
}
.th-btn3:hover{text-decoration: underline;}
.th-btn3 i{
  position: relative;
  top: 2px;
}
.form-btn .th-btn{padding: 19px 30px;}
.header-layout .main-menu>ul>li>a {
    padding: 31px 0;
    color: var(--white-color);
}

.header-layout .main-menu>ul>li>a:hover {
    color: var(--title-color);
}

.header-layout .main-menu ul li.menu-item-has-children>a:after {
    color: var(--white-color);
}

.header-layout .main-menu ul li.menu-item-has-children>a:hover:after {
    color: var(--title-color);
}

.header-layout .header-links li {
    font-size: 16px;
}

.header-layout .icon-btn {
    background-color: var(--icon-bg, var(--white-color));
}

.header-layout .icon-btn:hover {
    background-color: var(--icon-bg, var(--title-color));
}



/* footer */
.footer-main-box {
    background-color: var(--primary-color);
    color: white;
    padding-top: 120px;
    padding-bottom: 66px;
}

.footer a {
    color: white;
    text-decoration: none;
}

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

.footer .social-icons a {
    display: inline-block;
    width: 40px;
    line-height: 30px;
    text-align: left;
    background: var(--primary-color);
    border-radius: 5px;
    margin: 0 5px;
}

.footer .social-icons a i {
    color: white;
    font-size: 18px;
}
.social-icons {
    /* position: absolute;
    top: auto;
    right: 60px;
    bottom: 11px; */
    float: right;
    margin-top: -45px;
    margin-right: 60px;
}

.footer .bottom-bar {
    background: var(--primary2-color);
    text-align: center;
    padding: 22px 0;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 79px;
    height: 2px;
    background: linear-gradient(90deg, rgb(1, 129, 245) -8.86%, rgba(1, 129, 245, 0) 107.59%);
    display: block;
}

.footer-about-details p {
    max-width: 313px;
    margin-bottom: 30px;
    margin-top: -0.5em;
    color: var(--white);
    line-height: 1.75;
}

.footer-quick-link ul li a {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    display: block;
    max-width: 100%;
    width: max-content;
    background-color: transparent;
    position: relative;
    border-bottom: none;
    color: var(--white);
}

.footer-quick-link ul li a i {
    padding-right: 10px;
}
.footer-recent-post-box{gap:10px;}

.footer-recent-post-box > div{
  width: 50%;
}
.footer-recent-post img {
  max-width: 100%;
  height: 100px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.footer-recent-post .f-recent-title {
  display: block;
  font-size: 16px;
  margin-top: -0.4rem;
  color: var(--white-color);
  font-weight: 500;
}

.recent-details {
    width: 100%;
    padding: 10px 0;
}

.f-recent-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
}

.f-recent-date {
    font-size: 14px;
    color: var(--gray-dark-color);
    text-transform: capitalize;
}

.f-address {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    color: var(--white);
    line-height: 26px;
    margin-bottom: 5px;
}

.f-address span {
    width: 90%;
}

.f-address i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    font-size: 16px;
}

section.hero-section {
    margin-top: 0;
    /*height: calc(100vh - 142px);*/
    overflow: hidden;
}

.banner-content {
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%;
}
.hero-details{
  background-repeat: no-repeat;
  min-height: 245px;
}
  .hero-img img{width: calc(100% + 20px);}
  .slick-slide .hero-img img{max-width: 100%;width: 100%;}
.th-hero-bg {
    position: absolute;
    inset: 0;
    left: -120px;
}

.th-hero-bg img {
    height: 100%;
}

.h1,
h1 {
    font-size: 84px;
    line-height: 1.167;
}

.hero-text-box {
    padding: 0;
    max-width: 100%;
    position: relative;
    z-index: 5;
}

.hero-text-box .her-sub-txt {
    color: var(--white-color);
    font-size: 22px;
    max-width: 700px;
    margin-bottom: 20px;
}

.hero-details {
    position: relative;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-details:before {
    content: '';
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.slide-text {
    flex: 1;
    padding-right: 30px;
    animation: slideText 1s ease-out;
}
.slide-text h2{
    font-size: 60px;
    line-height: 1.167;
}
.slide-image {
    width: 40%;
    position: absolute;
    right: 0;
    bottom: -100%;
    animation: slideImage 1s ease-out forwards;
}

@keyframes slideText {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

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

@keyframes slideImage {
    0% {
        bottom: -100%;
        opacity: 0;
    }

    100% {
        bottom: 0;
        opacity: 1;
    }
}

.th-btn.style4:hover {
    color: var(--title-color) !important;
    background-color: var(--white-color);
}

.th-btn.th-border {
    position: relative;
    border: 1px solid var(--white-color);
    background: transparent;
    color: var(--white-color);
    overflow: hidden;
}

.th-btn.th-border::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: top 0.3s ease;
}

.th-btn.th-border:hover::before {
    top: 0;
}

.th-btn.th-border:hover {
    color: var(--white-color);
}

/* form section */
section.form-sec {
    margin-top: -75px;
    position: relative;
}

.booking-form-con {
    background-color: var(--white-color);
    padding: 50px 50px 20px 50px;
    box-shadow: -6px 6px 50px 0px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.booking-form-con .form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-select,
select {
    display: block;
    width: 100%;
    line-height: 1.5;
    vertical-align: middle;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-position: right 26px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-color: #f5f7fa;
    border: none;
    padding-left: 24px;
}

option:checked,
option:focus,
option:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.wpcf7-form-control-wrap {
    position: relative;
}

select,
.form-control,
.form-select.nice-select,
.nice-select,
textarea,
input {
    height: 56px;
    padding: 0 25px 0 25px;
    padding-right: 45px;
    border: 1px solid transparent;
    color: #333;
    background-color: var(--smoke-color);
    border-radius: 10px !important;
    font-size: 16px;
    width: 100%;
    font-family: var(--body-font);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

/* industries sec */

.industries-sec .industries-bg-cont .row {
    gap: 25px 0;
}

.industries-bg-cont {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 50px;
}

.sec-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1;
    color: var(--title-color);
}

.service-item {
    background: #c1d8e1;
    padding: 0;
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.04);
    background-position: bottom center;
    background-repeat: no-repeat;
    border-radius: 10px;
    height: 100%;
    display: block;
}

.service-item_content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    background-position: top center;
    background-repeat: no-repeat;
    border-radius: 10px;
    background-image: url('../images/service_shape_4.png');
    height: calc(100% - 190px);
    padding-bottom: 10px;
}

.service-item_icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    background-color: #ECF1F5;
    margin-bottom: 7px;
    -webkit-clip-path: path("M44 0L87.3013 25V75L44 100L0.69873 75V25L44 0Z");
    clip-path: path("M44 0L87.3013 25V75L44 100L0.69873 75V25L44 0Z");
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.service-item_icon:before {
    content: "";
    position: absolute;
    right: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: var(--primary-color);
    -webkit-clip-path: path("M35 0L69.641 20V60L35 80L0.358982 60V20L35 0Z");
    clip-path: path("M35 0L69.641 20V60L35 80L0.358982 60V20L35 0Z");
}


.service-item img {
    position: relative;
    padding: 20px;
    z-index: 9;
    width: 90px;
}

.slick-slide img {
    display: inline-block;
}
.service-item_img {
  width: 100%;
}
.service-item_img img{
  width: 100%;
  padding: 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  object-fit: cover;
  height: 190px;
}
.service-item .box-title {
  text-align: center;
  margin-bottom: 7px;
  color: var(--title-color);
  text-decoration: underline;
  transition: ease 0.2s;
}
.service-item:hover .box-title {
  transition: ease 0.2s;
}
.service-item:hover {box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);}
.box-title {
    font-size: 24px;
    line-height: 1.417;
    font-weight: 600;
}

.box-title a {
    color: inherit;
}

.service-item_text {
    line-height: 26px;
    color: #1a1a1a;
    flex-direction: column;
}
.service-item_text p{margin-bottom: 10px;color: #010F34;}
.service-item .service-item_text a{opacity: 0;}
.service-item:hover .service-item_text a{opacity: 1;}
.service-item .th-btn {
    padding: 16px 35px;
    color: var(--title-color);
    border-color: var(--primary-color) !important;
    align-self: flex-start;
}

.th-btn.border {
    padding: 18px 30px;
    border: 1px solid var(--th-border-color);
    background: transparent;
}

.th-btn:hover,
.th-btn.active {
    /* background-color: var(--primary-color) !important; */
    color: var(--white-color) !important;
}

.th-btn.border:before,
.th-btn.border:after {
    background: var(--primary-color);
}

/* Enviormental sec */
.enviormental-sec {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #f5f5f5;
}

.service-item-2, .service-item-3 {
    position: relative;
    background-color: var(--white-color);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px;
    padding-bottom: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0px;
    height: 100%;
    flex-direction: column;
}

.service-item-2_icon {
    min-width: 50px;
}

.service-img-box .service-img{
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.service-item-2 .service-item-2_details, .service-item-3 .service-item-3_details{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-item-2 .service-item-2_details .service-read-more, .service-item-3 .service-item-3_details .service-read-more{
  opacity: 0;
  font-size: 14px;
  padding-top: 5px;
}

.service-item-2:hover .service-item-2_details .service-read-more, .service-item-3:hover .service-item-3_details .service-read-more {
  opacity: 1;
}

.service-item-2_content{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.service-item-2 .box-title, .service-item-3 .box-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-top: -0.4rem;
    margin-bottom: 6px;
    color: var(--title-color);
    transition: ease 0.2s;
    text-decoration: underline;
}
.service-item-2:hover .box-title, .service-item-3:hover .box-title {
  transition: ease 0.2s;
}
.service-item-2:hover, .service-item-3:hover{
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
}
.service-item-2_text {
    margin-bottom: 0px;
}

.service-item-2 .line-btn, .service-item-3 .line-btn {
    color: var(--title-color);
    margin-bottom: -0.3rem;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.service-item-2 .line-btn i, .service-item-3 .line-btn i {
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    background-color: var(--smoke-color2);
    color: var(--primary-color);
    margin-left: 0;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.service-item-2 .line-btn:before, .service-item-3 .line-btn:before {
    display: none;
}

.service-item-2 .line-btn:hover, .service-item-3 .line-btn:hover {
    color: var(--primary-color);
}

.service-item-2 .line-btn:hover i, .service-item-3 .line-btn:hover i {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.service-item-3.open{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: relative;
  z-index: 99;
  background-color: #e5f1f7;
}
.service-item-3.open::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 80%;
  top: 20px;
  left: 0;
  background-color: #fff;
  z-index: -1;
  background-color: #e5f1f7;
}

.service-item-3.open .service-item-3_details{
  display: flex;
  position: relative;
  background: #fff;
  height: auto;
  padding: 10px;
  z-index: 1;
  width: calc(200% + 60px);
  right: 0;
  top: 14px;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
  background-color: #e5f1f7;
  padding-bottom: 20px;
  margin-left: -10px;
}
.residential-commercial .col-6:nth-child(odd) .service-item-3.open .service-item-3_details{
      border-top-left-radius: 0;
      border-top-right-radius: 10px;
      left: 0;
}
.residential-commercial .col-6:nth-child(even) .service-item-3.open .service-item-3_details{
  left: calc(-100% - 40px);
  border-bottom-left-radius: 10px;
  box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.05);
}
/* founder sec */
.founder-testi {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #f5f5f5;
}

.testi-card-3_text2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #333;

}

.area-serve-content {
    max-width: 700px;
    width: 100%
}

/* about sec */
.about-sec {
  padding-top: 60px;
  padding-bottom: 60px;
}

.img-box3 {
    position: relative;
}

.img-box3 .img3 {
  width: 100%;
  overflow: hidden;
    border-radius: 10px;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.img-box3 .img4 {
    position: absolute;
    top: 30px;
    right: 0px;
    max-width: 300px;
    border-radius: 0;
    width: 100%;
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

.img-box3 .img4 img,
.img-box3 .img3 img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.img-box3 .th-experience.style2 {
    position: absolute;
    bottom: -30px;
    right: 100px;
    padding: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: block;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    max-width: 300px;
    -webkit-filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.08));
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.08));
    z-index: 2;
    border-radius: 10px;
    text-align: center;
}

.img-box3 .th-experience.style2:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--white-color);
    z-index: -1;
    border-radius: 10px;
}

.img-box3 .th-experience.style2 .experience-year {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 50px;
    font-weight: bold;
}

.img-box3 .th-experience.style2 .experience-text {
    color: var(--title-color);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 0;
}

.about-right-box {
    padding-left: 20px;
}

.title-area {
    margin-bottom: calc(var(--section-title-space) - 12px);
    position: relative;
    z-index: 2;
    margin-top: -6px;
}
.about-right-box .title-area p:last-child{margin-bottom: 0}
.title-area .sec-title {
    margin-bottom: 20px;
}

.about-con-details {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #D8DDE1;
    padding-bottom: 10px;
    text-align: left;
}

.about-con-details .box-title {
    font-size: 24px;
    line-height: 1.417;
    font-weight: 600;
}

.feel-free-sec {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* why choose us */
.why-choose-sec {
    padding-top: 60px;
    padding-bottom: 60px;
}

.why-left-box .title-area {
    margin: 0px 0px 35px 0px !important;
}

.mt-n2 {
    margin-top: -.65rem;
}

.mb-30 {
    margin-bottom: 30px;
}

.info-media_wrapp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 35px;
}

.info-media.style2 {
    border: 1px solid var(--th-border-color);
}

.info-media {
    position: relative;
    border-radius: 20px;
    border: 1px solid #323A4E;
    padding: 25px 25px 25px 70px;
}

.info-media_icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 58px;
    height: 55px;
    text-align: center;
    padding: 15px;
    color: var(--white-color);
    background-color: var(--primary-color);
    -webkit-clip-path: path("M0 20C0 8.95431 8.95431 0 20 0H58V23.4654C58 28.9173 55.7743 34.1329 51.8381 37.9051L39.802 49.4398C36.0787 53.008 31.1209 55 25.9639 55H0V20Z");
    clip-path: path("M0 20C0 8.95431 8.95431 0 20 0H58V23.4654C58 28.9173 55.7743 34.1329 51.8381 37.9051L39.802 49.4398C36.0787 53.008 31.1209 55 25.9639 55H0V20Z");
}

.info-media.style2 .info-media_title {
    color: var(--title-color);
}

.info-media_title {
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 0;
}

.checklist ul {
    padding-left: 0;
    list-style: none;
    text-align: left;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.checklist.style4 li {
    color: var(--title-color);
    font-size: 18px;
    padding-left: 0;
}

.checklist li:not(:last-child) {
    margin-bottom: 10px;
}

.checklist li {
    position: relative;
    padding-left: 17px;
}

.checklist.style4 li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.img-box4 {
    position: relative;
    z-index: 0;
}

.img-box4 .img1 {
    position: relative;
    max-width: 450px;
    max-height: 450px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 2;
    display: block;
    margin-left: auto;
}

.img-box4 .img1:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--white-color);
    border: 10px solid #ECF1F5;
    border-radius: 50%;
    z-index: -1;
}

.img-box4 .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    padding: 27px;
}

.img-box4 .img2 {
    position: absolute;
    top: 0;
    left: 80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 10px solid var(--white-color);
    z-index: 3;
}

.img-box4 .img2 img {
    border-radius: 50%;
}

.img-box4 .play-btn {
    position: absolute;
    top: auto;
    bottom: 10%;
    left: auto;
    right: 0;
    z-index: 4;
}

.img-box4 .play-btn:after,
.img-box4 .play-btn:before {
    background-color: var(--white-color);
}

.ripple-animation,
.play-btn:after,
.play-btn:before {
    -webkit-animation-duration: var(--ripple-ani-duration);
    animation-duration: var(--ripple-ani-duration);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}

.play-btn:after,
.play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.img-box4 .play-btn>i {
    display: inline-block;
    width: var(--icon-size, 130px);
    height: var(--icon-size, 130px);
    line-height: var(--icon-size, 110px);
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: var(--icon-font-size, 1.7em);
    border-radius: 50%;
    border: 10px solid var(--white-color);
    z-index: 1;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.play-btn>i.fa-play {
    padding-right: 0.18em;
}



.play-btn:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.play-btn:hover:after,
.play-btn:hover::before,
.play-btn:hover i {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.play-btn.style2:before,
.play-btn.style2:after {
    background-color: transparent;
    border: 1px solid var(--white-color);
}

.play-btn.style3>i {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 20px;
}

.play-btn.style3:before,
.play-btn.style3:after {
    background-color: var(--white-color);
}

.play-btn.style3:hover>i {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* counter sec */
.counter-sec {
    background-repeat: no-repeat;
    background-size: 400px;
    background-position: right -30px;
    background-image: url('../images/service_shape_4.png');
    position: relative;
    padding-top: 50px;
}
.counter-sec .container .col-4 {
    padding: 0 6px;
}
.counter-box p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: var(--white-color);
    margin-bottom: 0;
}
.counter-sec:before {
    content: '';
    background-repeat: no-repeat;
    background-size: 400px;
    background-position: right -30px;
    background-image: url(../images/service_shape_4.png);
    width: 100%;
    height: 100%;
    position: absolute;
    transform: rotate(180deg);
    z-index: -1;
}

.counter-box {
  color: var(--white-color);
  text-align: center;
  padding: 30px 30px 30px 30px;
  border-right: 1px solid var(--white-color);
  border: solid 1px var(--primary-color2);
  border-radius: 10px;
  background-color: var(--primary-color);
  height: 100%;
}

.counter-box:last-child {
    border-right: 0;
}

.counter, .counter-box p.counter {
    font-size: 36px;
    font-weight: bold;
    line-height: normal;
}

.counter-prefix,
.counter-suffix {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
}
.counter-icon img{max-width: 64px}


/* testimonial sec */
.testimonial-sec {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}

.testi-item {
    position: relative;
    background: var(--white-color);
    padding: 30px;
    margin: 10px;
    /*box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);*/
    z-index: 3;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    border: solid 1px #f3f3f3;
}

.testi-item:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    background-color: #D8DDE1;
    -webkit-clip-path: path("M70 70V0L55 20V55H20L0 70H70Z");
    clip-path: path("M70 70V0L55 20V55H20L0 70H70Z");
    z-index: -1;
}

.testi-item_text {
    margin-top: -0.3rem;
    margin-bottom: 30px;
}

.testi-item_wrapp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: -0.3rem;
}

.testi-item_profile {
    min-width: 70px;
}

.testi-item_profile img {
    width: 70px;
    height:70px;
    border-radius: 6px;
}

.testi-item .box-title {
    margin-top: -0.5rem;
    margin-bottom: 0px;
}

.testi-item_desig {
    font-size: 14px;
}

.testi-item .star-icon i {
    color: #FFC700;
    font-size: 12px;
}

.testi-item .testi-quote {
    position: absolute;
    top: 15px;
    left: 25%;
    z-index: -1;
}

.testi-item:hover:before {
    background-color: var(--primary-color);
}
.btn-wrap{
    display: flex;
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    justify-content: space-between;
    transform: translateY(-50%);
}

.btn-wrap .prev-btn{
  font-size: 35px;
  padding: 5px;
  color: #D8DDE1;
  background-color: transparent;
  border-radius: 50%;
  z-index: 1;
  align-items: center;
  justify-content: center;
  display: flex;
  border: unset;
}

.btn-wrap .next-btn{
  font-size: 35px;
  padding: 5px;
  color: #D8DDE1;
  background-color: transparent;
  border-radius: 50%;
  z-index: 1;
  align-items: center;
  justify-content: center;
  display: flex;
  border: unset;
}

.btn-wrap .prev-btn:hover, .btn-wrap .next-btn:hover{
  color: var(--primary-color);
}

/* signup-sec */
.signup-sec {
    margin-bottom: -90px;
}

.newsletter-sec {
    position: relative;
    padding: 60px;
    z-index: 2;
    border-radius: 10px;
}

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

.newsletter-sec .newsletter-wrapper {
    margin-right: 40px;
}

.newsletter-title {
    font-size: 32px;
    line-height: 1.333;
    font-weight: bold;
}

.newsletter-form {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.newsletter-form input {
    background-color: var(--white-color);
    max-width: 374px;
    border-radius: 10px;
}

.sub-new-btn {
    background: #3f8339 !important;
    color: var(--white-color) !important;
}

.th-btn.style3 {
    background-color: var(--title-color);
    color: var(--white-color);
}


.blog-bg-cont {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 160px;
    padding-bottom: 140px;
}

.blog-grid {
    background-color: var(--white-color);
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    display: block;
    height: 100%;
    margin-bottom: 0 !important;
}
.blog-grid:hover{
    box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.1);
}
.global-img {
    position: relative;
    overflow: hidden;
}

.global-img {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.blog-img {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-img:before {
    top: 0;
    right: 51%;
    bottom: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.global-img:after,
.global-img:before {
    content: '';
    position: absolute;
    pointer-events: none;
    opacity: 1;
    z-index: 9;
}

.global-img:before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 99px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.blog-grid .blog-img img {
    width: 100%;
    height: auto;
}

.global-img img {
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-grid .blog-wrapper {
    position: absolute;
    left: 20px;
    bottom: -24px;
    display: inline-block;
    z-index: 9;
    width: 203px;
    height: 60px;
    background-color: var(--white-color);
    margin-bottom: 0px;
    -webkit-clip-path: path("M41.4497 3.5L8.44974 36.5L191.55 36.5L158.55 3.5L41.4497 3.5Z");
    clip-path: path("M41.4497 3.5L8.44974 36.5L191.55 36.5L158.55 3.5L41.4497 3.5Z");
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.global-img:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0) 100%);
}

.blog-grid .blog-wrapper:before {
    content: "";
    position: absolute;
    right: 20px;
    top: 7px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: var(--primary-color);
    -webkit-clip-path: path("M41.4497 3.5L8.44974 36.5L191.55 36.5L158.55 3.5L41.4497 3.5Z");
    clip-path: path("M41.4497 3.5L8.44974 36.5L191.55 36.5L158.55 3.5L41.4497 3.5Z");
    z-index: -1;
}

.global-img:hover:after {
    opacity: 1;
    left: 130%;
    -webkit-transition-property: left, top, opacity;
    transition-property: left, top, opacity;
    -webkit-transition-duration: 0.7s, 0.7s, 0.15s;
    transition-duration: 0.7s, 0.7s, 0.15s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.blog-grid_date {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--white-color);
    text-align: center;
    display: block;
    text-transform: uppercase;
    padding-top: 12px;
    margin-bottom: 0;
}

.blog-grid_content {
    padding: 30px;
}

.blog-grid .blog-meta {
    margin-top: -0.3rem;
    margin-bottom: 10px;
}

.blog-meta {
    display: block;
}

.blog-meta span,
.blog-meta a {
    display: inline-block;
    font-size: 14px;
    color: var(--body-color);
    font-family: var(--body-font);
    position: relative;
    margin-right: 14px;
    padding-right: 16px;
    border-right: 1px solid var(--th-border-color);
    height: 12px;
    line-height: 12px;
}

.blog-meta span i,
.blog-meta a i {
    margin-right: 6px;
    color: var(--primary-color);
}

.blog-grid .box-title {
    margin-bottom: 15px;
    text-decoration: underline;
    transition: ease 0.2s;
}
.blog-grid:hover .box-title {
  color: var(--primary);
  transition: ease 0.2s;
}
.blog-grid p{margin-bottom: 0}
.th-read {
    color: #788094 !important;
}

/* call us sec */
.call-us-sec {
    margin-bottom: -100px;
}

.call-us-sec .g-0,
.call-us-sec .gx-0 {
    --bs-gutter-x: 30px;
}

.contact-media.style1 {
    background-color: var(--white-color);
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.2);
    min-height: 150px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 283px;
    border-radius: 10px;
    border: solid 1px var(--primary-color);
    height: 100%;
}
.contact-logo img {
    padding-top: 20px;
}

.contact-media-wrapp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
}


.contact-media.bg-theme2 {
    background: var(--primary2-color);
}
.contact-box {
    background-color: var(--primary-color);
    display: flex;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.2);
    justify-content: space-between;
    position: relative;
    padding: 20px;
    height: 100%;
    gap: 10px;
    border: solid 1px var(--primary-color);
    flex-wrap: wrap;
    align-content: center;
}
.contact-media {
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
}

.contact-media_icon {
    width: 60px;
}
.contact-media_icon img{max-width: 100%}
.contact-media_content {
    width: 100%;
    display: block;
    align-items: center;
    gap: 10px;
}
.contact-media_subtitle {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 0px;
}

.contact-media_title {
    font-size: 24px;
    line-height: 40px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.contact-media_title a {
    color: inherit;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

footer.footer {
    margin-top: -75px;
}
.footer-quick-link .list-unstyled{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  gap: 0 10px;
  padding-left: 0;
}
/* location */
.location-sec {
    padding-top: 60px;
    padding-bottom: 60px;
}

.loc-content {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}



.slick-dots {
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  right: 20px;
  height: 60px;
  transform: translateY(-50%);
  bottom: 0;
}

.slick-dots li button:before {
    font-size: 14px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color)
}

.slick-dots li button:before {
    opacity: .5;
    color: var(--primary-color)
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.feel-free{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}
.modal.show .modal-dialog {
    transform: none;
    height: calc(100% - 60px);
}
.modal-content{
    top: 50%;
    transform: translateY(-50%);
}
.header-button .th-btn.style5{padding: 14px 20px !important;}
.services-heading{padding-left: 40px;}
.menu-logo{display: none;}
.shrink .menu-logo{display: block; width: 140px;}
.shrink .menu-text{display: none;}
.enviormental-sec h3.title-header, .enviormental-sec h2.title-header{
  position: sticky;
  top: 58px;
  width: 101%;
  background: #f5f5f5;
}
.sticky-header .title-header, .sticky-header .sec-title{
    position: fixed !important;
    top: 68px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    padding: 10px;
    text-align: center;
    font-size: 24px;
}
/* .enviormental-sec h3.title-header::before{
  content: '';
  background: #f5f5f5;
  position: absolute;
  top: -11px;
  width: 100%;
  height: 100%;
  z-index: -1;
} */
.hero-section-inner{
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-section-inner:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 0;
}
.hero-section-inner h1{
  text-align: center;
  color: #fff;
  z-index: 1;
  position: relative;
}
.list-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  list-style: none;
  padding: 0;
}
.list-items li{
  /* background:url('../images/icon-commercial.png') no-repeat left center;
  background-size: 24px; */
  height: 34px;
  overflow: hidden;
  padding:5px 0 5px 0px ;
}
/* .residential-services .list-items li{background:url('../images/icon-residential.png') no-repeat left center;background-size: 24px;} */
.list-items li a{
  color: var(--body-color);
  padding:5px 20px 5px 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: block;
}
.list-items li a:hover{
  color: var(--primary-color) !important;
  text-decoration: underline;
}
.list-items-row{
  display: flex;
  gap:24px;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}
.list-items-row.list-items li{background-image: none; padding-left: 0px;}
.list-items-row li a{padding: 0;}
.free-book .newsletter-sec{
  padding: 0px;
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.free-book .newsletter-sec::before, .free-book .newsletter-sec::after{
  background-color: #000;
  height: 100%;
  width: 47%;
  content: "";
  position: absolute;
  clip-path: polygon(0px 0px, 100% 0%, 88% 100%, 0% 100%);
  top: 0px;
  bottom: 0px;
  left: 13px;
  z-index: -2;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.free-book .newsletter-sec::after{
  background: var(--primary-color);
  left: 0px;
}
.free-book .newsletter-form{padding: 35px 30px 15px 0;}
.free-book .newsletter-form input{border: solid 1px #ccc;margin-bottom: 20px;}
.free-book .newsletter-sec .newsletter-wrapper{padding-left: 40px;}
.free-book .sub-new-btn{width: 100%;}
.search-form-container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.location-search{position: relative; z-index: 1}
.location-search #location-search-input {
    overflow: hidden;
    color: var(--Gray-500);
    text-overflow: ellipsis;
    font-family: var(--inter-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 38px;
    height: 60px;
    background: var(--smoke-color) url('./assets/images/icon-map.png') no-repeat 16px;
    background-size: 24px;
    padding-left: 50px;
    max-width: 500px;
    width: 100%;
}

.location-search button{
  /* height: 80px;
  font-size: 20px;
  font-weight: 600;
  padding: 21px 30px; */

  height: 60px;
  font-size: 16px;
  font-weight: 600;
  padding: 11px 20px;
}

.video-block-box{
  background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    display: flex;
    gap: 50px;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.clsvideo{
  line-height: 0;
  width: 100%;
  max-width: 675px;
}
.clsvideo iframe {
  width: 100%;
  height: 368px !important;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

}
.video-block{
  padding: 60px 0;
}
.state-location{
  padding: 20px 40px;
  height: 100%;
  font-size: 20px;
  position: relative;
  background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.state-location p:last-child{margin-bottom: 0}
.state-location p, .state-location h4{color: #fff;}
.state-location h4 {font-size: 28px;}
.gray-bg{background-color: #f5f5f5}
.about-img img{
  height: 425px;
  object-fit: cover;
}
.testi-item_text {
  margin-top: 0;
  margin-bottom: 0;
}
.slick-track{display: flex;}
.slick-slide{
  margin-bottom: 0px;
  float: none;
  height: auto;
}
.testimonial-sec .slick-slide{margin-bottom: 20px;}
.testi-item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.residential-block p.th-desc {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
.residential-block .th-btn{
    padding: 14px 25px;
    min-width: auto;
}
.hero-slider2 h1{font-size: 64px;}
.residential-block img{border-radius: 10px;}
.services-img img{height: 240px; object-fit: cover;width: 100%;}
.services-text p{
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.faq{padding: 50px 0}
.faq .accordion-item{border: none;}
.faq .accordion-button{
  padding:24px 0;
  border-bottom: 0.1rem solid rgb(215, 219, 225);
  color: rgb(1, 30, 65);
  font-family: var(--font-aktiv), sans-serif;
  font-weight: 400;
  line-height: 140%;
  font-size: 18px;
   border-radius: 0 !important;}
.faq .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}
.faq .accordion-button:focus{box-shadow: none;background-color: #fff;}
.faq .accordion-body p{margin-bottom: 0}
.faq .accordion-collapse {border-bottom: 0.1rem solid rgb(215, 219, 225); border-radius: 0 !important;}
.faq .accordion-body li{color: var(--body-color); margin-bottom: 10px;}
.free-ebook-main {
    border-radius: 16px;
    background: #c1d8e1;
    box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
    display: flex;
    padding: 0px 40px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    flex-wrap: wrap;
}
.free-ebook-main::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:url('./assets/images/blog_bg_1.jpg');
  background-size: cover;
  z-index:-1;
}
.ebook{
  width: 100%;
  min-height: 200px;
  background: #f1f1f1;
  border-radius: 10px;
}

.heading-ebook{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
      padding: 50px 0;
}
.heading-ebook h5{
    color: #17a7e0;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 0;
}
.heading-ebook h2{
    color:  #3E465A;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.72px;
    margin-bottom: 0;
}
.heading-ebook p{
    color:#101828;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
}
.email-ebook{width: 100%;}
.email-ebook input{
    display: flex;
    padding: 12px 14px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid  #d5d5d5;
    background:  #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: var(--Gray-500, #667085);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
}
.ebook-input .ebook-input-c input{
    width: 100%;
    min-width: 421px;
}
.ebook-input input::placeholder{
    color: #667085;
}
select#serviceType , textarea.form-control, select#input_1_6  {
    background-color: #f7f8f9;
    color: #6a6969 !important;
}

.ebook-input .gfield_required{
    display: none;
}

.heading-ebook p.small{
    display: block;
    color: #475467;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
    margin-top: 5px;
}
.ebook-left-one{
    width: 50%;
}
.ebook-right-img{
  width: 50%;
  text-align: center;
}
.sidebar {
  width: 100%;
  background-color: #f8f9fa;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding-bottom: 20px
}

.sidebar h5 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 15px;
  background-color: var(--primary-color);
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 0px;
}

.sidebar li a {
  display: block;
  padding: 10px 15px;
  color: #212529;
  text-decoration: none;
  transition: background-color 0.2s;
}

.sidebar li a:hover {
  background-color: #e9ecef;
}
.about-question{
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 90px;
}
.about-question .or{
  position: relative;
  margin: 10px 0
}
.about-question .or span{
  background-color: #fff;
  position: relative;
  padding: 0 5px;
  text-transform: uppercase;
  z-index: 1
}
.about-question .or::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  height: 1px;
  background-color: #ccc;
}
.about-question h5{font-size: 1.5rem;}
#askAirmd .modal-dialog{max-width: 800px}
textarea.form-control{height: auto;}
#askAirmd .modal-body{padding: 30px}
.form-check-input[type=checkbox]{padding: 0 !important}
.slick-slider{
  width: calc(100% + 20px);
  margin-left: -10px;
}
.white-bg{background-color: #ffffff!important;}
.white-bg-header::before, .white-bg-header{
  content: '';
  background-color: #ffffff!important;
}
.service-item-3 p.service-item-2_text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.show-more-less {
  text-align: right;
  margin-top: 3em;
}
.show-more-less button{
  border: none;
  padding: 0;
  color: var(--primary-color);
  background-color:transparent;
  font-size: 16px;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 14px 20px ;
  border-radius: 10px;
  line-height: 1;
}
.michigan-address i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    font-size: 20px;
}
.michigan-address {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    color: var(--white);
    line-height: 26px;
    margin-bottom: 5px;
    align-items: center;
}
.pad-60{padding: 60px 0;}
.pad-t-60{padding-top: 60px;}
.pad-b-60{padding-bottom: 60px;}
.pad-b-140{padding-bottom: 140px !important;}
.border-radius-10{border-radius: 10px;}
.sel-city ul{
  list-style: none;
  padding-left: 0;
}
.sel-city ul li{
  padding-bottom: 5px;
}
.sel-city ul li a{
  padding-bottom: 5px;
  color: var(--body-color);
}
.sel-city ul li a:hover{color: var(--primary-color); text-decoration: underline;}
.sel-city ul li a i{
  color: var(--primary-color);
  margin-right: 10px;
}
.michigan-address .rating-box i{
  width: auto;
height: auto;
line-height: 30px;
text-align: center;
border-radius: 0;
background: transparent;
color: #ffc800;
font-size: 16px;
margin-right: 2px;
}
.lab-icons{
  text-align: center;
}
.lab-icons .lab-icon-img{
  background-color:var(--primary-color);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 20px;
  margin: auto;
  margin-bottom: 10px;
}
.lab-icons .lab-icon-img img{border-radius: 0;}
.lab-icons .lab-icon-text{
  font-size: 16px;
  font-weight: bold;
}
.appointment{
  margin-top: 20px;
  border:solid 1px var(--primary-color);
  display: inline-flex;
align-items: center;
justify-content: center;
}
.appointment:hover{
  background-color: #fff;
  color:  var(--primary-color) !important;
}
.appointment span{
  max-width: 300px;
  display: inline-block;
  font-size: 20px;
  white-space: normal;
  margin-left: 10px;
  text-align: left;
  line-height: 1.2;
}
.top-states{position: relative;}
.appointment i{font-size: 40px;}
.top-states .slick-slide{margin-bottom: 0}
.top-states .card{margin:0 10px; position: relative;border: none; overflow: hidden;}
.top-states .card-body{position: absolute;bottom: 0; z-index: 2;}
.top-states .card-title {margin-bottom: 0; color: #fff;}
.top-states .card-title{color: #fff;transition: ease 0.5s;}
.top-states .card::before{
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.top-states .card img{transition: ease 0.5s;}
.top-states .card:hover img{
  transform: scale(1.2);
  transition: ease 0.5s;
}
.top-states .card:hover .card-title{
  transform: translateY(-20px);
  transition: ease 0.5s;
}
.top-cities .card{margin: 0;}
.top-states .slick-dots{right: -30px;}

.c-review-item{
    display: flex;
    padding: 12px;
    flex-direction: column;
    justify-content:  flex-start;
    align-items: center;
    gap: 12px;
    /*flex: 1 0 0;*/
    border-radius: 8px;
    border: 1.5px solid #EAECF0;
    background: #F9FAFB;
    margin:0 10px;
    height: 100%;
}
.c-review-txt{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    overflow: hidden;  /* Prevent overflow */
    transition: max-height 0.3s ease; /* Smooth transition */
     width: 100%;
}
.c-rate1 svg{height: 30px;width: 30px;}
.c-line{
    height: 2px;
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #EAECF0;
}
.c-review-txt p{
    color: #3E465A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
   width: 100%;
}
.c-review-txt p.expanded {
    -webkit-line-clamp: unset;
    display: block;
  }
.c-review-txt .c-review-name{
    font-weight: 600;
}
.toggle-button{
  color: var(--primary-color);
  cursor: pointer;
}
.review-more-link a{
    display: flex;
    padding: 8px 12px 8px 0px;
    justify-content:flex-start;
    align-items: center;
    gap: 4px;
    color:  #475467;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.c-rating-img {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: space-between;
    width: 100%;
}
.c-rating-img .c-rate2{
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 146px;
    gap: 10px;
}
.c-rate2-txt p{
    color: #101828;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0;
}
.c-rate2 .c-rate2-img{
    display: flex;
    align-items:center;
    gap: 4px;
}
.c-rate3 p{
    color: #475467;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.72px;
    margin-bottom: 0;
}
.g-icon {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}
.google-reviews-sec{padding-top: 60px}
.google-reviews, .google-reviews2{
  display: flex;
  gap:20px;
  align-items: flex-start;
  height: 100%;
}
.google-reviews2 .c-review-item{
  margin: 0;
  width: 100%;
  height: 100%;
}
.google-reviews2 .c-review-txt p{-webkit-line-clamp: 8;}
.google-reviews2 .c-rating-img .c-rate2 {
    flex-direction: column;
    gap: 0;
}
.google-reviews2 .c-rate1 svg {height: 50px;}
.google-reviews2 .c-rate3 p{font-size: 36px;}
.provide-services{
  background: #fff;
border-radius: 10px;
padding: 20px;
text-align: center;
margin-top: 25px;
margin-bottom: 0;
box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
display: block;
}
.provide-services a{
  /* border: solid 1px var(--primary-color);
  border-radius: 20px; */
  padding: 10px 5px;
  text-decoration: underline;
}
/* .provide-services a:hover{
  background-color: var(--primary-color);
  color: #fff;
} */
.help {
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 0;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  display: block;
}
.help p, .help a, .help h4{color: #fff}
.faq-img img{width: 76%;}
.help-main-link{
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.location-area-sec{
  padding-top: 60px!important;

}
.location-left-details h2 {
      color: #010f34;
    font-size: 36px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -0.72px;
    margin-bottom: 0;
    max-width: 700px;
    width:100%;
}
.location-left-details h2  span{
  color: #17a7e0;
  font-weight: bold;
}
.location-search{width: 100%}
.location-search form {
    display: flex;
    align-items: center;
    gap: 20px;
}
.location-left-details {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap:40px;
    height: 100%;
}
.location-left-details input{
  border-radius: 8px !important;
  border: 1px solid #d0d5dd;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  line-height: 24px;
}
.search-form-container i.fas.fa-play {
    display: none;
}
.location-right-details ul li {
    margin-bottom: 12px;
    color: #788094;
    font-size: 18px;
    font-style: normal;
    line-height: 28px;
    padding-top: 2px;
    display: flex;
    align-items: start;
    gap: 12px;
}
.location-right-details ul li i {
    padding-top: 5px;
    color: var(--primary-color);
}
.location-right-details p {
    color:#010f34;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    padding: 12px 0;
    margin-bottom: 0;
}
.location-right-details {
    padding-left: 30px;
}
.hero-map-bg{
  background: url('../images/slider-img4.jpg') no-repeat center;
  background-size: cover;
  background-position: 82% center;
}
.hero-map-bg .hero-slider2 h1{color: var(--primary-color);}
.hero-map-bg .hero-slider2 p{color: var(--body-color);}
.hero-map-bg .hero-details:before{ background-color: rgba(0, 0, 0, 0.05);}
.city-img-box, .city-img-box .about-img{height: 100%;}
.contact-sec{padding-top: 60px; padding-bottom: 140px;}
.contact-box2 {height: 100%;}
.card {background: #ffffff;height: 100%;}
.contact-icon {
    background: #ffffff;
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    /* box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1); */
}
.con-sub-title{margin-bottom: 30px;}

.contact-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
    transition: all 0.4s ease 0s;
}
.contact-info ul{padding: 0}
.contact-info ul li,
.contact-info ul li a {
    padding: 8px 0;
    color: var(--primary-color);
    list-style: none;
}
.contact-info ul li a:hover{text-decoration: underline;}
.contact-info ul li.address{
  max-width: 300px;
  margin: auto;;
}
.social-links{display: flex; list-style: none; padding: 0}
.social-links li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #757575;
}
.social-links li a:hover{color: var(--primary-color);}
.info-list{padding-left: 0; margin-top: 30px;}


#content_block_6 .content-box {
    position: relative;
    display: block;
    color: #000;
}
#content_block_6 .content-box .info-list li {
  position: relative;
  display: flex;
  padding-left: 0;
  margin-bottom: 35px;
}
#content_block_6 .content-box .info-list li .icon-box {
    position: relative;
    left: 0px;

}
#content_block_6 .content-box .info-list li .inner {
    position: relative;
    padding-left: 32px;
    width: calc(100% - 80px);
}

#content_block_6 .content-box .info-list li .inner h4 {
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
#content_block_6 .content-box .info-list li .inner p {
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    text-align: left;
}

#content_block_6 .content-box .info-list li .inner:after {
    position: absolute;
    content: '';
    width: 2px;
    height: 20px;
    left: 10px;
    top: 6px;
    transition: all 500ms ease;
    background: var(--primary-color);
}
#content_block_6 .content-box .info-list li .inner:before {
    position: absolute;
    content: '';
    background: #e2d7d0;
    width: 2px;
    height: 90px;
    left: 10px;
    top: 6px;
}
.form-inner {
    position: relative;
    display: block;
    background: #fff;
    padding: 50px 50px;
    padding-top: 43px;
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}
.service-item-3 .box-title{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.top-served-states .slick-slide:empty,
.top-served-states .slick-slide > div:empty {
    display: none !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.home-page .padding-top-0{
    padding-top: 0 !important;
}

button.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9;
    background: #00a4dd;
    border: none;
    padding: 3px 13px;
}

/* single page */
.site-content .content-area {
    width: 100%;
}
.entry-title {
    display: none;
}
 .separate-containers .inside-right-sidebar{
    display: none;
 }
.page-id-403  div#right-sidebar , .postid-369 div#right-sidebar , .postid-366 div#right-sidebar , .postid-344 div#right-sidebar ,
.postid-368 div#right-sidebar , .postid-367 div#right-sidebar , .postid-365 div#right-sidebar , .postid-346 div#right-sidebar ,
.postid-364 div#right-sidebar {
    display: none;
}
.entry-content {
    max-width: 1400px;
    margin: 0 auto !important;
    padding: 0 20px 20px 20px;
}
.featured-image.page-header-image-single.grid-container.grid-parent{
    max-width: 1350px;
}


.about-single-sec {
  padding:40px 20px 100px 20px;
  color: #333;
}
.about-single-sec .about-title , .entry-content h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #002b57;
}
.faq .accordion-button:hover {
    background: transparent;
}
section.enviormental-sec.residential-block.services-boxes {
    margin-bottom: 60px;
}
section.faq.single-faq {
    margin-bottom: 100px;
}
.single-faq div#accordionExample {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

.single-faq div#accordionExample .accordion-item {
    width: 48%;
}
ul.wp-block-list li {
    padding-bottom: 10px;
}

.commercial-services .list-items-row{justify-content: center;}

/* Request Quote popup */
p.gform_required_legend {
    display: none;
}
.gf-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
   opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gf-popup.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.gf-popup-content {
    background-color: #fff;
    margin: 0% auto;
    padding: 0px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    position: absolute;
    top: 12%;
    left: 36%;
      transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gf-popup.show .gf-popup-content {
  transform: translateY(0);
  opacity: 1;
}

.gf-popup-content  h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #010f34;
  text-align: center;
  line-height: 44px;
}
.gf-popup-content fieldset legend{
    margin-bottom: 0;
}

.gf-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
}
.gf-popup-content input,
.gf-popup-content select,
.gf-popup-content input[type="tel"],
.gf-popup-content textarea {
    margin-bottom: 15px;
}
.gf-popup-content textarea {height: 86px !important;}
.gform-theme--foundation .gform_fields {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(auto-fill,auto);
    inline-size: 100%;
    gap: 0 20px;
}

.gform-theme--foundation .gfield--width-half {
    grid-column: span 6;
}

.gform-theme--foundation .gfield {
    /* grid-column: 1 / -1; */
    min-inline-size: 0;
}

div#field_1_7 {
    grid-column: span 12;
}

label.gfield_label.gform-field-label {
    margin-bottom: 0;
}
.gf-popup-content input[type="submit"] {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
}
.gf-popup-content input[type="submit"]:hover {
    background-color: #1280ac;
}
.gf-popup-content textarea#input_1_7{height: 86px!important;}
.about-us-section{
    padding: 60px 0;
}
.service-add-content p.f-address {
    font-size: 18px;
    line-height: 28px;
}
.service-add-content p.f-address a{
    color: var(--body-color);
    text-decoration: none;
}
.service-add-content p.f-address a:hover {
    color: var(--primary-color);
}

.service-add-content p.f-address i {
    background: rgb(23 167 224);
    width: 40px !important;
    height: 40px;
    line-height: 40px;
}
.service-add-content p.f-address span {
    width: 78%;
}
.about-sec.service-city {
    background: #f5f5f5;
    margin-bottom: 60px;
}
.service-single-sec .service-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0px 0px 0px 0px;
}
.service-single-sec .hero-details {
    min-height: 360px;
}
.service-content h1:first-child , h1.wp-block-heading , .featured-image.page-header-image-single {
    display: none;
}
.service-city-add .office-hours, .service-city-add .office-links {
    display: none;
}

/* Services boxes - 2 per row layout */
.services-row {
    align-items: stretch;
}

.service-item-wrapper {
    height: 100%;
    padding: 15px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.service-item-wrapper:hover {
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.15);
}

.services-text h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.services-text p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.services-img img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Mobile alternating images - applies below lg breakpoint (992px) */
@media (max-width: 991px) {
    /* Reset ALL desktop flex-row-reverse first */
    .services-row .col-lg-6 .row.flex-row-reverse.mobile-override {
        flex-direction: row !important;
    }
    
    /* Then apply mobile alternating logic */
    .services-row .col-lg-6.mobile-img-right .row.mobile-override {
        flex-direction: row-reverse !important;
    }
    
    /* Ensure left images stay left */
    .services-row .col-lg-6.mobile-img-left .row.mobile-override {
        flex-direction: row !important;
    }
}

/* Fix spacing between services on mobile */
@media (max-width: 991px) {
    .services-row .col-lg-6 {
        margin-bottom: 30px;
    }
    
    .services-row:last-child .col-lg-6:last-child {
        margin-bottom: 0;
    }
    
    /* Reset ALL desktop flex-row-reverse first */
    .services-row .col-lg-6 .row.flex-row-reverse.mobile-override {
        flex-direction: row !important;
    }
    
    /* Then apply mobile alternating logic */
    .services-row .col-lg-6.mobile-img-right .row.mobile-override {
        flex-direction: row-reverse !important;
    }
    
    /* Ensure left images stay left */
    .services-row .col-lg-6.mobile-img-left .row.mobile-override {
        flex-direction: row !important;
    }
}

@media (max-width: 991.98px) {
    .services-row .col-12 + .col-12 {
        margin-top: 1.5rem; /* 24px, same as mb-4 */
    }
}

/* fix 9th box */
/* Additional Services Box Fixes */

/* Desktop: Remove gap between title and text */
.additional-services .box-title.th-title {
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    line-height: 1.2 !important;
}

/* Prevent the service box expansion effect for additional services */
.additional-services.service-item-3 {
    pointer-events: none !important;
}

.additional-services-link {
    pointer-events: auto !important;
}

/* Disable the open/expand functionality */
.additional-services.service-item-3.open,
.additional-services.service-item-3:hover {
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    position: static !important;
    z-index: auto !important;
    background-color: var(--white-color) !important;
}

.additional-services.service-item-3.open::before,
.additional-services.service-item-3:hover::before {
    display: none !important;
}

.additional-services .service-item-3_details {
    display: flex !important;
    position: static !important;
    background: transparent !important;
    height: auto !important;
    padding: 0 !important;
    z-index: auto !important;
    width: 100% !important;
    right: auto !important;
    top: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-left: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove image placeholder styling */
.additional-services-img {
    display: none !important;
}

/* Mobile: Make additional services box full width (span 2 columns) */
@media (max-width: 767px) {
    .additional-services-box {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    /* Remove col-12 col-sm-12 specific styling for mobile */
    .additional-services-box.col-12.col-sm-12 {
        width: 100% !important;
    }
}

/* Remove touch effects and prevent expansion */
.additional-services-link,
.additional-services-link:hover,
.additional-services-link:active,
.additional-services-link:focus {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    outline: none !important;
}

.additional-services:hover,
.additional-services:active,
.additional-services:focus {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05) !important;
    transform: none !important;
}

/* Ensure no hover effects on the additional services box */
.additional-services:hover .box-title {
    transition: none !important;
    color: var(--title-color) !important;
}

/* Desktop: Match text to title font size (20px), remove underline */
.additional-services-text {
    font-size: 20px !important;
    line-height: 30px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

/* Mobile: 18px bold, no underline */
@media (max-width: 991px) {
    .additional-services-text {
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
    }
}

/* Prevent iOS tap highlight */
.additional-services-link * {
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
}

/* Override top margin for single services pages */
.separate-containers .site-main.service-single-sec {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
}

.site-main > .hero-section {
  margin-bottom: 0 !important;
}

/* Ensure city-service pages have same hero height as service pages */
.service-city-content .hero-details {
    min-height: 360px;
}

/* Testing and commercial service pages - use fixed heights, no aspect ratio */
.service-type-testing .service-single-sec .hero-section.inner-hero-section .hero-details,
.service-type-commercial .service-single-sec .hero-section.inner-hero-section .hero-details {
    position: relative;
    min-height: 360px !important;
    max-height: 450px !important;
}

/* Mobile adjustments for service pages */
@media (max-width: 767px) {
    .service-type-testing .service-single-sec .hero-section.inner-hero-section .hero-details,
    .service-type-commercial .service-single-sec .hero-section.inner-hero-section .hero-details {
        min-height: 250px !important;
        max-height: 300px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service-type-testing .service-single-sec .hero-section.inner-hero-section .hero-details,
    .service-type-commercial .service-single-sec .hero-section.inner-hero-section .hero-details {
        min-height: 300px !important;
        max-height: 380px !important;
    }
}

/* Fix hero height for general pages (about-us, contact, testing/commercial landing pages) */
/* Override the aspect ratio behavior that comes from .testing-page class */

/* Step 1: Remove the aspect ratio pseudo-element */
.page-template-template-about-us .testing-page .hero-section.inner-hero-section .hero-details::after,
.page-template-template-contact-us .testing-page .hero-section.inner-hero-section .hero-details::after,
.page-template-template-testing .testing-page .hero-section.inner-hero-section .hero-details::after,
.page-template-template-commercial .testing-page .hero-section.inner-hero-section .hero-details::after {
    display: none !important;
}

/* Step 2: Set fixed height instead of aspect ratio */
.page-template-template-about-us .testing-page .hero-section.inner-hero-section .hero-details,
.page-template-template-contact-us .testing-page .hero-section.inner-hero-section .hero-details,
.page-template-template-testing .testing-page .hero-section.inner-hero-section .hero-details,
.page-template-template-commercial .testing-page .hero-section.inner-hero-section .hero-details {
    min-height: 360px !important;
    max-height: 450px !important;
}


/* Mobile adjustments */
@media (max-width: 767px) {
    .page-template-template-about-us .testing-page .hero-section.inner-hero-section .hero-details,
    .page-template-template-contact-us .testing-page .hero-section.inner-hero-section .hero-details,
    .page-template-template-testing .testing-page .hero-section.inner-hero-section .hero-details,
    .page-template-template-commercial .testing-page .hero-section.inner-hero-section .hero-details {
        min-height: 250px !important;
        max-height: 300px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .page-template-template-about-us .testing-page .hero-section.inner-hero-section .hero-details,
    .page-template-template-contact-us .testing-page .hero-section.inner-hero-section .hero-details,
    .page-template-template-testing .testing-page .hero-section.inner-hero-section .hero-details,
    .page-template-template-commercial .testing-page .hero-section.inner-hero-section .hero-details {
        min-height: 300px !important;
        max-height: 380px !important;
    }
}

/* Gravity Form Styling for Ebook Section */
.email-ebook .gform_wrapper {
    margin: 0 !important;
}

.email-ebook .gform_wrapper form {
    width: 100%;
}

.email-ebook .gform_fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.email-ebook .gfield {
    margin: 0 !important;
    padding: 0 !important;
}

.email-ebook fieldset.gfield {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.email-ebook .ginput_container--name {
    display: flex !important;
    flex-direction: column !important;
}

.email-ebook .name_first {
    width: 100% !important;
}

.email-ebook .gfield_label,
.email-ebook .gfield_description,
.email-ebook .gsection_description,
.email-ebook .gform-field-label,
.email-ebook .gform-field-label--type-sub,
.email-ebook .gfield_required,
.email-ebook legend.gfield_label {
    display: none !important;
}

/* Hide honeypot field properly (position off-screen, don't use display:none) */
.email-ebook .gfield_visibility_hidden,
.email-ebook .gform_validation_container,
.email-ebook .gfield--type-honeypot {
    position: absolute !important;
    left: -9000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.email-ebook .ginput_container input[type="text"],
.email-ebook .ginput_container input[type="email"],
.email-ebook .ginput_container input[type="tel"] {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    background: #fff !important;
}

.email-ebook .ginput_container input::placeholder {
    color: #999 !important;
}

.email-ebook .gform_footer {
    margin: 1rem 0 0 0 !important;
    padding: 0 !important;
    text-align: center;
    display: block !important;
}

.email-ebook .gform_footer input[type="submit"],
.email-ebook .gform_footer .gform_button,
.email-ebook #gform_submit_button_2 {
    background-color: #00A8E8 !important;
    background: #00A8E8 !important;
    color: #fff !important;
    border: none !important;
    padding: 0.875rem 2rem !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

.email-ebook .gform_footer input[type="submit"]:hover,
.email-ebook .gform_footer .gform_button:hover,
.email-ebook #gform_submit_button_2:hover {
    background-color: #0086BA !important;
    background: #0086BA !important;
}

.email-ebook .gfield_validation_message,
.email-ebook .validation_message {
    font-size: 0.875rem !important;
    margin-top: 0.25rem !important;
    color: #dc3545 !important;
}

.email-ebook .gform_confirmation_message,
.email-ebook #gform_confirmation_message_2,
.email-ebook .gform_confirmation_wrapper {
    text-align: center !important;
    padding: 2rem !important;
    background: #d4edda !important;
    border: 1px solid #c3e6cb !important;
    border-radius: 4px !important;
    color: #155724 !important;
    font-weight: 500 !important;
    display: block !important;
    visibility: visible !important;
}

.email-ebook #gform_confirmation_wrapper_2 {
    display: block !important;
    visibility: visible !important;
}

