:root {
    --navy: #12203F;
    --dnavy: #0E1832;
    --black: #0B1023;
    --ltgold: #DDD1A2;
}

/* Animation heading */
span.text-shape.word {
    margin-right: 1%;
}

.title-animation {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.title-animation.animated {
    opacity: 1;
}

.title-animation .word {
    display: inline-block;
    opacity: 0;
    /* transform: translateY(-50px); */
}

.title-animation.animated .word {
    animation: slide-in 0.8s linear both;
    animation-delay: calc(100ms * var(--word-index));
    line-height: normal;
}

@keyframes slide-in {
    from {
        opacity: 0;
        /* transform: translateY(-50px); */
        transform: rotateX(95deg);
    }

    to {
        opacity: 1;
        /* transform: translateY(0); */
        transform: rotateX(0deg);
    }
}

.title-animation span {
    font-size: clamp(32px, calc(2rem + ((1vw - 3.9px) * 2.6667)), 60px);
    font-weight: 500;
}

section.vc_section.banner .title-animation span {
    font-size: clamp(46px, calc(2.875rem + ((1vw - 3.9px) * 5.1429)), 100px);
    font-weight: 500;
    line-height: normal;
}

section.vc_section.banner .title-animation {
    max-width: 850px;
}

/* Animation heading */


/* header css */

header.main-header {
    position: fixed;
    left: 50%;
    max-width: 1430px;
    width: 100%;
    transform: translateX(-50%);
    top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 9;
}

.header-inner {
    padding: 20px;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav.navbar-main {
    display: flex;
    align-items: center;
}

nav.navbar-main a {
    padding: 20px;
    color: #fff;
    position: relative;
}

nav.navbar-main a:before {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 20px;
    height: 1px;
    background-color: #fff;
    width: 0px;
    transition: .2s linear;
}

nav.navbar-main a:hover:before {
    left: 20px;
    transition: .2s linear;
    width: calc(100% - 40px);
}

nav.navbar-main ul {
    display: flex;
    align-items: center;
}

.navbar-main .theme-btn {
    margin-left: 20px;
}


.hamburger {
    background-color: #DDD1A2;
    padding: 10px;
    display: none;
    width: 50px;
    height: 45px;
}

.hamburger span.bar {
    display: block;
    background-color: #0B1023;
    height: 5px;
    width: 30px;
    margin-bottom: 5px;
}

.hamburger span.bar:last-child {
    margin-bottom: 0px;
}



/* header css */


/* footer css */

.main-footer {
    background-color: var(--black);
    padding-top: 100px;
}

.quick-link h5 {
    margin-bottom: 30px;
}

.quick-link ul li {
    margin-bottom: 8px;
}

.quick-link ul li a {
    font-size: 18px;
    transition: color .3s ease-in;
}

.quick-link ul li a:hover {
    color: var(--ltgold) !important;
    opacity: 1;
}

.contact-link ul li:first-child a {
    font-size: 16px;
    word-wrap: break-word;
}

.quick-link.social-link ul li a {
    display: flex;
    align-items: center;
}

.quick-link.social-link ul li a svg {
    flex: 0 0 auto;
    width: 20px;
    margin-right: 16px;
}

.copyright p,
.copyright a {
    opacity: .6;
    font-size: 14px;
    margin: 0px;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-footer {
    border-top: 1px solid #fff;
    margin-top: 45px;
    padding-top: 20px;
    padding-bottom: 30px;
}

.made-bold {
    text-align: right;
    padding-top: 20px;
}

.made-bold img {
    margin-left: auto;
}

.privacy a {
    margin-left: 25px;
    transition: .3s linear;
}

.privacy a:hover {
    opacity: 1;
    transition: .3s linear;
    color: var(--ltgold);
}

/* footer end */




/* Media Query */


@media(max-width:1400px) {
    .mision-shape {
        width: 165px;
        height: 295px;
        top: 310px;
    }

    .mision-shape::before {
        width: 195px;
        bottom: -60px;
        height: 305px;
    }

}

@media(max-width:1300px) {
    .row.price-row>div:last-child {
        width: 100%;
    }

}

@media(max-width:1100px) {
    nav.navbar-main a {
        padding: 12px;
    }
   /* section.recruit.recruit2 .recruit-cont h2, section.recruit.recruit2 .recruit-cont h2 span.word {
        font-size: clamp(36px, calc(2.25rem + ((1vw - 7.68px) * 5.0595)), 40px);
        margin-bottom: 15px;
    } */

}

@media(max-width:1024px) {
    .job-descp-cont {
        height: 50vh;
    }
    ul.job-list li {
    width: 50%;
}
}

@media(max-width:991px) {
    section.recruit.top .marque-box img {
        min-height: 220px;
        object-fit: cover;
    }
    /* header css */

    .hamburger {
        display: block;
        position: relative;
        z-index: 9;
    }

    nav.navbar-main {
        position: absolute;
        right: 15px;
        top: -300px;
        background-color: var(--ltgold);
        padding: 80px 30px 50px;
        flex-direction: column;
        width: 400px;
        align-items: start;
        /* height: 0px; */
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        transition: .5s ease-in;
    }

    nav.navbar-main ul {
        flex-direction: column;
        align-items: start;
    }

    nav.navbar-main a {
        display: inline-block;
        color: var(--black);
    }

    .navbar-main .theme-btn {
        margin-left: 12px;
        margin-top: 12px;
    }

    body.menu-open nav.navbar-main {
        /* height: auto; */
        top: 0;
        opacity: 1;
        visibility: visible;
        z-index: 1;
        transition: .5s ease-in;
    }

    nav.navbar-main .theme-btn.theme-btn-gold a {
        display: flex;
    }

    nav.navbar-main .theme-btn.theme-btn-gold a {
        background-color: #000 !important;
        padding: 16px 20px !important;
    }

    nav.navbar-main .theme-btn.theme-btn-gold a span {
        color: #fff;
    }

    nav.navbar-main .theme-btn.theme-btn-gold a img {
        filter: invert(1);
    }


    body.menu-open .hamburger {
        background-color: var(--black);
    }

    body.menu-open .hamburger span.bar {
        background-color: var(--ltgold);
    }

    body.menu-open .hamburger span.bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 7px);
        margin: 0px;
    }

    body.menu-open .hamburger span.bar:nth-child(2) {
        transform: rotate(-45deg) translate(-4px, 3px);
        margin: 0px;
    }

    body.menu-open .hamburger span.bar:nth-child(3) {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    header.main-header {
        top: 10px;
    }

    nav.navbar-main a {
        font-size: 26px;
    }

    nav.navbar-main .theme-btn.theme-btn-gold a span {
        font-size: 26px;
    }

    nav.navbar-main a:before {
        background-color: var(--black);
    }

    /* header end */

    section.recruit {
        padding: 80px 0;
    }

    .recruit-cont .theme-btn.theme-btn-border {
        margin-bottom: 5px;
        display: inline-block;
    }

    .recruit-cont h2 {
        margin-bottom: 30px;
    }

    .recruit-cont h2 br.word {
        display: none;
    }

    .recruit-cont {
        margin-bottom: 30px;
    }

    .marque-main {
        display: block;
    }

    .marque-one,
    .marque-two {
        height: auto;
        position: relative;
    }

    .marque-boxes {
        display: flex;
        width: max-content;
    }

    .marque-main>div {
        width: 100%;
        padding: 0 0px;
    }

    .marque-boxes .marque-box {
        margin-right: 20px;
    }

    .marque-one .marque-boxes {
        display: flex;
        flex-direction: row;
        animation: scrollMarquee 30s linear infinite;
    }

    @keyframes scrollMarquee {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .marque-two .marque-boxes {
        display: flex;
        flex-direction: row;
        animation: scrollMarquee2 30s linear infinite;
    }

    @keyframes scrollMarquee2 {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    section.recruit.recruit2 .marque-video-box {
        padding-bottom: 0px;
        width: 300px !important;
        height: 170px;
    }

    .marque-one:hover .marque-boxes,
    .marque-two:hover .marque-boxes {
        animation-play-state: paused;
        transition: 1s linear;
    }

    .banner-links>div>div {
        margin-top: 10px;
        width: 50%;
    }

    .old h2.title-h2 {
        margin-bottom: 40px;
    }

    .old-counter>div>div {
        margin-bottom: 30px;
        width: 50%;
    }


    section.recruit.recruit2 .recruit-cont {
        margin-bottom: 50px;
    }

    section.recruit.recruit2 .recruit-cont h2 {
        margin-bottom: 10px;
    }

    section.recruit.recruit2 .recruit-cont .theme-btn.theme-btn-black {
        margin-top: 30px;
    }

    section.start h2 {
        margin-bottom: 30px;
    }

    .give-img {
        margin-bottom: 30px;
    }

    a.latest-box {
        margin-bottom: 30px !important;
        display: block;
    }


    .engine-descp {
        flex-direction: column;
    }

    .engine-descp h4 {
        max-width: 100%;
        padding-right: 0px;
        margin-bottom: 20px;
    }

    .row.price-row {
        margin-top: 0px;
    }

    .job-filter>div>div {
        margin-bottom: 20px;
    }

    .job-main {
        display: block;
    }

    .job-main>ul {
        width: 100%;
        margin-right: 0px;
    }

    .job-descp-main {
        padding: 30px 30px 0;
        margin-top: 0px;
        background-color: var(--dnavy);
        transition: .3s linear;
        opacity: 0;
        visibility: hidden;
        position: fixed;

    }

    .job-descp-main.active {
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        z-index: 9;
        transition: .3s linear;
        opacity: 1;
        visibility: visible;
    }

    .job-descp-cont {
        margin-top: 30px;
        margin-bottom: 10px;
        height: 64vh;
        overflow: auto;
        padding-right: 20px;
    }

    .job-cross {
        display: block;
        margin-bottom: 0px;
    }

    .blog-sec a.latest-box {
        margin-bottom: 0px !important;
        display: block;
    }

    section.testimonial-detail .row .marque-box.marque-video-box {
        margin-top: 50px;
    }

    ul.give-tabs.testimonial-tabs {
        max-width: 100%;
    }

    ul.give-tabs.testimonial-tabs {
        margin-bottom: 30px;
    }


    .mission {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .mision-shape {
        top: unset;
        bottom: 0px;
    }

    .mission h4 {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .mission .row {
        padding-left: 220px !important;
    }

    .story .give-tab-main.testimonial-tab-main {
        margin-top: 40px;
    }

    .vision-cont {
        padding-bottom: 60px;
    }

    .vision-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    section.story .give-descp h6 {
        max-width: 100%;
    }

    .meet-title {
        align-items: start;
        flex-direction: column;
    }

    .meet-btn {
        margin-top: 30px;
    }

    .meet-h2 p br {
        display: none;
    }

    .meet-slider .slick-list.draggable {
        padding-right: 10%;
    }

    .process-list-box h3 {
        margin-left: 30px;
    }

    .process-list-box span {
        width: 65px;
        height: 65px;
    }

    li.process-list {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .service-for-box .row {
        flex-direction: column-reverse;
    }

    .service-img {
        margin-bottom: 30px;
    }
    .job-main>ul{
        margin: unset !important;
    }


    .roofing-video-main .video-marque-slide {
    padding-bottom: 0px;
    width: 300px !important;
    height: 170px !important;
    max-width: unset !important;
}
.popup-categories {
    position: static !important;
}
}

@media(max-width:768px) {
    footer.main-footer .top-footer>div>div {
        margin-bottom: 30px;
    }

    footer.main-footer .top-footer>div>div:last-child {
        margin-bottom: 0px;
    }

    ul.give-tabs {
        margin: 0 0px 30px;
        flex-direction: column;
    }

    ul.give-tabs li {
        width: 100%;
        padding: 0 0px;
        margin-bottom: 40px;
    }

    .copyright {
        align-items: center;
        flex-direction: column;
    }

    .made-bold {
        text-align: center;
        padding-top: 8px;
    }

    .privacy {
        padding-top: 8px;
    }

    a.latest-box .latest-img {
        height: auto;
    }

    footer.main-footer .top-footer>div>div {
        margin-bottom: 30px;
        width: 50%;
    }

    .quick-link h5 {
        font-size: 20px;
    }

    .marque-img {
        width: 300px;
    }

    .counter .border-line {
        margin-bottom: 8px;
        margin-top: 12px;
    }

    .engine-descp {
        margin: 30px auto 0;
    }

    .latest .theme-btn {
        margin-top: 0px;
    }

    section.home-banner {
        padding-top: 180px;
    }

    .banner-links {
        padding-top: 60px;
    }

    .job-descp-main {
        padding: 15px 15px 0;
    }

    .job-descp-main .theme-btn a,
    .job-descp-main .theme-btn button {
        padding: 16px 22px;
    }

    .job-sec {
        padding-top: 160px;
    }

    .banner {
        padding-top: 200px;
        padding-bottom: 110px;
    }

    .blog-detail-img,
    .blog-detail-inner .blog-detail-title {
        margin-bottom: 30px;
    }

    .blog-detial {
        padding-top: 160px;
    }

    .row.testi-video-list>div {
        margin-top: 50px;
    }

    .testi-video {
        margin-top: -30px;
        margin-bottom: 10px;
    }

    .testimonial-banner p {
        margin-top: 20px;
        margin-bottom: 30px;
        font-size: 18px;
    }

    section.banner.blog-banner .banner-cont p {
        font-size: 18px;
    }

    section.banner.testimonial-banner {
        padding-bottom: 100px;
    }

    .testimonial-inner h2 {
        margin-bottom: 40px;
    }

    .vision-cont {
        padding-bottom: 40px;
    }

    .vision-detail {
        flex-direction: column;
        row-gap: 20px;
    }

    .vision-descp {
        text-align: left;
        padding-right: 0px;
    }

    section.give.talent-give ul.give-tabs li {
        width: 100%;
        padding: 0px;
    }

    section.give.talent-give .give-tab-cont .row {
        flex-direction: column-reverse;
    }

    .story .story-inner {
        background-size: 200px;
    }

    section.blog-detial .blog-detail-title p {
        margin-top: 30px;
        font-size: 18px;
    }

    .job-sec,
    .contact-section {
        background-size: 200px;
        background-position: right 0px top;
    }

    .made-bold img {
        margin-left: auto;
        margin-right: auto;
    }

    .start {
        background-size: 200px;
    }

    .service-nav .slick-list.draggable {
        padding-right: 80px;
    }

    .service-nav {
        margin-top: 60px;
        margin-bottom: 50px;
    }


    /* .privacy-cont h1{
    font-size: 36px;
}
.privacy-cont h2{
    font-size: 30px;
}
.privacy-cont h3{
    font-size: 26px;
} */
    .privacy-cont p {
        font-size: 16px;
    }

    .industry-logo img {
        width: 140px;
    }

    .industry-slider .slick-slide {
        width: inherit !important;
    }


    .job-descp-cont :nth-child(1n) {
        font-size: 14px !important;
    }
    .job-detail-content .job-descp-cont{
      font-size: 14px !important;
}

    .job-detail-content {

        .job-descp-cont h1,
        .job-descp-cont h2,
        .job-descp-cont h3,
        .job-descp-cont h4,
        .job-descp-cont h5,
        .job-descp-cont h6,
        .job-descp-cont a {
            font-size: 18px !important;
        }
    }

.lead-build-cont {
    display: block;
}
    .lead-title {
    max-width: 600px;
    padding-right: 0px;
}
.lead-buildpara p {
    font-size: 18px;
    max-width: 100%;
}
.lead-title {
    max-width: 100%;
    margin-bottom: 30px;
}
section.roofing-videos h2 {
    margin-bottom: 40px;
}

.roofing-videos .video-btn {
    margin-top: 30px;
}
.rofing-last-btn .theme-btn.theme-btn-black {
    margin-top: 30px;
}

section.roofing-videos {
    background-size: 700px;
}
.video-people-inner {
    background-size: 200px 134px;
}
}

@media(max-width:576px) {
    .home-banner-cont .theme-btn a {
        min-width: 245px;
    }

    footer.main-footer .top-footer>div>div {
        width: 100%;
    }

    .quick-link h5 {
        margin-bottom: 20px;
    }

    .marque-img {
        width: 220px;
    }

    .counter h5 {
        font-size: 14px;
        max-width: 100%;
    }

    .counter h5 br {
        display: none !important
    }

    .logo img {
        height: 50px;
    }

    nav.navbar-main {
        width: 90%;
        padding: 80px 15px 40px;
    }



    .job-desp .theme-btn {
        position: absolute;
        width: 90%;
    }

    .job-desp .theme-btn a {
        width: 100%;
        justify-content: center;
    }

    .job-desp {
        padding-bottom: 80px;
    }

    .job-descp-cont {
        height: 60vh;
    }

    .banner {
        padding-top: 160px;
        padding-bottom: 80px;
    }

    .testimonial-descp {
        flex-direction: column !important;
    }

    .tesi-revie-cont {
        margin-top: 30px;
    }

    .tesi-revie-cont h5 {
        margin-top: 12px;
    }

    section.testimonial-detail .row::before {
        top: 85%;
    }

    .mission .row {
        padding-left: 0px !important;
    }

    .mission {
        padding-bottom: 330px;
    }

    .give-tab-main {
        margin-top: 50px;
    }

    .vision-detail p {
        font-size: 16px;
    }

    .test-btn {
        margin-top: 30px;
    }

    nav.navbar-main {
        width: 100%;
        right: 0px;
        height: 100vh;
        top: -10px !important;
        padding: 80px 15px 40px;
    }

    .navbar-main .theme-btn {
        width: 90%;
    }

    .process-list-box span {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .process-list-box h3 {
        margin-left: 20px;
        font-size: 22px;
    }

    .latest.related-jobs .job-desp .theme-btn {
        margin-top: 20px;
        position: static;
        width: auto;
    }

    section.latest.related-jobs .theme-btn.theme-btn-white {
        margin-top: 40px;
    }
    ul.job-list li {
    width: 100%;
    padding: 0 0px;
}


}

@media(max-width:480px) {
    .engine-inner h2 span.word {
        font-size: 26px !important;
    }
}