@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 'segoereg';
    color: #1A1A1A;
    overflow-x: hidden;
}

:root {
    --theme1: #FF8700;
    --theme2: #67AA00
}

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

a:hover,
a:focus {
    text-decoration: none;
    color: #ff8700;
}

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: 400;
    line-height: 30px;
    font-family: 'segoereg';
    font-size: 20px;
}


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

@font-face {
    font-family: 'segoebold';
    src: url(../fonts/segoebold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: 'segoereg';
    src: url(../fonts/segoereg.ttf);
    font-weight: 400;
}


/***** 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: 0 30px;
    border: unset;
    color: #ffffff;
    z-index: 1;
    background: var(--theme2);
    position: relative;
    font-size: 20px;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 50px;
    text-transform: capitalize;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: var(--theme1);
    z-index: -1;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.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: 'segoereg';
    font-size: 27px;
    line-height: 1.2;
    color: #1A1A1A;
    margin: 0 0 17px;
    font-weight: 600;
}

h2 {
    font-family: 'segoebold';
    font-size: 59px;
    line-height: 1.2;
    color: #231F20;
    margin: 0 0 30px;
}

h3 {
    font-family: 'segoebold';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 28px;
}

h4 {
    font-family: 'segoereg';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    margin: 0 0 13px;
}

h5 {
    font-family: 'segoereg';
    font-size: 28px;
    line-height: 1.2;
    color: #FF8700;
    margin: 0 0 20px;
    font-weight: 600;
}

h6 {
    font-family: 'segoereg';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    margin: 0 0 22px;
}

::-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: 10px 0;
    background: transparent;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
}

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

.menuSec li:hover ul {
    opacity: 1;
    visibility: visible;
}


.menuSec ul li a {
    position: relative;
    text-decoration: none;
    color: #1A1A1A;
    font-size: 20px;
    transition: 0.5s;
    font-weight: 600;
}

.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: var(--theme1);
}

.menuSec li>ul {
    position: absolute;
    z-index: 0;
    background-color: #fff;
    left: 0;
    width: 240px;
    text-align: left;
    opacity: 0;
    transition: 0.2s ease-in-out;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
    box-shadow: 0 0 10px #ccc;
    column-count: 2;
    display: flex;
    padding: 10px 0;
    visibility: hidden;
    top: 60px;
}

.menuSec li:hover ul {
    transition: 0.2s ease-in-out;
    top: 60px;
    z-index: 999;
}

.menuSec li>ul:after {
    position: absolute;
    content: "";
    background: #606060;
    width: 20px;
    height: 20px;
    top: -20px;
    left: 10px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 999;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    /* color: #fff !important; */
    font-size: 13px;
    line-height: 20px;
    width: 100%;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #848484;
    font-family: "Inter", sans-serif;
    text-transform: capitalize;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
    width: 100%;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.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: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    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: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    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: center;
    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: #28b16d;
    width: 10px;
    height: 12px;
}


/*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  */

/* +++++++++++++++++++++++++++++++++ Home Css Start +++++++++++++++++++++++++++++++++ */
header {
    position: absolute;
    width: 100%;
    top: 10px;
    left: 0;
    z-index: 9999;
}

.top-det ul li p,
.top-det ul li a {
    font-size: 18px;
    color: #1A1A1A;
    font-weight: 500;
    margin: 0;
}

.top-det ul {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.top-det.top-det2 ul {
    justify-content: right;
}

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

.container-fluid {
    padding: 0 5%;
}

.logo {
    text-align: center;
}

.logo img {
    width: 150px;
}

.topSec {
    border-bottom: 1px solid #707070;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.btn1 {
    color: #1a1a1a;
    font-size: 20px;
    border: 1px solid #67AA00;
    width: fit-content;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 30px;
}

.btn1:hover {
    background: #67AA00;
    color: #fff;
}

.header-btn {
    display: flex;
    justify-content: right;
}

section.banner {
    background: linear-gradient(135deg, #d9f7b5ba, #f9c28f);
    padding-top: 230px;
    position: relative;
}

section.banner .container-fluid {
    padding: 0;
    padding-right: 5%;
}

h1 span {
    color: var(--theme1);
}

.ban-text h2 {
    font-size: 77px;
    color: #231F20;
    text-transform: capitalize;
}

.ban-text p {
    margin-bottom: 30px;
}

img.ban2-img {
    position: absolute;
    right: -28px;
    bottom: 0;
    width: 27vw;
}

.ban-imgs {
    position: relative;
}

img.ban1-img {
    width: 39vw;
}

.ban-text {
    width: 95%;
    margin: 90px 0 0 auto;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    position: absolute;
    right: 10px;
    writing-mode: sideways-rl;
    top: 50%;
    transform: translate(0, -50%);
    height: 100%;
}
.social-icons a:hover {
    background: var(--theme1);
}
.social-icons a {
    color: #eedeac;
    font-size: 18px;
    width: 33px;
    height: 33px;
    background: #161E2C;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-right: 5px;
}
section.banner .social-icons:before, section.banner .social-icons:after {
    position: absolute;
    content: '';
    background: #707070;
    width: 1px;
    height: 40%;
    right: 17px;
    z-index: -1;
    top: 0;
}

section.banner .social-icons:after {
    top: unset;
    bottom: 0;
}
section.about {
    position: relative;
    padding: 80px 0;
}

.abt-img img {
    width: 54%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.abt-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    width: 50%;
}

.abt-text ul li p {
    margin: 0;
}

.abt-text ul {
    display: flex;
    flex-wrap: wrap;
    margin: 27px 0;
}

section.about .row {
    align-items: center;
}

.clr1 {
    color: var(--theme1);
}

section.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #d9f7b5ba, #f9c28f);
    position: relative;
}

.ser-text h2 {
    font-size: 74px;
    font-family: 'segoereg';
}

.ser-text h2 span {
    font-family: 'segoebold';
    font-style: italic;
}

.ser-text img {
    margin: 20px 0 30px 0;
}

.roof-ser {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 1%;
}

.ser-wrap {
    width: 44%;
}

.ser-wrap p {
    width: 90%;
    font-size: 1vw;
}

.ser-wrap h3 {
    margin: 20px 0;
    font-size: 25px;
}

.ser-wrap:last-child {
    margin-top: 80px;
}

img.roof-img1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 39vw;
    height: 25vw;
}

.ser-wrap:nth-child(even) {
    margin: 0 0 0 auto;
}

/*LATEST WORK SECTION*/

.latest_work_sec {
    padding: 65px 0 150px;
}

.latest_workheading h2 {
    color: #101010;
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

.latest_workheading p {
    color: #000;
    width: 80%;
    margin: auto;
}

.latest_work_slider ul li img {
    height: 600px;
    object-fit: cover;
    width: 400px;
    border-radius: 20px;
}

.flipster__item--future-2,
.flipster__item--future-1,
.flipster__item--past-1,
.flipster__item--past-2 {
    opacity: 1 !important;

}

.flipster__button {
    color: #98ba1000;
    opacity: 1;
    font-size: 7px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 0px;
    border: none;
}

.flipster__button:hover {}

.flipster {
    display: block;
    overflow-x: visible;
    overflow-y: visible;
    position: relative;
}

.flipster__button--next {
    background-image: url(../images/arrow-slider-2.png);
    right: 45%;
    background-position: center;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -70px;
    top: unset;
}

.flipster__button--prev {
    background-image: url(../images/arrow-slider.png);
    left: 45%;
    z-index: 2;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -70px;
    top: unset;
}


/*LATEST WORK SECTION*/
/* Contact Page Start */

section.contact-page h2 span {
    font-family: 'segoebold';
    font-style: italic;
}

section.contact-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #d9f7b5ba, #f9c28f);
    position: relative;
}

section.contact-page h2.theme-h2 {
    text-transform: uppercase;
}

section.contact-page h2 {
    font-size: 80px;
    font-weight: 400;
    font-family: 'segoereg';
    margin-bottom: 50px;
}

section.contact-page h2 span {
    font-family: 'segoebold';
    font-style: italic;
}
img.cnt-arr {
    position: absolute;
    left: 35%;
    transform: rotate(
323deg);
    top: 48%;
    opacity: 0.56;
}

.cont-page-text a,
.cont-page-text h6 {
    display: block;
    color: #231F20;
    font-size: 18px;
    line-height: 40px;
}


ul.cont-icon img {
    border-radius: 50px;
}

.cont-page-text h6 {
    margin: 0;
}

.cont-input input,
.cont-input select {
    width: 100%;
    height: 60px;
    border: 0;
    padding: 20px;
    color: #231F20;
    margin-bottom: 20px;
    border-radius: 7px;
    appearance: auto;
    background: linear-gradient(135deg, #feeaac, #ffe0a5);
    border: 1px solid #231f207a;
}

.cont-input input::placeholder, .cont-input textarea::placeholder {
    color: #231F20;
    font-weight: 500;
}

.cont-input textarea {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #feeaac, #ffe0a5);
    border: 1px solid #231f207a;
    color: #3f3e43;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 7px;
    font-weight: 400;
}

.cont-input button {
    padding: 12px 40px;
    width: 100%;
}

section.contact-page .row {
}

.cont-page-text {
    width: 70%;
}

/* Contact Page End */


section.testimonial {
    padding-bottom: 80px;
}

.testi-wrap {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: left;
}

.testi-wrap ul li img {
    width: auto;
}

section.testimonial .container-fluid {
    padding: 0;
}

.testi-wrap ul {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
}

.testi-wrap ul li h6 {
    font-size: 25px;
    margin: 0;
    color: #231F20;
}

.testi-wrap ul li .rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #FFC107;
    margin-top: 6px;
}

section.testimonial .slick-slide {
    opacity: 1;
}

section.testimonial .slick-slide {
    opacity: 1;
}

section.testimonial .slick-track>div:nth-child(even) {
    background: linear-gradient(135deg, #cec0a8, #cfd8d9);
    border-radius: 10px;
}
section.testimonial {
    padding-bottom: 80px;
}
.testi-slider2 .testi-wrap ul {
    justify-content: start;
}

/* Footer Section Start */

footer.footer-sec {
    position: relative;
    padding: 3% 0 0;
    width: 100%;
    background-color: #192900;
    background-size: cover;
}
.footer-text h2 {
    font-size: 26px !important;
    line-height: 50px;
    margin-bottom: 20px;
    color: var(--theme1);
    text-transform: capitalize;
    position: relative;
}

ul.footer-link li a {
    font-size: 17px;
    color: #fff;
    line-height: 28px;
    font-weight: 400;
    text-transform: capitalize;
}
ul.footer-link li a:hover {
    color: var(--theme1);
}
ul.footer-link-list li p {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: 400;
    x: 0;
    line-height: 30px;
}

ul.footer-link-list li h4 {
    margin: 0;
}

.footer-form {
    position: relative;
}
.footer-form button:hover {
    background: var(--theme1);
    color: #fff;
}
.footer-form input {
    width: 100%;
    height: 50px;
    padding: 15px;
    border: 1px solid #dddddd;
    margin-bottom: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    background: transparent;
    border-radius: 40px;
}
.footer-form input::placeholder {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.footer-form button {
    transition: 0.4s;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    color: var(--theme1);
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0;
}

.footr-btn button {
    margin: 0;
}

.footr-btn button::before {
    background: #092c18;
}

.footer-text.ftr-border {
    position: relative;
    padding-left: 20%;
    border-left: 1px solid #ffffff2b;
    border-right: 1px solid #ffffff2b;
    height: 100%;
}
.footer-text.ftr-border2 {
    border-right: 1px solid #ffffff2b;
    height: 100%;
    margin-left: 13%;
}


section.bottom-nav {
    padding: 16px 0;
    text-transform: capitalize;
    background: #192900;
    margin-top: 40px;
    border-top: 1px solid #ffffff2b;
}
.btm-nav-links {
    display: flex;
    justify-content: right;
    gap: 13px;
}

.btm-nav-links a {
    color: #fff;
}

.btm-nav-links a:hover {
    color: var(--theme1);
}
section.bottom-nav p {
    font-size: 16px;
    color: #fff;
    text-align: start;
    line-height: 30px;
    margin: 0;
}

ul.footer-link li {
    border-bottom: 1px solid transparent;
    width: 75%;
    transition: 1s ease-in-out;
    margin-bottom: 10px;
}

ul.footer-link-list li {
    border-bottom: 1px solid transparent;
    padding-bottom: 10px;
    transition: 1s ease-in-out;
}

.footer-text p {
    color: #fff;
    margin: 20px 0 20px;
    font-size: 16px;
}
.footer-text .social-icons a:hover {
    background: var(--theme1);
    color: #fff;
}
footer.footer-sec.line-btm:after {
    bottom: unset;
    top: -87px;
    background-image: url(../images/line.png);
    z-index: 3;
    height: 96px;
}

footer h2:before {
    display: none;
}

footer.footer-sec .col-lg-3 {
    position: relative;
}
.footer-text .social-icons {
    position: unset;
    writing-mode: unset;
    margin-top: 40px;
    justify-content: start;
}

.footer-text .social-icons a {
    color: #000;
    background: #fff;
    padding: 0;
}


/* Footer Section End */
/* +++++++++++++++++++++++++++++++++ Home Css Start end  +++++++++++++++++++++++++++++++++ */