@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 1.2;
    font-family: 'poppins-regular';
}


/***** Font Files *****/

@font-face {
    font-family: 'gilroy-bold';
    src: url(../font/Gilroy-Bold.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'gilroy-medium';
    src: url(../font/Gilroy-Medium.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'poppins-medium';
    src: url(../font/poppins-medium.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'poppins-regular';
    src: url(../font/Poppins-Regular.ttf);
    font-weight: 400;
    font-style: normal
}



/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 0px 0px 0px 0px !important;
    border-radius: 55px;
    /* color: #000000 !important; */
    z-index: 1;
    background: #ffffff00;
    position: relative;
    font-size: 16px !important;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    border-left: 1px solid #fff;
    box-shadow: inset -47px 0px 0 1px #fff;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    /* background-color: #000000; */
    z-index: -1;
    transition: all 250ms;
    /* border: 1px solid #fff; */
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'gilroy-bold';
    font-size: 81px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'gilroy-medium';
    font-size: 50px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 8px;
}

h3 {
    font-family: 'gilroy-medium';
    font-size: 43px;
    line-height: 1.2;
    color: #0005ff;
    font-weight: 500;
    margin: 0 0 10px;
}

h4 {
    font-family: 'gilroy-medium';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'poppins-medium';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'poppins-regular';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}



select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 20px 0;
    position: absolute;
    z-index: 1;
    width: 100%;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    background-image: url(../images/mask.png);
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: -20px;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 23px 23px;
    font-size: 16px;
}




.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 18px;
    height: 10px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #a1a0a0;
    background-clip: padding-box;
    border: 0;
    /* border-top: 10px solid transparent; */
    /* border-bottom: 10px solid transparent; */
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 10px !important;
}

.carousel-caption {
    position: absolute;
    top: unset;
    bottom: 80px;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: end;
    /* background: rgba(0, 0, 0, 0.1); */
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #ffffff;
    width: 40px;
    height: 10px;
    border-radius: 20px !important;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */


section.baner-sec {
    position: relative;
    height: 100vh;
    z-index: 0;
}

.banner-img {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    z-index: -1;
}
.dis-block{
    display: block;
}
.container-fluid {
    padding: 0px 100px;
}
.header-btn {
    display: flex;
    justify-content: end;
}

.header-btn ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0px;
    background-image: unset;
}

a.header-phone {
    padding: 0px !important;
    margin: 0px;
}

a.header-phone i {
    height: 40px;
    width: 40px;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.side-btn {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0px;
    /* box-shadow: 0px 8px 9px 5px #fff; */
}

.side-btn-text {
    background: #3b452200;
    border-radius: 50px;
    padding: 10px 13px;
    color: #fff;
}

.banner-heading-btn {
    position: relative;
}

.banner-heading-btn a.theme_btn {
    position: absolute;
    right: 100px;
    bottom: 20px;
    box-shadow: inset -47px 0px 0 1px #fff;
}

.side-btn-icon {
    /* background: #fff; */
    height: 45px;
    width: 56px;
    /* border-radius: 10px 25px 25px 5px; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-img-btn a {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 10px;
    border-radius: 50px;
}
.banner_img img {
    width: 100%;
}

.banner_img {
    text-align: center;
    width: 70%;
    margin:  0 auto;
}

.banner-img-btn {
    margin-top: 10px;
}
section.about-sec {
    background: #f1f8ff;
    padding: 60px 0px;
    margin-bottom: 100px;
}

.abour-left-text {
    position: relative;
    padding-left: 18px;
}

.abour-left-text:before {
    position: absolute;
    content: '';
    top: 4px;
    left: 0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #000;
}

.abour-left-text p {
    font-size: 16px;
}

.abour-right-text p {
    font-size: 28px;
    line-height: 37px;
    color: #000;
    text-align: justify;
}
.choose-right-top-heading {
    padding-bottom: 10px;
    margin-bottom: 50px;
    border-bottom: 1px solid #dbdbdb;
}

.choose-right-text h2 {
    margin-bottom: 100px;
}

.choose-right-text p {
    font-size: 20px;
    color: #000;
    margin: 20px 0px;
}

.choose-right-text-box {
    border: 1px solid #000;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    /* margin-bottom: 30px; */
    margin-top: 10px;
}


.choose-right-text-box span.choose-right-color {
    color: #0005ff;
}

html .theme_btn.theme_btn_one {
    color: #000 !important;
    box-shadow: inset -47px 0px 0 1px #0005ff;
    border: 1px solid #0005ff;
}

.row.why-choose-row {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #dbdbdb;
}

.choose-right-img {
    text-align: end;
}
.why-choose-text-btn {
    margin-top: 30px;
}
html .theme_btn.theme_btn_one .side-btn-text {
    color: #000;
}

 .theme_btn.theme_btn_one .side-btn-icon {
    color: #fff;
}
section.choose-right-sec {
    margin-bottom: 100px;
}
section.residential-commercial-sec {
    padding: 80px 0px;
    background: #dee9f5;
}

.residential-commercial-top-heading {
    text-align: center;
    margin-bottom: 30px;
}

.residential-commercial-top-heading .abour-left-text {
    display: inline-block;
}

.residential-commercial-box {
    text-align: center;
}

.residential-commercial-box img {
    width: 100%;
    margin-bottom: 20px;
}
.residential-commercial-btm-btn {
    text-align: center;
    margin-top: 40px;
}


.how-it-box-main {
    background: #0005ff;
    padding: 70px 21px 50px;
    border-radius: 18px;
}

.how-it-box-main h3 {
    font-size: 46px;
    font-family: 'poppins-medium';
    color: #fff;
    text-align: center;
    margin-bottom: 37px;
}

.how-it-box-main h2 {
    font-size: 30px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    height: 78px;
}

.how-it-box-main p {
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin-inline: 0px;
}
section.how-it-work-sec {
    padding: 90px 0px 100px;
    background: #dee9f5;
}

.text-reviews ul li h4 {
    font-size: 30px;
    color: #0005ff;
    line-height: 35px;
    margin-bottom: 6px;
}

.text-reviews ul li h4 span {
    font-size: 14px;
    display: block;
    color: #0000009c;
}

.text-reviews ul li i {
    color: #fb8e28;
    font-size: 20px;
}

.text-reviews ul {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.text-reviews ul li ul {
    gap: unset;
}

.text-reviews p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    font-family: 'poppins-regular';
    line-height: 25px;
}

.reviews-main-box {
    background: #f4f4f4;
    padding: 20px 29px;
    border-radius: 10px;
    position: relative;
}
img.goggle-icon-img {
    position: absolute;
    right: 19px;
    top: 7px;
}
.reviews-main-sec {
    padding: 100px 0px;
}
.img-testimonial img {
    border-radius: 45px 0px 0px 45px;
    width: 100%;
}

.testimonials-main-sec {
    background: #0005ff;
    border-radius: 30px;
}

.testi-text ul li {
    font-family: 'Poppins';
    font-weight: 600;
    color: #fff;
    font-size: 17px;
}

.testi-text h2 {
    color: #fff;
}

.testi-text p {
    color: #fff;
    font-size: 29px;
    line-height: 46px;
}

.testi-text p::before {
    background: #fff;
}

.testi-text .abour-left-text:before {
    background: #fff;
}

.testi-text .residential-commercial-top-heading {
    text-align: left;
}

.testi-text .abour-left-text p {
    font-size: 16px !important;
    line-height: unset;
}


.testi-text ul li span {
    display: block;
    font-size: 13px;
    font-weight: 300;
}

.testi-text ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testi-text {
    margin-left: 70px;
    position: relative;
}

.testimonials-main-sec .row {
    align-items: center;
}
img.quotes-icon {
    position: absolute;
    right: 0;
    top: 20px;
}
.testimonials-main-sec .slick-slide {
    margin: unset;
}

.ft-logo h3 {
    font-size: 50px;
    font-family: 'poppins-medium';
    color: #fff;
    margin-top: 20px;
}

.ft-logo {
    margin-bottom: 100px;
}

.ft-fields input {
    border: unset;
    border-bottom: 1px solid #ffffff82;
,
    wi: 9;
    width: 67%;
    background: unset;
    color: #fff;
    height: 43px;
    margin-top: 80px;
}

footer {
    background: #000000;
    padding: 130px 0px 0px;
    margin-bottom: -20px;
    margin-top: -30px;
    position: relative;
    z-index: -1;
}

.ft-fields input::placeholder {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

.ft-contact-info {
    margin-left: 50px;
    margin-top: 40px;
}

.ft-contact-info ul li {
    font-family: 'Poppins';
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 90px;
    line-height: 32px;
}

.ft-contact-info ul li span a {
    font-family: 'poppins-regular';
    font-size: 16px;
    color: #fff;
}

.ft-contact-info ul li span {
    font-family: 'poppins-regular';
    font-size: 16px;
    display: block;
    text-transform: capitalize;
}

.ft-contact-info.lst-info {
    margin-left: 60px;
}

.ft-links ul li a {
    font-family: 'poppins-regular';
    color: #fff;
    font-size: 16px;
}

.ft-links ul {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: unset;
    margin-top: 19px;
}

.ft-icons ul li {
    border: 1px solid #fff;
    width: 47px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.ft-icons ul li a {
    color: #fff;
    font-size: 17px;
}

.ft-icons ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
    margin-bottom: unset;
}


.btm-text-ft p {
    font-family: 'poppins-regular';
    font-size: 16px;
    color: #fff;
    border-top: 1px solid #ffffff82;
    padding: 23px 3px;
    margin-top: 30px;
}

.ft-icons ul li:hover {
    background: #1718fc;
    color: #fff;
    border-color: #1718fc;
    transition: 0.9s;
}
.ft-fields button {
    background: #fff;
    border: unset;
    padding: 13px 13px;
    border-radius: 50%;
    margin-left: -50px;
    position: absolute;
    right: 31%;
    bottom: 11px;
}

.ft-fields {
    position: relative;
}
.ft-links ul li a:hover {
    color: #8485ef;
}
section.offer-main-sec {
    background: #0005ff;
}

section.offer-main-sec .abour-left-text p {
    color: #fff;
}

section.offer-main-sec .abour-left-text::before {
    background: #fff;
}

section.offer-main-sec .residential-commercial-top-heading h2 {
    color: #fff;
}

section.offer-main-sec .residential-commercial-top-heading {
    text-align: left;
}

.offer-top-btn p {
    color: #fff;
    font-size: 16px;
    line-height: 30px;
}

.offer-top-btn {
    display: flex;
    justify-content: space-between;
}
.offer-top-btn .theme_btn.theme_btn_one .side-btn-text {
    color: #fff !important;
    background: #1718fc;
}

.offer-top-btn {
    margin-top: 90px;
}

.offer-top-btn .side-btn {
    background: #fff;
    width: 201px;
    height: 47px;
}

.offer-top-btn .theme_btn.theme_btn_one .side-btn-icon {
    color: #000;
    width: 33px;
}

.offer-top-btn .theme_btn.theme_btn_one {
    border: 1px solid #fff;
    height: 48px;
}
section.offer-main-sec {
    padding: 90px 0px;
}

.text-offer h4 {
    text-align: left;
    color: #fff;
    font-family: 'gilroy-bold';
    font-size: 31px;
    margin-bottom: 18px;
}

.text-offer p {
    color: #fff;
    text-align: left;
    line-height: 28px;
    margin-bottom: 26px;
    font-size: 16px;
}

.text-offer a {
    border: 1px solid #fff;
    font-size: 16px;
    color: #fff;
    padding: 7px 16px;
    border-radius: 23px;
}

.text-offer {
    text-align: left;
}
.header-btn .side-btn-icon i {
    color: #000;
}


@media only screen and (min-width: 1366px) and (max-width: 1920px) {
    h1 {
    font-size: 53px;
}

.banner-heading-btn a.theme_btn {
    bottom: 5px;
}

.menuSec ul li a {
    padding: 23px 11px;
}

.header-btn .theme_btn {
    font-size: 11px !important;
}
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .menuSec ul li a {
    padding: 12px 10px;
    font-size: 13px;
}

.menuSec ul {
    margin-top: -20px;
    height: 100px;
}

.theme_btn {
    font-size: 13px !important;
    width: 177px;
}

.side-btn-text {
    padding: 10px 10px;
    width: 132px;
}

.side-btn-icon {
    width: 20px;
}

h1 {
    font-size: 51px;
}
.banner-heading-btn a.theme_btn {
    width: 34%;
    right: 30px;
    bottom: 11px;
}

.banner-heading-btn .side-btn-text {
    width: fit-content !important;
}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}

@media only screen and (min-width: 0px) and (max-width: 299px) {}