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

/* Preloader Start */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--headingColor);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

@-webkit-keyframes honeycomb {

    0%,
    20%,
    80%,
    100% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    30%,
    70% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes honeycomb {

    0%,
    20%,
    80%,
    100% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    30%,
    70% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.honeycomb {
    height: 24px;
    position: relative;
    width: 24px;
}

.honeycomb div {
    -webkit-animation: honeycomb 2.1s infinite backwards;
    animation: honeycomb 2.1s infinite backwards;
    background: var(--themeColor);
    height: 12px;
    margin-top: 6px;
    position: absolute;
    width: 24px;
}

.honeycomb div:after,
.honeycomb div:before {
    content: '';
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    position: absolute;
    left: 0;
    right: 0;
}

.honeycomb div:after {
    top: -6px;
    border-bottom: 6px solid var(--themeColor);
}

.honeycomb div:before {
    bottom: -6px;
    border-top: 6px solid var(--themeColor);
}

.honeycomb div:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    left: -28px;
    top: 0;
}

.honeycomb div:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
    left: -14px;
    top: 22px;
}

.honeycomb div:nth-child(3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    left: 14px;
    top: 22px;
}

.honeycomb div:nth-child(4) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    left: 28px;
    top: 0;
}

.honeycomb div:nth-child(5) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    left: 14px;
    top: -22px;
}

.honeycomb div:nth-child(6) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    left: -14px;
    top: -22px;
}

.honeycomb div:nth-child(7) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    left: 0;
    top: 0;
}

/* Preloader End */

/***** General CSS *****/

body {
    overflow-x: hidden;
    word-break: break-word;
    color: var(--textColor);
    font: 15px/25px 'Poppins', sans-serif;
    background-image: url(../images/body-bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}


:root {
    --black: #000;
    --white: #fff;
    --textColor: #7c7c7c;
    --themeColor: #eddcc0;
    --headingColor: #454239;
}


a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

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;
}

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;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

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

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'American-Captain';
    src: url(../fonts/American-Captain.otf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

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

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

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

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.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 {
    margin: 0 0 0px;
    font-weight: 500;
    font-size: 108px;
    color: var(--headingColor);
    font-family: 'American-Captain';
}

h2 {
    margin: 0 0 0px;
    font-weight: 500;
    font-size: 107px;
    color: var(--headingColor);
    font-family: 'American-Captain';
}

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'American-Captain';
}

h4 {
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'American-Captain';
}

h5 {
    margin: 0 0 0px;
    font-size: 16px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'American-Captain';
}

h6 {
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Poppins';
    color: var(--headingColor);
}

p {
    margin: 0px;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'Poppins';
    color: var(--textColor);
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 950px;
}

.theme-btn-1 {
    gap: 15px;
    border: none;
    display: flex;
    font-size: 17px;
    font-weight: 500;
    margin: 0px 25px;
    padding: 12px 5px;
    width: fit-content;
    position: relative;
    align-items: center;
    font-family: 'Poppins';
    transition: ease-in-out;
    justify-content: center;
    color: var(--themeColor);
    transition-duration: 0.5s;
    text-transform: uppercase;
    background-color: var(--headingColor);
}

.theme-btn-1::before {
    top: 0;
    width: 25px;
    left: 99.9%;
    content: '';
    height: 100%;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--headingColor);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.theme-btn-1::after {
    top: 0;
    width: 25px;
    content: '';
    right: 99.8%;
    height: 100%;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--headingColor);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.theme-btn-1 i {
    font-size: 22px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.theme-btn-1:hover,
.theme-btn-1:hover::after,
.theme-btn-1:hover::before {
    transition: ease-in;
    color: var(--headingColor);
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.theme-btn-2:hover,
.theme-btn-2:hover::after,
.theme-btn-2:hover::before {
    transition: ease-in;
    color: var(--themeColor);
    transition-duration: 0.5s;
    background-color: var(--headingColor);
}

.theme-btn-2 {
    gap: 15px;
    border: none;
    display: flex;
    font-size: 17px;
    font-weight: 500;
    margin: 0px 25px;
    padding: 12px 5px;
    width: fit-content;
    position: relative;
    align-items: center;
    font-family: 'Poppins';
    transition: ease-in-out;
    justify-content: center;
    text-transform: uppercase;
    transition-duration: 0.5s;
    color: var(--headingColor);
    background-color: var(--themeColor);
}

.theme-btn-2::before {
    top: 0;
    left: 99.8%;
    width: 25px;
    content: '';
    height: 100%;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.theme-btn-2::after {
    top: 0px;
    width: 25px;
    content: '';
    right: 99.8%;
    height: 100%;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.theme-btn-2 i {
    font-size: 22px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}



/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    padding: 0;
    font-size: 16px;
    color: var(--headingColor);
    font-weight: 500;
    position: relative;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.menuSec ul li:last-child a {
    color: var(--themeColor);
}


.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: var(--black);
    text-decoration: underline;
}

.menuSection {
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    padding: 25px 0px;
    position: absolute;
}

.menuSection .row {
    align-items: center;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menuSection .col-xl-6 {
    width: 60%;
}

.menuSection .col-xl-3 {
    width: 20%;
}



/*header css start */


/*banner css start */


/*banner css end*/

.main_slider {
    display: flex;
    overflow: hidden;
    margin: 0px auto;
    min-height: 840px;
    max-width: 2000px;
    position: relative;
    padding-top: 150px;
    align-items: flex-end;
}

.main_slider::before {
    top: 0;
    right: 0;
    width: 53%;
    content: '';
    height: 100%;
    position: absolute;
    background-color: var(--themeColor);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 49% 100%);
}

.banner_img {
    top: 0;
    width: 55%;
    right: -10%;
    height: 100%;
    display: flex;
    overflow: hidden;
    position: absolute;
    align-items: center;
    justify-content: flex-end;
    transform: skew(-23deg, 0deg);
}

.banner_img::before {
    top: 0;
    left: 0;
    z-index: 1;
    content: '';
    width: 60px;
    height: 100%;
    position: absolute;
    background-image: url(../images/body-bg.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner_img::after {
    top: 0;
    left: 0;
    z-index: 1;
    content: '';
    width: 50px;
    height: 100%;
    position: absolute;
    background-color: var(--headingColor);
}

.banner_img-box {
    width: 100%;
    height: 100%;
    position: relative;
    transform: skew(23deg, 0deg) scale(1.5);
}

.banner_img-box::before {
    bottom: 0;
    left: 0;
    height: 60%;
    width: 49%;
    content: '';
    opacity: 0.5;
    position: absolute;
    background-color: var(--headingColor);
    clip-path: polygon(0 0, 28% 0, 100% 100%, 0% 100%);
}

.banner_img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.banner_text h4 {
    gap: 15px;
    display: flex;
    font-size: 25px;
    font-weight: 600;
    margin: 0px 25px;
    padding: 10px 5px;
    width: fit-content;
    position: relative;
    align-items: center;
    letter-spacing: 4px;
    margin-bottom: 25px;
    font-family: 'Poppins';
    justify-content: center;
    color: var(--headingColor);
    text-transform: uppercase;
    background-color: var(--themeColor);
}

.banner_text h4::after {
    top: 0;
    width: 25px;
    content: '';
    right: 99.9%;
    height: 100%;
    position: absolute;
    background-color: var(--themeColor);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.banner_text h4::before {
    top: 0;
    width: 25px;
    left: 99.9%;
    content: '';
    height: 100%;
    position: absolute;
    background-color: var(--themeColor);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.banner_text {
    z-index: 1;
    position: relative;
}

.banner_text .theme-btn-1::before {
    left: 99.8%;
}

.banner_text h1 {
    line-height: 80px;
    margin-bottom: 10px;
}

.banner_text h1 span {
    font-size: 75px;
}

.banner_text p {
    margin-bottom: 30px;
}

.banner_text ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.banner-scoial-icon {
    gap: 80px;
    display: flex;
    margin-top: 180px;
    padding: 20px 0px;
    position: relative;
    align-items: center;
    justify-content: flex-start;
}

.banner-scoial-icon ul {
    gap: 20px;
    z-index: 1;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
}

.banner-scoial-icon ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 16px;
    border-radius: 50%;
    position: relative;
    align-items: center;
    justify-content: center;
    color: var(--headingColor);
    border: 1px solid var(--textColor);
}

.banner-scoial-icon ul li a::before {
    top: 0;
    bottom: 0;
    left: 100%;
    width: 20px;
    content: '';
    z-index: -1;
    height: 1px;
    margin: auto;
    position: absolute;
    background-color: var(--headingColor);
}

.banner-scoial-icon ul li a:hover {
    border-color: transparent;
    color: var(--headingColor);
    background-color: #45423983;
}

.banner-scoial-icon ul li:last-child a::before {
    display: none;
}

.banner-scoial-icon::before {
    content: '';
    width: 100vw;
    right: -10vw;
    height: 100%;
    position: absolute;
    border: 1px solid var(--textColor);
}

.banner-scoial-icon h5 {
    z-index: 1;
    position: relative;
    font-family: 'Poppins';
    text-transform: uppercase;
}



/* about-sec */

.about-text {
    gap: 10px;
    display: flex;
    text-align: right;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
    padding: 50px 40px 50px 160px;
    background-color: var(--themeColor);
    clip-path: polygon(25% 0%, 100% 0, 100% 100%, 0% 100%);
}

.about-text h2 {
    margin-bottom: 0;
    line-height: 80px;
}

.about-text p {
    width: 90%;
    max-width: 570px;
    margin-bottom: 10px;
    color: var(--headingColor);
}

.about-img {
    left: 27%;
    height: 400px;
    overflow: hidden;
    min-height: 100%;
    position: relative;
    transform: skew(-24deg, 0deg);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    transform: skew(25deg, 0deg) scale(1.55);
}

.about-sec {
    padding: 100px 0px;
}






/* about-sec */


/* why-choose-sec */

.why-choose-sec {
    padding: 100px 0px;
}

.why-choose-text {
    gap: 10px;
    display: flex;
    text-align: right;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 160px 50px 40px;
    background-color: var(--themeColor);
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
}

.why-choose-text h2 {
    line-height: 70px;
}

.why-choose-text ul li {
    gap: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.why-choose-text ul li i {
    font-size: 27px;
    color: var(--headingColor);
}

.why-choose-text ul li h6 {
    font-size: 17px;
    font-weight: 500;
    color: var(--headingColor);
}

.why-choose-img {
    right: 27%;
    height: 400px;
    overflow: hidden;
    min-height: 100%;
    position: relative;
    transform: skew(21.5deg, 0deg);
}

.why-choose-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    object-position: 0px 55px;
    transform: skew(-25deg, 0deg) scale(1.6);
}



/* why-choose-sec */

/* service-sec */

.serviceSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.service-box:hover .service-img,
.serviceSlider .slick-slide.slick-current.slick-active.slick-center .service-img {
    height: 410px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box {
    margin-bottom: 20px;
}

.service-img {
    width: 100%;
    height: 480px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    display: block;
    position: relative;
}

.service-img img {
    width: 100%;
    transition: ease-in-out;
    transition-duration: 0.5s;
    height: 100%;
    object-fit: cover;
}

.service-img i {
    right: 30px;
    width: 50px;
    height: 59px;
    display: flex;
    bottom: -28px;
    font-size: 60px;
    position: absolute;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    transition: ease-in-out;
    transition-duration: 0.5s;
    justify-content: center;
    box-shadow: 0.545px 0.839px 10px 0px rgba(0, 0, 0, 0.2);
}

.service-box:hover .service-text,
.serviceSlider .slick-slide.slick-current.slick-active.slick-center .service-text {
    padding-bottom: 20px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.service-text {
    padding: 45px 25px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-text h3 {
    margin-bottom: 10px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-text p {
    line-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: ease-in-out;
    transition-duration: 0.5s;
    -webkit-line-clamp: 3;
    margin-bottom: 15px;
}

.service-box:hover .service-text p,
.serviceSlider .slick-slide.slick-current.slick-active.slick-center .service-text p {
    -webkit-line-clamp: 6;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box:hover .service-text .link-btn,
.serviceSlider .slick-slide.slick-current.slick-active.slick-center .service-text .link-btn {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-text .link-btn {
    font-size: 17px;
    font-weight: 500;
    width: fit-content;
    padding-bottom: 1px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    color: var(--headingColor);
    border-bottom: 1px solid var(--headingColor);
}



/* service-sec */

/*contact Page Starts*/

.contact-form form {
    position: relative;
}

.contact-form .form-group {
    position: relative;
}

.contact-form .form-group i {
    top: 0;
    right: 25px;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: center;
    pointer-events: none;
    color: #7a7a7a;
    font-size: 14px;
}

.contact-form form input.form-control,
.contact-form form select.form-control {
    height: 60px;
    border: none;
    display: flex;
    line-height: normal;
    font-size: 15px;
    color: #7a7a7a;
    box-shadow: none;
    font-weight: 500;
    margin-top: 20px;
    padding-left: 25px;
    border-radius: 0px;
    font-family: 'Poppins';
    background-color: var(--white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-form form input.form-control::placeholder,
.contact-form form select.form-control::placeholder {
    font-family: 'Poppins';
    color: #7a7a7a;
    font-weight: 600;
}

.contact-main-sec .them-btn-1:hover {
    background-color: #00006d;
    transition: 0.3s all;
}

.contact-form form textarea.form-control {
    font-size: 15px;
    padding-left: 25px;
    border: none;
    resize: none;
    margin-top: 20px;
    box-shadow: none;
    letter-spacing: 0;
    color: #7a7a7a;
    padding-top: 13px;
    border-radius: 0px;
    font-family: 'Poppins';
    background-color: var(--white);
}

.contact-form .email {
    padding: 0;
}

.contact-form h4 {
    font-size: 62px;
    line-height: 70px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}


.contact-form form textarea.form-control::placeholder {
    color: #7a7a7a;
    font-weight: 600;
}

.contact-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #7a7a7a;
}

.contact-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-form :-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-form :-moz-placeholder {
    /* Firefox 18- */
    color: rgba(18, 28, 42, 0.55);
}

.cicle-icon i {
    width: 70px;
    height: 70px;
    color: #fff;
    display: flex;
    font-size: 30px;
    font-weight: 300;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--headingColor);
    background-color: var(--headingColor);
}

.cicle-icon img {
    margin: 0 auto;

}

.question-btn.contact-btn {
    display: flex;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
}

.question-btn.contact-btn button {
    font-size: 20px;
}

.contact-info {
    width: 100%;
    display: inline-block;
    padding: 14px;
    margin-bottom: 10px;
    border: 0;
    display: flex;
    height: 130px;
    align-items: center;
    border-radius: 0px;
    margin-bottom: 20px;
    justify-content: center;
}

/* .contact-info:hover {
    background: #19764c;
}

.contact-info:hover .cicle-icon i {
    background-color: #fff;
    border: 2px solid #fff;
}

.contact-info:hover .contact-info .contact_text h2 {
    color: #fff !important;
} */


.contact-main-sec h4 {
    font-size: 107px;
    font-weight: 500;
    line-height: 42px;
    margin-bottom: 0;
    text-align: center;
    margin-bottom: 60px;
}

.contact-main-sec p span {
    display: block;
}

.contact-main-sec p {
    font-size: 16px;
    color: #000;
    margin-bottom: -5%;
}

.contact-main-sec h2 {
    margin: 0;
    font-size: 25px;
    color: #000000;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 10px;
    font-family: 'Poppins';
}

.contact_text {
    padding-top: 0px;
}

.contact_text p {
    font-size: 16px;
    line-height: 17px;
    color: #8b8b8b;
    padding-top: 0px;
    font-weight: 500;
    font-family: 'Poppins';
    letter-spacing: 1px;
    margin: 0;
}

.contact_text p a {
    font-size: 16px;
    color: #8b8b8b;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    margin-top: 3px;
    display: block;
    font-size: 16px;
    line-height: 23px;
}

.mailt {
    padding-left: 30px;
}

.contact_text a:hover {
    color: #8b8b8b;
}

.contact_text p a.email-text {
    font-size: 15px;
    color: #8b8b8b;
}

.contact_text p a.email-text:hover {
    color: #8b8b8b;
}

.contact-us {
    padding: 6% 0;
}

.contact-head {
    text-align: center;
}

.contact-head h2 {
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}

.lg-btn {
    width: 100%;
}

.cp {
    font-size: 17px;
    line-height: 27px;
}

.contact_heading {
    margin-bottom: 30px;
}

.contact_heading h2 {
    font-size: 45px;
    color: #000000;
    font-weight: bolder;
}

.contact-side-bar {
    padding-top: 19px;
    margin-left: 30px;
}

.contact-main-sec {
    padding: 100px 0;
}

.contact-form {
    margin-top: 0;
}

.contact-btn button.theme1 {
    width: 100%;
    border: unset;
    color: #fff;
    font-size: 28px;
    margin-top: 40px;
    font-weight: 500;
    padding: 19px 55px;
    font-family: 'Poppins';
    text-transform: capitalize;
    background-color: #011f5b;
}

.contact-btn button.theme1:hover {
    border: 2px solid #000;
    color: #fff;
    background-color: #000;
}

.contact-btn button.theme1 i {
    color: #000;
}

.contact-btn button.theme1:hover.theme1 i {
    color: #fff;
}

/*contact Page Ends*/


/*appointment*/

section.booking-wrap {
    padding: 100px 0;
    position: relative;
}

.booking-in input {
    width: 100%;
    margin-bottom: 5%;
    border: 1px solid #80808080;
    background: #fefdf3;
    height: 55px;
    font-weight: 500;
    padding: 15px;
    color: #7d7d7c;
    border-radius: 0;
}

.booking-in input::placeholder {
    color: #7d7d7c;
    font-weight: 500;
}

.booking-in textarea::placeholder {
    color: #7d7d7c;
    font-weight: 500;
}

.booking-in textarea {
    width: 100%;
    margin-bottom: 1%;
    border: 1px solid #80808080;
    padding: 15px 15px;
    height: 225px;
    background: #fefdf3;
    border-radius: 0;
    resize: unset;
}

.booking-btn button {
    border: none;
    font-size: 24px;
}

.booking-btn button i {
    font-size: 30px;
}

.booking-btn {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

section.booking-wrap button.theme-btn {
    border: unset;
}

.apointment-head {
    text-align: center;
    margin-bottom: 3%;
}

.apointment-head h4 {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 40px;
    color: #000;
    margin-bottom: 20px;
}

.apointment-head p {
    width: 65%;
    margin: 0 auto;
    font-size: 14px;
    color: #636363;
    font-weight: 500;
}

.booking-in {
    position: relative;
}

.booking-in i {
    position: absolute;
    right: 1px;
    width: 15%;
    height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    top: 1px;
    pointer-events: none;
    color: var(--white);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--headingColor);
}

.apointment-head h2 {
    font-size: 80px;
    margin-bottom: 15px;
    color: var(--headingColor);
    font-family: 'American-Captain';
}

.apointment-head p {
    line-height: 1.5;
}

.booking-in select {
    width: 100%;
    height: 55px;
    color: #9e9e9e;
    text-transform: uppercase;
    border: 1px solid #80808080;
    padding-left: 15px;
    border-radius: 0;
    margin-bottom: 5%;
    background: #fefdf3;
}


/*appointment end*/


/* program-sec */

.program-sec {
    padding: 100px 0px;
}

.program-text {
    display: flex;
    min-height: 100%;
    text-align: right;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0px 50px 160px;
}

.program-text h2 {
    font-size: 60px;
    margin-bottom: 0;
}

.program-text h3 {
    margin-bottom: 15px;
}

.program-text ul li {
    gap: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: flex-end;
}

.program-text p {
    opacity: 0.9;
    font-size: 17px;
    max-width: 580px;
    margin-bottom: 10px;
    color: var(--headingColor);
}

.program-text ul li h6 {
    font-size: 17px;
}

.program-text ul li i {
    font-size: 28px;
    color: var(--themeColor);
}

.program-img {
    left: 27%;
    height: 400px;
    overflow: hidden;
    min-height: 100%;
    position: relative;
    transform: skew(-24deg, 0deg);
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    transform: skew(25deg, 0deg) scale(1.55);
}



/* program-sec */

/* insulation-sec */

.insulation-sec .section-heading {
    padding: 80px 5%;
    background-color: var(--headingColor);
}

.insulation-sec .section-heading h2 {
    font-size: 80px;
    color: var(--white);
}

.insulation-sec .section-heading h3 {
    font-size: 45px;
    margin-bottom: 15px;
    color: var(--themeColor);
}

.insulation-sec .section-heading p {
    opacity: 0.7;
    color: var(--themeColor);
}

.insulation-sec .section-heading {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.insulation-sec .section-heading .theme-btn-2 {
    margin-top: 30px;
}

/* insulation-sec */


/*testimonial sec*/

.test-detail {
    padding: 20px;
    border-radius: 0px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
    box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.07);
}

.test-detail:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--headingColor);
}

.test-detail:hover * {
    transition: ease-in;
    color: var(--white);
    transition-duration: 0.5s;
}

ul.clients {
    display: flex;
    margin-top: -85px;
    align-items: center;
    justify-content: space-between;
}

.test-detail:hover ul.clients li:last-child img {
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(0%) hue-rotate(114deg) brightness(114%) contrast(101%) drop-shadow(10px 40px 36px var(--headingColor));
}

.clinetdetail h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 2px;
    color: var(--black);
    font-family: 'Poppins';
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.clinetdetail p {
    font-weight: 500;
    margin: 0 0 10px;
    letter-spacing: 0px;
    font-family: 'Poppins';
    width: 100% !important;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.test-detail p {
    width: 94%;
    color: #7c7c7c;
    font-size: 16px;
    line-height: 28px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.test-cont {
    height: 100px;
    overflow-y: scroll;
    padding-bottom: 10px;
}

.test-cont::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
}

.test-cont::-webkit-scrollbar-thumb {
    background-color: var(--themeColor);
    outline: 1px solid var(--themeColor);
    border-radius: 100px;
}

.test-cont::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset 0 0 10px var(--headingColor);
}

.testi_slider .slick-slide {
    opacity: 0;
    margin: 70px 10px 0px;
}

.testi_slider .slick-active {
    opacity: 1;
}

.testi_slider .slick-list {
    overflow: visible;
}

.test-cont {
    margin-bottom: 18px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.ic {
    color: #f4a600;
    margin-bottom: 13px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.test-heading {
    margin-top: 35px;
}

section.testimonials {
    z-index: 0;
    position: relative;
    padding: 0 0% 100px;
}

ul.cd {
    border-top: 1px solid #d2e0e7;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 0;
}

.testimonials-heading h2 {
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.testimonials-heading p {
    color: #878787;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 15px;
    transition-duration: 0.5s;
}

.testimonials-heading a {
    font-size: 17px;
    font-weight: 500;
    color: #1f459d;
    text-transform: capitalize;
    text-decoration: underline;
}

.clients li:first-child img {
    border-radius: 50%;
}

section.testimonials.innner-service-page {
    padding: 100px 0px;
}

section.service-sec.inner-service-sec {
    padding: 100px 0px;
}

/* end  */

/* inner banner */

section.main_slider.inner-banner {
    min-height: 600px;
    padding-top: 100px;
    align-items: center;
}

section.main_slider.inner-banner .banner_img {
    width: 53%;
}

section.testimonials.inner-testimonials {
    padding: 100px 0px;
}

.inner-testimonials .test-detail {
    margin-top: 100px;
}

/* inner banner */


/* about-more-text */

.about-more-text {
    text-align: end;
    margin-top: 60px;
    padding-right: 40px;
}

.about-more-text h4 {
    font-size: 35px;
    margin-bottom: 10px;
    color: var(--headingColor);
}

.about-more-text p {
    margin-bottom: 25px;
}

section.about-sec.inner-about-sec {
    padding-bottom: 0px;
}

section.about-sec.inner-about-sec .about-text {
    clip-path: polygon(23.1% 0%, 100% 0, 100% 100%, 0% 100%);
}


section.main_slider.inner-banner.about-banner .banner_img-box {
    transform: skew(23deg, 0deg) scale(1.15);
}

section.main_slider.inner-banner.about-banner .banner_img-box img {
    object-position: -10px -370px;
}

section.main_slider.inner-banner.package-banner .banner_img-box {
    transform: skew(23deg, 0deg) scale(1.15);
}

section.main_slider.inner-banner.package-banner .banner_img-box img {
    object-position: -10px -370px;
}

section.main_slider.inner-banner.review-banner .banner_img-box {
    transform: skew(23deg, 0deg) scale(1.15);
}

section.main_slider.inner-banner.review-banner .banner_img-box img {
    object-position: -10px -250px;
}

/* about-more-text */

/* secrive-detail-sec */

.secrive-detail-sec {
    padding: 100px 0px;
}

.service-detail img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    margin-bottom: 20px;
}

.service-detail h2 {
    font-size: 75px;
    margin-bottom: 15px;
    color: var(--headingColor);
}

.service-detail p {
    margin-bottom: 25px;
}

/* secrive-detail-sec */

/* Footer Start */

footer {
    padding-top: 100px;
    background: var(--headingColor);
}

.footer-logo p {
    width: 95%;
    opacity: 0.8;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--white);
}

footer h4 {
    font-size: 20px;
    line-height: 30px;
    margin: 0px 0 30px;
    color: var(--white);
    font-family: 'Poppins';
}

.footer-link ul {
    column-count: 2;

}

.footer-link ul li a,
.footer-contact a,
.footer-follow ul li a {
    opacity: 0.8;
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    color: var(--white);
    transition: all ease-in .3s;
}

.footer-link ul li a:hover,
.footer-contact a:hover,
.footer-follow ul li a:hover {
    background-clip: text;
    color: transparent;
    opacity: 1;
    background-image: -webkit-linear-gradient(0deg, var(--themeColor) 0%, var(--themeColor) 100%);
    transform: translateX(10px);
}

.footer-contact p {
    font-size: 14px;
    color: #a5a5a5;
    line-height: 24px;
    font-family: 'Poppins';
}

.footer-link {
    min-height: 100%;
    padding-left: 20px;
    padding-right: 30px;
    padding-bottom: 40px;
    border-right: 1px solid #ffffff7c;
}

.footer-contact {
    min-height: 100%;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 40px;
    border-right: 1px solid #ffffff7c;
}

.footer-follow {
    padding-left: 20px;
}

.footer-bottom-sec {
    padding: 20px 0;
    border-top: 1px solid #ffffff7c;
}

.copy-right-atm-card {
    float: right;
}

.copy-right-atm-card img {
    width: 196px;
    height: 25px;
    object-fit: contain;
}

.copy-right-txt p {
    margin: 0;
    opacity: 0.7;
    font-size: 14px;
    text-align: center;
    color: var(--white);
}

.footer-logo img {
    height: 30px;
    margin: 0 0 35px;
    width: fit-content;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(92%) sepia(15%) saturate(588%) hue-rotate(330deg) brightness(102%) contrast(86%);
}


.footer-logo {
    padding-top: 0;
    min-height: 100%;
    padding-right: 60px;
    border-right: 1px solid #ffffff7c;
}



/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@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 Query End*/