/* FONT IMPORT */


/* Google Font */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Local Font */

@font-face {
    font-family: "next-lt";
    src: url("../fonts/next-lt.otf");
}

:root {
    --white: #FFFFFF;
    --black: #000000;
    --primary: #58ced4;
    --secondary: #db3529;
    /* Font Variable */
    --font-text: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;   
    overflow-x: hidden;   
}

body {
    position: relative;
    background: var(--white);
    overflow-x: hidden;    
    font-family: var(--font-text);
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "next-lt";
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

p {
    font-size: 1.125rem;
    line-height: 2;
    color: #828282;
}

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

figure {
    margin: 0;
}


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* NAV HEADER CSS */

header {
    background: var(--black);
    padding: 0.625rem 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 200px;
}

.navbar-brand>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav {
    align-items: center;
    gap: 1.5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 0;
    height: 3px;
    bottom: -5px;
    transition: 0.5s ease;
    transform: scale(0);
}

.navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
    transform: scale(1);
}

.calls {
    display: flex;
    gap: 0.875rem;
    align-items: center;
}

.calls:hover div {
    background: var(--primary);
    color: var(--white);
}

.calls div {
    border: 1px solid var(--primary);
    width: 46px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 1.125rem;
    background: transparent;
    transition: 0.5s ease;
}

.calls span {
    display: grid;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3;
}

.calls span small {
    font-size: 0.875rem;
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    background: url(../images/inner-banner.png) center/cover no-repeat;
    height: 610px;
}

.main-slider .swiper-wrapper {
    z-index: auto;
}

.main-slider .swiper-slide {
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slideOne h1 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 5.9375rem;
    line-height: 1;
    font-weight: 700;
}

.slideOne h1 span {
    font-size: 2rem;
    display: block;
    font-weight: 400;
}

.trusted {
    letter-spacing: 8px;
}

.slideOne p {
    color: var(--white);
    margin-bottom: 1.3rem;
}

.slideOne .btn-group {
    gap: 1.25rem;
}

.themeBtn {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    background: linear-gradient(180deg, #73edee, #37a7b5);
    border-radius: 3.125rem;
    padding: 0.875rem 2.1em;
    display: inline-block;
    transition: 0.5s ease;
    width: fit-content;
}

.themeBtn:hover {
    background: linear-gradient(180deg, #db3529, #37a7b5);
    color: var(--white);
}

.themeBtn1 {
    background: #db3529;
}

.mouse a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.125rem;
    color: var(--white);
    font-family: "next-lt";
}

.mouse {
    position: absolute;
    bottom: 2rem;
}


/* !MAIN HERO SLIDER CSS */


/* Serving Sec Css Start */

.servingSec {
    padding: 6.25rem 0 8.75rem 0;
}

.servingWrap {
    text-align: center;
}

.servingWrap figure {
    border: 1px dashed var(--primary);
    width: 200px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 1.75rem;
    transition: 0.5s ease;
}

.servingWrap figure:hover {
    border-color: var(--secondary);
}

.servingWrap h3 {
    font-size: 1.375rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black);
}


/* Serving Sec Css End */


/* About Sec Css Start */

.aboutSec {
    padding-bottom: 6.875rem;
}

.aboutWrap {
    display: flex;
    align-items: center;
    gap: 1.5625rem;
}

.aboutImg {
    display: flex;
    flex-direction: column;
    gap: 1.5625rem;
}

.aboutImg img {
    width: 100%;
    height: 284px;
    object-fit: cover;
}

.secHeading {
    font-size: 3.75rem;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 700;
    margin: 0;
}

.secHeading span {
    font-size: 1.25rem;
    display: block;
    font-weight: 400;
}


/* About Sec Css End */


/* What We Do Sec Css Start */

.whatwedoSec {
    background: #f6f6f6;
    padding: 6.875rem 0;
}

.serviceText {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.875rem;
}

.serviceText h3 {
    font-size: 1.5625rem;
    color: var(--black);
    font-weight: 700;
    margin: 0;
}

.serviceText a {
    color: #707070;
    transform: rotate(322deg);
    font-size: 1.5rem;
}

.serviceSlider .swiper-slide-next .serviceText a {
    color: var(--secondary);
}

.whatwedoSec .swiper-button-next,
.whatwedoSec .swiper-button-prev {
    background: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgb(201 201 201 / 16%);
    top: 53%;
}

.whatwedoSec .swiper-button-next:after,
.whatwedoSec .swiper-button-prev:after {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
}

.whatwedoSec .swiper-button-next {
    right: 10%;
}

.whatwedoSec .swiper-button-prev {
    left: 10%;
}

.serviceSlider {
    padding: 0.5rem 0 2.5rem 0;
}

.serviceSlider .swiper-pagination {
    display: flex;
    gap: 1.875rem;
    width: 100%;
    bottom: 1.125rem;
}

.serviceSlider .swiper-pagination-bullet {
    flex: 1;
    height: 1px;
    border-radius: 0;
    background-color: #707070;
    opacity: 1;
    position: relative;
}

.serviceSlider .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #db3529;
}

@keyframes progressbar {
    100% {
        width: 100%;
    }
}

.serviceSlider .swiper-pagination-bullet-active::before {
    animation: progressbar 2500ms both;
}


/* What We Do Sec Css End */


/* Project Sec Css Start */

.projectSec {
    padding: 7.5rem 0;
}

.projectSlider {
    margin: 0.5rem 1.875rem;
}


/* Project Sec Css End */


/* Industry Sec Css Start */

.industrySec {
    background: url(../images/industryBg.jpg) center/cover no-repeat;
    padding: 17.5rem 0 10rem 0;
}

.industryText p {
    font-size: 1.125rem;
    line-height: 2;
    color: #828282;
}

.videoBtn {
    background: var(--white);
    width: 122px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--secondary);
    font-size: 1.5rem;
    position: relative;
    margin: auto;
}

.videoBtn:before {
    content: "";
    position: absolute;
    border: 1px solid var(--white);
    width: 140px;
    aspect-ratio: 1;
    border-radius: 50%;
}

.videoBtn:hover {
    background: var(--primary);
    color: var(--white);
}


/* Industry Sec Css End */


/* Reviews Sec Css Start */

.reviewSec {
    padding: 6.25rem 0;
}

.userName h3 {
    font-size: 1.25rem;
    color: var(--black);
    text-transform: uppercase;
    margin: 0;
}

.userName h3 span {
    font-size: 1rem;
    display: block;
    text-transform: capitalize;
    color: rgb(0 0 0 / 50%);
}

.userName ul {
    display: flex;
    gap: 4px;
}

.userName ul li i {
    color: #eac15c;
    font-size: 0.75rem;
}

.userWrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0 0 4.5rem 2.5rem;
}

.userWrap figure {
    position: relative;
    width: 86px;
    aspect-ratio: 1;
}

.userWrap figure img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.userWrap figure:before {
    content: "";
    position: absolute;
    background: var(--secondary);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    bottom: -3px;
}

.reviewSlider .swiper-slide-active .userWrap figure:before {
    background: var(--primary);
}

.reviewBox {
    position: relative;
        padding: 3rem 0 2rem 0;
}

.reviewBox:before {
    content: "";
    position: absolute;
    background: url(../images/reviewPath.png) no-repeat;
        width: 100%;
    height: auto;
    z-index: -1;
    inset: 0;
    margin: auto;
    background-size: 100% 100%;
}

.reviewBox p {
    width: 81%;
    margin: auto;
    padding-top: 1rem;
}

.reviewSlider {
    padding: 2rem 0 3rem 0;
}


/* Reviews Sec Css End */


/* Blog Sec Css Start */

.blogSec {
    background: #f6f6f6;
    padding: 6.875rem 0 7.5rem 0;
}

.blogHeading h3 {
    font-size: 1.25rem;
    color: var(--black);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1.5625rem;
    margin: 0;
}

.blogHeading h3 span {
    font-size: 1rem;
}

.blogHeading h4 {
    font-size: 1.875rem;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "next-lt";
    color: var(--black);
    line-height: 1.4;
    margin-top: 0.625rem;
}

.blogHeading figure {
    margin: 2rem 0 1.5rem 0;
}

.blogHeading p {
    margin-bottom: 3rem;
}

.blogScnd {
    margin-top: 1.5rem;
}


/* Blog Sec Css End */


/* Insta Sec Css Start */

.instaSec {
    padding: 6.875rem 0 3.125rem 0;
}

.instaSlider {
    margin: 0 1.25rem;
}

.instaWrap {
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
}

.instaIcon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 5rem;
    color: var(--white);
    opacity: 0;
    transition: 0.5s ease;
}

.instaWrap:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(219 53 41 / 65%);
    opacity: 1;
    transform: scale(0);
    transition: 0.5s ease;
    border-radius: 0.625rem;
}

.instaWrap:hover .instaIcon {
    opacity: 1;
    color: var(--white);
}

.instaWrap:hover:before {
    opacity: 1;
    transform: scale(1);
}


/* Insta Sec Css End */


/* Footer Css Start */

footer {
    background: var(--black);
    padding-top: 6.25rem;
}

footer h3 {
    color: var(--white);
    font-size: 2.125rem;
    margin-bottom: 2rem;
}

footer ul li a:hover {
    color: var(--primary);
}

.footLogo p {
    color: var(--white);
    line-height: 1.8;
    margin: 1.5625rem 0 2.375rem 0;
}

.socialLinks {
    display: flex;
    gap: 8px;
}

.socialLinks li a {
    background: #E4E4E4;
    width: 3.125rem;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--black);
}

.socialLinks li a:hover {
    background: var(--primary);
    color: var(--white);
}

.links li a {
    color: var(--white);
    text-transform: uppercase;
}

.links li+li {
    margin-top: 1rem;
}

.contactLinks li a {
    color: var(--white);
}

.contactLinks li a span {
    display: block;
    font-size: 1.125rem;
    text-transform: uppercase;
}

.contactLinks li+li {
    margin-top: 2.625rem;
}

.footPara {
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2.375rem;
}

.footForm input {
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 3.125rem;
    height: 65px;
    width: 100%;
    padding-left: 2rem;
    outline: none;
    box-shadow: none;
    color: var(--white);
}

.footForm input::placeholder {
    color: rgb(255 255 255 / 76%);
}

.footForm {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 4rem;
}

.footForm button {
    background: transparent;
    border: unset;
    color: var(--white);
    position: absolute;
    right: 1rem;
    font-size: 1.25rem;
}

.copyRight {
    border-top: 1px solid rgb(112 112 112 / 50%);
    margin-top: 3.75rem;
    padding: 1.875rem 0;
}

.copyRight p {
    color: var(--white);
    font-size: 1.375rem;
    margin: 0;
}

.terms {
    display: flex;
    justify-content: end;
    gap: 2rem;
}

.terms li a {
    color: var(--white);
    font-size: 1.0625rem;
}

.terms li+li {
    border-left: 1px solid var(--white);
    padding-left: 2rem;
}


/* Footer Css End */

/* inner-pages */
.padd-y {
    padding: 6rem 0;
}

.inner-banner {
    height: 610px;
}

.inner-banner::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #00000030;
    position: absolute;
    inset: 0;
}

.inner-banner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heating-banner>img {
    object-position: center 25%;
}

.inner-banner__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.inner-banner__content h1 {
    font-size: 5.625rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
}

.our-mission {
    background-color: #F6F6F6;
}

.img--radius {
    border-radius: 0.625rem;
}

.img--radius-lg {
    border-radius: 1.625rem;
}

.air-conditioning__content {
    background-color: #F6F6F6;
    border-radius: 1.5625rem;
    margin-left: -10rem;
    padding: 8rem 4rem 8rem 12rem;
}

.air-conditioning__content p+p {
    margin-top: 2rem;
}

.air-conditioning .row+.row {
    margin-top: 4rem;
}

.air-conditioning .row:nth-child(even) .air-conditioning__content {
    margin-left: 0;
    margin-right: -10rem;
    padding: 8rem 12rem 8rem 4rem;
}

.air-conditioning__img {
    position: relative;
    z-index: 1;
}

.air-conditioning__img>img {
    width: 100%;
    height: 590px;
    object-fit: cover;
}

.duct-designs__video {
    position: relative;
}

.duct-designs__video .videoBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.reviewSec-inner .reviewWrap {
    margin-bottom: 7rem;
}

.reviewSec-inner .row .col-lg-6:nth-last-of-type(-n+2) .reviewWrap {
    margin-bottom: 0;
}

.blogSec-inner .blogHeading p {
    margin-bottom: 2rem;
}

.heating-card__img>img {
    aspect-ratio: 16/8;
    object-fit: cover;
}

/* faq-sec */
.faq-sec #accordion .card {
    border: 1px solid #D1D1D1;
    background-color: #F5F5F5;
    border-radius: 2.3125rem;
    padding: 1.25rem 1.5rem;
}

.faq-sec #accordion .card+.card {
    margin-top: 2rem;
}

.faq-sec #accordion .card.active {
    background-color: var(--primary);
}

.faq-sec #accordion .card .btn-link {
    --height: 5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 0;
    border: none;
    font-size: 1.25rem;
    border-radius: 5px;
    overflow: hidden;
    font-weight: 500;
}

.faq-sec #accordion .card .btn-link.collapsed {
    color: var(--black);
}

.faq-sec #accordion .card .btn-link::before {
    content: "\f106";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 2rem;
}

.faq-sec #accordion .card .btn-link.collapsed::before {
    content: "\f107";
}

.faq-sec #accordion .card .card-body {
    padding: 1rem 4rem 0.5rem 0rem;
}

.faq-sec #accordion .card .card-body p {
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 33px;
    padding-left: 2.25rem;
}

.faq-sec #accordion .card .collapse.show .card-body p {
    color: var(--white);
}

.contact-sec {
    background-color: #F6F6F6;
}

.contact-title p {
    font-size: 1.25rem;
    color: #101C2A;
    white-space: nowrap;
    margin-bottom: 1.5rem;
}

.contact-form :is(input, textarea) {
    display: block;
    width: 100%;
    background-color: var(--white);
    border: none;
    outline: none;
    resize: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--black);
}

.contact-form :is(input, textarea)::placeholder {
    color: #8B93A8;
}

.contact-form-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-info {
    margin-left: 2rem;
}

.contact-info h3 {
    font-size: 3.125rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.contact-info li {
    border-bottom: 1px solid #4F6788;
    padding: 2.5rem 0;
}

.contact-info li:first-child {
    padding-top: 0;
}

.contact-info li:last-child {
    border: none;
    padding-bottom: 0;
}

.contact-info li a {
    display: flex;
    align-items: center;
    gap: 1.375rem;
}

.contact-info li a .circle {
    width: 150px;
    aspect-ratio: 1;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--white);
    background-color: var(--primary);
    border: 1px dashed #707070;
    display: grid;
    place-items: center;
}

.contact-info li a h6 {
    font-size: 1.375rem;
    font-weight: 500;
    color: #101C2A;
    width: 100%;
}

.contact-info li a h6 span {
    font-size: 1.25rem;
    font-weight: 400;
    margin-top: 0.45rem;
}