@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');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary: #434598;
    --white: #fff;
    --black: #111;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
    overflow: inherit !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
textarea,
select {
    background: none;
    border: solid 1px #cfcfcf;
    color: #cfcfcf;
    font-size: 15px;
    line-height: normal;
    margin: 0 0 12px;
    padding: 14px 18px;
    width: 100%;
    outline: 0;
    font-family: "Roboto", sans-serif;
    border-radius: 6px;
    text-align: center;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder,
select::placeholder {
    color: #7e7e7e;
}

input[type="submit"] {
    color: var(--white);
    background: var(--primary);
    padding: 12px 25px;
    font-size: 14px;
    border: 0;
    letter-spacing: 0.8px;
    cursor: pointer;
    outline: none;
    font-weight: 500;
    font-family:
        "Roboto", sans-serif;
    border-radius: 4px;
    width: 100%;
}

input[type="submit"]:hover {
    background: #00dafc;
    transition: 0.8s;
}

textarea {
    height: 100px;
    margin-bottom: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px 0;
    font-family: "Poppins", sans-serif;
    color: #6c6c6c;
    font-weight: 500;
    text-transform: inherit;
}

h1 {
    font-size: 28px
}

h2 {
    font-size: 24px
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

p {
    padding: 0;
    margin: 0 0 1.6em 0;
    font-family: "Roboto", sans-serif;
    color: #6c6c6c;
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
}

strong,
span {
    color: #444;
}

ul,
li,
a {
    list-style-type: none;
    font-family: "Roboto", sans-serif;
    color: #3a3a3a;
    line-height: 26px;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    transition: 0.8s;
    text-decoration: none;
}

.heading,
.leftheading {
    margin-bottom: 15px;
    font-size: 2rem;
    position: relative;
    font-weight: 600;
    line-height: 44px;
    color: var(--primary);
}

.heading {
    text-align: center;
}

.subheading {
    margin: 0 auto 20px;
    text-align: center;
    color: #1e293b;
    font-size: 14px;
    letter-spacing: 3px;
    font-family: "Roboto", sans-serif;
}

.description {
    width: 60%;
    margin: 0 auto 30px;
    text-align: center;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.primary-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #2F2928;
    color: var(--primary);
    line-height: normal;
    border-radius: 60px;
}

.primary-btn i {
    margin-left: 5px;
    font-size: 13px;
}

.primary-btn .fi-bs-arrow-turn-left-up {
    transform: rotate(-45deg);
    display: inline-block;
    font-size: 12px;
}

.primary-btn.floatingbtn {
    position: fixed;
    right: 0;
    bottom: 130px;
    z-index: 8;
}






.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.header-wrapper ul.navigationmenu {
    display: flex;
    align-items: center;
    gap: 40px;
}

header {
    position: absolute;
    width: 100%;
    padding: 20px 0 0;
    z-index: 9;
}

.header-wrapper ul.navigationmenu li a {
    color: var(--white);
}









.mobile-navigationmenu {
    background: var(--white);
    display: none;
}
ul.mobile-navigationmenu li a {
    display: block;
    padding: 9px 16px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}
button.hamburger {
    position: absolute;
    top: 52px;
    right: 36px;
    background: transparent;
    border: none;
    display: none;
}

button.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    display: inline-block;
    position: relative;
}

button.hamburger span:before, button.hamburger span:after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
}

button.hamburger span:before {
    top: -8px;
}

button.hamburger span:after {
    bottom: -8px;
}
button.hamburger.active span:before {
    display: none;
}

button.hamburger.active span {
    transform: rotate(45deg);
}

button.hamburger.active span::after {
    transform: rotate(90deg);
    bottom: 0;
}


.banner video {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
}

.banner {
    position: relative;
}

.banner:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(288deg, #a9cc7d 0%, #434598 100%);
    opacity: .6;
}


.banner-content {
    position: absolute;
    left: 50%;
    top: 55%;
    width: 100%;
    transform: translate(-50%, -45%);
    text-align: center;
}

.banner-content img {
    width: 60px;
    margin-bottom: 40px;
}

.banner-content h1 {
    font-size: 60px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    line-height: 58px;
}

.banner-content h3 {
    font-size: 32px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    line-height: 38px;
}

.banner-content h3 strong {
    font-size: 35px;
    text-transform: uppercase;
    color: #8cc360;
    font-weight: 600;
}

.banner-content h2 {
    font-size: 48px;
    color: var(--white);
    font-weight: 600;
    padding: 20px 20px 0;
    border-top: 2px solid var(--white);
    width: fit-content;
    margin: 40px auto 0;
}

.counter-wrapper {
    margin-top: -70px !important;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background-color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding: 10px;
}

.counterlist {
    width: 33.3%;
    text-align: center;
    padding: 15px;
}

.counterlist p {
    margin: 0;
}

.counterlist h3,
.counterlist h3 span {
    font-size: 42px;
    color: var(--primary);
    font-weight: 500;
    line-height: 48px;
}

.counterlist:nth-child(2) {
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}








.efficiency {
    padding: 100px 0;
    text-align: center;
}

.efficiency-wrapper {
    display: flex;
    gap: 25px;
    margin-top: 70px;
}

.efficiencylist {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px 22px 30px;
    width: 33.3%;
}

.efficiencylist dotlottie-player {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 200px !important;
    width: 200px !important;
}

.efficiencylist p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

.efficiencylist h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 600;
    color: #1e293b;
    font-weight: 500;
}



.projects {
    padding: 0 0 5px;
}

.projects-slider {
    display: flex;
    gap: 10px;
    margin-top: -80px;
    overflow: hidden;
}

.projects-slider figure {
    animation: sliding 50s linear infinite forwards;
}

@keyframes sliding {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-2060px);
    }
}

.projects-slider figure img {
    height: 300px;
}

.projects h2 {
    font-family: "Poppins";
    font-weight: 700;
    font-size: 127px;
    color: #43459969;
    text-align: center;
    line-height: normal;
    margin: 0;
    position: relative;
    z-index: 9;
}






.services {
    background: #f9fafb;
    padding: 100px 0;
    overflow: hidden;
}
.services-wrapper {
    display: flex;
    align-items: center;
}

.servicesleft,
.servicesright {
    width: 50%;
}

.servicesleft h4.subheading,
.servicesleft h2.heading,
.servicesleft p.description {
    text-align: left;
    width: 80%;
    margin-left: 0;
}

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

.serviceslist dotlottie-player {
    height: 50px !important;
    width: 50px !important;
    padding-right: 10px;
}

.serviceslist h3 {
    margin: 0;
    font-size: 17px;
    color: #1e293b;
    padding-left: 15px;
}

.serviceslist {
    border-top: 1px solid #e2e8f0;
    padding: 20px 0px;
}

.serviceslist:last-child {
    border-bottom: 1px solid #e2e8f0;
}

.servicesleft p.description {
    margin: 0;
}




.innovative {
    padding: 100px 0 0;
}





.construction-video video {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    box-shadow: 0px 0px #00000070;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 0px;
    margin-right: 0px;
    row-gap: 20px;
    column-gap: 20px;
    overflow: visible;
}

.construction-video {
    overflow: hidden;
    border-radius: 15px;
}

.construction {
    padding: 100px 0;
}

.innovative-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.innovativelist.innovativelist1 {
    width: 50%;
    display: flex;
    align-items: center;
}

.innovativelist {
    width: 25%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.innovativelist img {
    width: 100%;
    display: block;
    margin: 0;
}

.innovativelist .innovativelist-info {
    padding: 25px;
    height: 230px;
}

.innovativelist.innovativelist1 figure {
    width: 50%;
    margin: 0;
}

.innovativelist.innovativelist1 .innovativelist-info {
    width: 50%;
}

.innovativelist .innovativelist-info p {
    margin: 0;
}

.innovativelist-info h5 {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2em;
    letter-spacing: 1px;
    color: #1e293b;
    margin-bottom: 20px;
}

.innovativelist-info h3 {
    font-size: 20px;
    color: #1e293b;
}








.footer-wrapper {
    display: flex;
    align-items: center;
}

footer {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 40px 0;
}

.footer-col {
    width: 33.3%;
}

footer a.footer-logo img {
    width: 130px;
}

.footer-col.footerleft {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-col.footerleft p {
    margin: 0;
}

.footer-col.footermdl {
    text-align: center;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    padding: 30px 20px;
}

.footer-col.footermdl ul li {
    width: 50%;
}

.footer-col.footermdl ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}

.footer-col.footerright {
    padding-left: 40px;
    text-align: center;
}

.footer-col.footerright p {
    margin-bottom: 10px;
}

.footer-col.footerright input[type="submit"] {
    width: fit-content;
    display: block;
}



.copyright {
    padding: 40px 0;
    text-align: center;
}

.copyright ul.socialicons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.copyright ul.socialicons li a {
    font-size: 18px;
}









@media only screen and (max-width: 1199px) {
    header .logo img {
        width: 110px;
    }

    .banner-content img {
        margin-bottom: 10px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content h3, .banner-content h3 strong {
        font-size: 26px;
    }

    .banner-content h2 {
        font-size: 38px;
        padding: 10px 10px 0;
        margin: 20px auto 0;
    }

    .counter-wrapper {
        margin-top: -70px !important;
    }

    .counterlist h3, .counterlist h3 span {
        font-size: 42px;
        line-height: 48px;
    }
}


@media only screen and (max-width: 991px) {
    .efficiency-wrapper {
        gap: 12px;
        flex-wrap: wrap;
    }
    .efficiencylist {
        width: 100%;
    }

    .projects h2 {
        font-size: 48px;
    }

    .projects-slider {
        margin-top: 20px;
    }

    .projects-slider figure img {
        height: 220px;
    }
    .services-wrapper {
        flex-wrap: wrap;
        gap: 40px;
    }
    .servicesleft, .servicesright {
        width: 70%;
        margin: 0 auto;
    }
    .servicesleft h4.subheading, .servicesleft h2.heading, .servicesleft p.description {
        text-align: center;
        width: 80%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .innovative-wrapper {
        flex-wrap: wrap;
    }
    .innovativelist {
        width: 100% !important;
    }
    .footer-wrapper {
        flex-wrap: wrap;
        gap: 50px;
    }
    .footer-col.footerleft {
        gap: 22px;
        flex-direction: column;
        text-align: center;
    }
    .footer-col {
        width: 100%;
        padding: 0 !important;
        border: none !important;
    }
    .footer-col.footermdl {
        display: none;
    }
    .footer-col.footerright input[type="submit"] {
        margin: 10px auto 0;
    }


    .copyright {
        padding: 30px 0;
    }
    .copyright p {
        margin-bottom: 15px;
    }
}


@media only screen and (max-width: 768px) {
    header {
        padding: 10px 0 0;
    }
    .counterlist h3, .counterlist h3 span {
        font-size: 32px;
        line-height: 38px;
    }
    .description {
        width: 100%;
    }
    .heading, .leftheading {
        font-size: 1.8rem;
        line-height: 38px;
    }
    .servicesleft h4.subheading, .servicesleft h2.heading, .servicesleft p.description {
        width: 100%;
    }
    .servicesleft, .servicesright {
        width: 100%;
    }
    .header-wrapper ul.navigationmenu {
        display: none;
    }
    .mobile-navigationmenu.show {
    display: block;
}
button.hamburger {
    display: block;
}
    .header-wrapper {
        justify-content: flex-start;
    }
    header .logo img {
        width: 100px;
    }
    .banner-content {
        top: 52%;
        transform: translate(-50%, -48%);
    }
    .banner-content h1 {
        font-size: 30px;
    }
    .heading, .leftheading {
        font-size: 1.55rem;
        line-height: 32px;
    }
    p {
        font-size: 14px;
        line-height: 24px;
    }
    .banner-content h3, .banner-content h3 strong {
        font-size: 22px;
    }



    .counterlist {
        padding: 12px 15px;
    }
    .counterlist h3, .counterlist h3 span {
        font-size: 27px;
        line-height: 26px;
    }
    .counterlist p {
        margin: 0;
        font-size: 13px;
        line-height: 17px;
    }
}


@media only screen and (max-width: 668px) {
    .banner-content h1 {
        line-height: 36px;
    }
    .banner-content h3, .banner-content h3 strong {
        font-size: 20px;
        line-height: normal;
    }
    .construction, .services, .efficiency {
        padding: 50px 0;
    }
    .innovative {
        padding: 50px 0 0;
    }
}