:root{
    --black-color: #1C1C1C;
    --white-color: #fff;
    --blue-color: #0096CF;
    --green-color: #27AB61;
    --dark-ash: #E0E0E0;
}

*{
    font-family: 'Roboto', sans-serif;
}

p, h1, h2, h3, h4, h5, h6{
    margin: 0;
}
ul{
    margin: 0;
    padding-left: 0;
}
a{
    text-decoration: none;
}

/* COMMON */
    .extra-small-wrap{
        width: 40%;
        margin: auto;
    }
    .min-wrap{
        width: 60%;
        margin: auto;
    }
    .middle-wrap{
        width: 70%;
        margin: auto;
    }
    .max-wrap{
        width: 85%;
        margin: auto;
    }

    .padd-top--10{
        padding-top: 10px;
    }
    .padd-bot--10{
        padding-bottom: 10px;
    }

    .padd-top--15{
        padding-top: 15px;
    }
    .padd-bot--15{
        padding-bottom: 15px;
    }

    .padd-top--30{
        padding-top: 30px;
    }
    .padd-bot--30{
        padding-bottom: 30px;
    }

    .padd-top--50{
        padding-top: 50px;
    }
    .padd-bot--50{
        padding-bottom: 50px;
    }

    .padd-top--65{
        padding-top: 65px;
    }
    .padd-bot--65{
        padding-bottom: 65px;
    }

    .padd-top--90{
        padding-top: 90px;
    }
    .padd-bot--90{
        padding-bottom: 90px;
    }

    .padd-top--100{
        padding-top: 100px;
    }
    .padd-bot--100{
        padding-bottom: 100px;
    }

    .padd-top--120{
        padding-top: 120px;
    }
    .padd-bot--120{
        padding-bottom: 120px;
    }

    .padd-top--140{
        padding-top: 140px;
    }
    .padd-bot--140{
        padding-bottom: 140px;
    }

    .txt--white{
        color: var(--white-color);
    }
    .txt--dark{
        color: var(--black-color);
    }
    .txt--green{
        color: var(--green-color);
    }
    .txt--blue{
        color: var(--blue-color);
    }
    .txt--center{
        text-align: center;
    }
    .txt--600{
        font-weight: 600;
    }

    .section-heading{
        font-size: 36px;
    }
    .paragraph{
        font-size: 16px;
        line-height: 32px;
    }
    .special-para{
        font-size: 18px;
        line-height: 25px;
        font-style: italic;
    }

    /* BUTTONS */
        .btn--white-outline{
            border: 1px solid var(--white-color);
            color: var(--white-color);
            font-size: 16px;
            padding: 12px 70px;
            transition: all 0.5s;
        }
        .btn--white-outline:hover{
            color: var(--white-color);
            background-color: var(--blue-color);
            border: 1px solid var(--blue-color);
            transition: all 0.5s;
        }

        .btn--blue-outline{
            border: 1px solid var(--blue-color);
            color: var(--blue-color);
            font-size: 16px;
            padding: 12px 70px;
            transition: all 0.5s;
            width: max-content;
        }

        .btn--blue-outline:hover{
            background-color: var(--blue-color);
            color: var(--white-color);
            transition: all 0.5s;
        }


        .btn--rounded{
            border-radius: 25px;
        }
    /* BUTTONS */
    .common-banner {
        margin-top: 146px;
    }
    .common-banner img{
        height: 550px;
        object-fit: cover;
    }
    .breadcrumb{
        color: #393939;
        font-size: 16px;
        text-transform: uppercase;
    }
    .breadcrumb a{
        color: #393939;
    }
    .breadcrumb a:hover{
        color: #393939;
    }
    .breadcrumb span{
        width: 13px;
        height: 12px;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
    }
    .bg-ash{
        background-color: #EEEEEE;
    }
    .bg-blue{
        background-color: var(--blue-color);
    }
    .bg-dark-ash{
        background-color: var(--dark-ash);
    }
    .slick-slider:not(.slick-initialized){ 
        display: none !important; 
    }
/* COMMON */

/* HEADER */
  
    .header .navbar-brand img{
        width: 200px;
        height: 120px;
        object-fit: cover;
    }
    .header-scrolled .navbar-brand img{
        width: 120px;
        height: auto;
        object-fit: cover;
    }
    /* HAMBURGER MENU */
    .navbar-toggler{
        display: none !important;
    }
    .three{
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        color: #ecf0f1;
        text-align: center;
    }
    .hamburger .line{
        width: 50px;
        height: 5px;
        background-color: var(--white-color);
        display: block;
        margin: 8px auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        border-radius: 15px;
    }

    .hamburger:hover{
        cursor: pointer;
    }
    #hamburger-1.is-active{
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-transition-delay: 0.6s;
        -o-transition-delay: 0.6s;
        transition-delay: 0.6s;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #hamburger-1.is-active .line:nth-child(2){
        width: 0px;
    }

    #hamburger-1.is-active .line:nth-child(1),
    #hamburger-1.is-active .line:nth-child(3){
        -webkit-transition-delay: 0.3s;
        -o-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    #hamburger-1.is-active .line:nth-child(1){
        -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
        -o-transform: translateY(15px);
        transform: translateY(15px);
    }

    #hamburger-1.is-active .line:nth-child(3){
        -webkit-transform: translateY(-11px) rotate(90deg);
        -ms-transform: translateY(-11px) rotate(90deg);
        -o-transform: translateY(-11px) rotate(90deg);
        transform: translateY(-11px) rotate(90deg);
    }
    .navbar-toggler:focus{
        outline: 0 !important;
        box-shadow: none !important;
    }
    /* HAMBURGER MENU */
    #navbar_main{
        display: none;
    }

    .header{
        background-color: var(--black-color);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    .header .main-wrapper{
        width: 85%;
        margin: auto;
        transition: all 0.5s;
    }
    .header .menu-main-menu-container{
        width: 100%;
    }
    .navbar-expand-lg .navbar-collapse{
        justify-content: flex-end;
    }
    .navbar-expand-lg .navbar-nav{
        justify-content: center;
    }
    .navbar-expand-lg .navbar-nav .nav-link{
        padding: 0px 50px;
        color: var(--white-color);
        font-size: 16px;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .navbar-expand-lg .navbar-nav .menu-item:focus-visible{
        outline: 0;
        box-shadow: none;
    }
    .navbar-expand-lg .navbar-nav .nav-link:focus-visible{
        outline: 0;
        box-shadow: none;
    }
    .navbar-expand-lg .navbar-nav .current-menu-parent .nav-link,
    .navbar-expand-lg .navbar-nav .current-menu-item .nav-link{
        color: var(--blue-color);
        font-weight: bold;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu{
        background-color: var(--black-color);
        font-size: 16px;
        text-transform: uppercase;
        padding: 0 28px;
        margin-top: 56px;
        padding-bottom: 10px;
        box-shadow: none;
        border-radius: 0;
        border: 0;
        margin-left: 50px;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu li a{
        color: var(--white-color);
        font-weight: 100 ;
        opacity: .5;
        padding: 11px 0 13px 0;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid var(--white-color);
        transition: all .2s;
        text-transform: uppercase;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu li a:hover{
        opacity: 1;
        transition: all .2s;
    }
    .navbar-expand-lg .dropdown-toggle::after{
        border: none;
        width: 17px;
        height: 10px;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(127deg) brightness(97%) contrast(106%);
    }
    .navbar-expand-lg .current-menu-parent ::after{
        filter: none;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu li:last-child a{
        border: none;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu li a::after{
        content: '';
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu li.current-menu-item a{
        opacity: 1;
        font-weight: 400;
    }
    .navbar-expand-lg .navbar-nav .current-menu-item .nav-link{
        color: var(--blue-color);
    }
    .dropdown-item:focus, .dropdown-item:hover{
        background-color: transparent;
    }
    .header .contact-info{
        padding-bottom: 10px;
    }
    .header .contact-info a{
        width: max-content;
        color: var(--white-color);
        font-size: 18px;
    }
    .header .contact-info a img{
        margin-right: 15px;
    }
    .header .scrolled-header{
        position: absolute;
        width: 85%;
        margin: auto;
        transform: translateY(-100%);
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        transition: all 0.5s;
        display: none;
    }
    .header:hover .scrolled-header {
        transform: translateY(0);
        transition: all 0.5s;
    }
    /* .header:hover .normal-header{
        transform: translateY(-100%);
        transition: all 0.5s;
    } */
    .header .scrolled-header .navbar-brand{
        width: 142px;
        display: flex;
        justify-content: center;
    }
    .header .scrolled-header .navbar-brand img{
        width: 55px;
    }
/* HEADER */

/* HOME */
    /* CALCULATOR */
        .home-calculator .calculator{
            position: relative;
            min-height: 600px;
        }
        .home-calculator .calculator .box{
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background-color: var(--white-color);
            padding: 50px 110px;
            box-shadow: 0px 3px 6px #00000029;
        }
        .home-calculator .calculator .box.first-box{
            z-index: 3;
            height: 680px;
        }
        .home-calculator .calculator .box.first-box #first_box_response_output{
            width: 100%;
            text-align: center;
            padding-top: 10px;
            color: #990000;
        }
        .home-calculator .calculator .box.second-box{
            height: 680px;
        }
        .home-calculator .calculator .box.second-box .wpcf7-response-output{
            margin-top: 10px;
            text-align: center;
            border: 1px solid #DDBC60;
        }
        .home-calculator .calculator .box{
            z-index: 2;
            transform: scale(1);
            transition: all .5s;
        }
        .home-calculator .calculator .box.hidden{
            transform: scale(0);
        }
        .home-calculator .calculator .box.third-box{
            z-index: 1;
        }
        .home-calculator .calculator .box.hidden{
            opacity: 0;
            transition: all .5s;
            z-index: 0;
        }
        .home-calculator .calculator .heading{
            padding-bottom: 70px;
        }
        .home-calculator .calculator .heading h4{
            font-size: 22px;
            color: #1C1C1C;
            font-weight: 500;
        }
        .home-calculator .calculator .heading h4 a{
            padding: 5px 15px;
            margin: 0 2px;
            background: var(--blue-color);
            vertical-align: middle;
            color: #fff;
            border-radius: 80px;
            text-align: center;
            line-height: 1.85;
            cursor: pointer;
        }
        .home-calculator .calculator .heading h5{
            font-size: 16px;
            color: #616161;
            font-weight: 400;
        }
        .home-calculator .calculator .box h6{
            font-size: 16px;
            color: #616161;
            font-weight: 400;
            padding-top: 10px;
        }
        .home-calculator .calculator .box #size_change_text{
            font-size: 13px;
            /* background-color: #990000; */
            color: #990000;
        }
        .home-calculator .calculator .box #kw_input,
        .home-calculator .calculator .box #output,
        .home-calculator .calculator .box #sys_size_input{
            /* border: 0; */
            width: 100%;
            font-size: 40px;
            color: var(--blue-color);
            font-weight: 500;
            text-align: center;
            position: relative;
            z-index: 1;
            background-color: transparent;
            border: 1.5px solid #ccc;
        }
        .home-calculator .calculator .box #kw_input:focus,
        .home-calculator .calculator .box #output:focus,
        .home-calculator .calculator .box #sys_size_input{
            outline: 0;
        }
        /* .home-calculator .calculator .box #output{
            margin-top: 40px;
        } */
        .home-calculator .calculator .next_btn{
            padding: 15px 95px;
            margin-top: 20px !important;
            color: var(--white-color);
            background-color: var(--blue-color);
            border: 0;
            outline: 0;
            transition: all .5s;
        }
        .home-calculator .calculator .next_btn:hover{
            background-color: #006e99;
            transition: all .5s;
        }
        .home-calculator .three-inputs-wrapper{
            border: 1px solid #ccc;
            border-radius: 4px;
            height: 50px;
        }
        .home-calculator .three-inputs-wrapper .form-group {
            width: 33.33%;
            position: relative;
        }
        .home-calculator .three-inputs-wrapper .form-group:nth-child(2),
        .home-calculator .three-inputs-wrapper .form-group:nth-child(3){
            margin-top: -13px;
        }
        .home-calculator .form-group .form-label {
            position: absolute;
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            opacity: 1;
            transition: all .5s;
            top: 29px;
            font-weight: 400;
            line-height: 1.5;
            color: #4a4a4a;
            font-size: 16px;

        }
        .home-calculator .form-group.focused .form-label {
            opacity: 0;
            transition: all .5s;
        }
        .home-calculator .three-inputs-wrapper .form-group input,
        .home-calculator .three-inputs-wrapper .form-group select{
            width: 100%;
            height: 50px;
            border: 0;
            background-color: transparent;
        }
        .home-calculator .three-inputs-wrapper .form-group input{
            margin-top: -20px;
        }
        .home-calculator .three-inputs-wrapper .form-group select{
            width: 80px;
            padding-left: 20px;
            font-weight: 400;
            line-height: 1.5;
            color: #4a4a4a;
            font-size: 16px;
        }
        .home-calculator .three-inputs-wrapper .form-group input:focus,
        .home-calculator .three-inputs-wrapper .form-group select:focus{
            outline: 0;
        }
        .home-calculator .single{
            padding-top: 20px;
        }
        .home-calculator .first_single{
            margin-top: -52px;
        }
        .home-calculator .single .form-group{
            position: relative;
        }
        .home-calculator .single .form-group input{
            background-color: transparent;
            width: 100%;
            height: 50px;
            font-weight: 400;
            line-height: 1.5;
            color: #4a4a4a;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 4px;
            padding-left: 25px;
        }
        .home-calculator .single .form-group input:focus{
            outline: 0;
        }
        .home-calculator .single .form-group .form-label{
            top: 35px;
            left: 20px;
        }
        .home-calculator .reach{
            margin-top: 50px;
        }
        .home-calculator .iam{
            margin-bottom: -10px;
        }
        .home-calculator .second-box .btn-submit{
            background-color: transparent;
            border: 1px solid var(--blue-color);
            color: var(--blue-color);
            transition: all 0.5s;
            padding: 12px 70px;
            border-radius: 25px;
            margin-top: 20px;
        }
        .home-calculator .second-box .btn-submit:hover{
            background-color: var(--blue-color);
            color: var(--white-color);
            transition: all 0.5s;
        }
        .home-calculator #hidden_kws,
        .home-calculator #hidden_amt{
            display: none;
        }
        .home-calculator .input-box{
            position: relative;
        }
        .home-calculator .input-box label{
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            font-size: 40px;
            font-weight: 500;
            color: #616161;
        }
        .home-calculator .input-box label.txt-kws{
            justify-content: flex-end;
            padding-right: 30px;
        }
        .home-calculator .input-box label.txt-rs{
            justify-content: flex-start;
            padding-left: 30px;
        }
        .home-calculator .input-box-second{
            margin-top: 40px;
        }
    /* CALCULATOR */
    /* BANNER */
        .carousel-control-next{
            right: 0;
            justify-content: flex-end;
            padding-right: 30px;
            display: none;
        } 
        .carousel-control-prev{
            left: 0;
            justify-content: flex-start;
            padding-left: 30px;
            display: none;
        }
        .home-banner{
            margin-top: 146px;
        }
        .home-banner .carousel-item{
            height: 95vh;
            position: relative;
        }
        .home-banner .carousel-item::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-repeat: no-repeat;
            background-color: #000;
            opacity: .3;
        }
        .home-banner .carousel-item .img{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
        .home-banner .carousel-item .content-box{
            position: relative;
            z-index: 1;
            padding-bottom: 160px;
            width: 85%;
            margin: auto;
        }
        .home-banner .carousel-item .content-box h6{
            text-transform: uppercase;
            color: var(--white-color);
            font-size: 16px;
            letter-spacing: 0.8px;
            padding-bottom: 25px;
        }
        .home-banner .carousel-item .content-box h5{
            color: var(--white-color);
            font-size: 75px;
            line-height: 80px;
        }
        .home-banner .carousel-control-next-icon, 
        .home-banner .carousel-control-prev-icon {
            width: 60px;
            height: 60px;
            background-repeat: no-repeat;
            background-position: 50%;
            background-size: 50%;
            border-radius: 50%;
            border: 2px solid #fff;
            display: none;
        }
        .home-banner .carousel-item #play-pause{
            width: 50px;
            height: 50px;
            background-repeat: no-repeat;
            position: absolute;
            z-index: 1000000;
            right: 7%;
            background-size: 70% 70%;
            background-position: center;
            bottom: 100px;
            background-color: var(--white-color);
            display: flex;
            border-radius: 50%;
            align-items: center;
            cursor: pointer;
        }
        .home-banner .carousel-item #play-pause::after{
            content: '';
            width: 100%;
            height: 3px;
            background-color: var(--black-color);
            transform: rotate(-45deg);
        }
        .home-banner .carousel-item #play-pause.pause::after{
            display: none;
        }
    /* BANNER */
    /* SOLUTIONS */
        .home-solutions .small-box{
            width: 50%;
            height: 600px;
            padding-top: 16px;
        }
        .home-solutions .small-box:first-child{
            padding-right: 8px;
        }
        .home-solutions .small-box:last-child{
            padding-left: 8px;
        }
        .home-solutions .small-box .inner-box{
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .home-solutions .small-box .inner-box::after{
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--black-color);
            opacity: 0.4;
        }
        .home-solutions .small-box img{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            object-fit: cover;
            transition: all 0.5s;
        }
        .home-solutions .small-box:hover img{
            transform: scale(1.1);
            transition: all 0.5s;
        }
        .home-solutions .small-box .content-box{
            position: relative;
            padding: 70px;
            z-index: 1;
        }
        .home-solutions .small-box .content-box h6{
            font-size: 24px;
            text-transform: uppercase;
            font-weight: 400;
            padding-top: 10px;
        }
        .home-solutions .small-box .btn-box{
            padding-top: 60px;
            gap: 20px;
            justify-content: center;
        }

        .home-solutions .single-solution{
            width: 100%;
            padding: 16px 0 0 0 !important;
        }
        .home-solutions .single-solution:last-child{
            padding-bottom: 16px !important;
        }
        .home-solutions .single-solution img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    /* SOLUTIONS */
    /* ABOUT */
        .home-about{
            background-repeat: no-repeat;
            object-fit: cover;
            background-size: auto 100%;
        }
        .home-about ul{
            padding-bottom: 60px;
        }
        .home-about ul li{
            gap: 20px;
            padding-bottom: 25px;
        }
    /* ABOUT */
    /* COUNT */
        .home-count-section{
            background-color: var(--black-color);
        }
        .home-count-section .count-box{
            width: 25%;
            position: relative;
            padding-right: 20px;
            height: 210px;
            justify-content: center;
        }
        .home-count-section .count-box h5{
            font-size: 87px;
            font-weight: bold;
        }
        .home-count-section .count-box h6{
            font-size: 30px;
            font-weight: 500;
            line-height: 37px;
            padding-left: 30px;
        }
        .home-count-section .count-box .watermark{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            padding-right: 20px;
            font-size: 170px;
            font-weight: 800;
            color: black;
            -webkit-text-stroke: .5px var(--white-color);
            -webkit-text-fill-color: transparent;
            opacity: 0.3;
        }
    /* COUNT */
    /* SELLING POINTS */
        .home-selling-points{
            background-repeat: no-repeat;
            object-fit: contain;
            background-size: 100% 100%;
        }
        .home-selling-points .left,
        .home-selling-points .right{
            width: 37.5%;
        }
        .home-selling-points .middle{
            width: 25%;
        }
        .home-selling-points .box{
            padding: 18px 0;
        }
        .home-selling-points .left .box::after,
        .home-selling-points .right .box::before{
            content: '';
            flex-grow: 1;
            height: 16px;
            background-repeat: no-repeat;
            background-position: right;
            min-width: 88px;
        }
        .home-selling-points .right .box::before{
            transform: rotate(180deg);
        }
        .home-selling-points .box .rectangle{
            padding: 17px 30px;
            background-color: var(--white-color);
            border-radius: 13px;
            border: 1px solid var(--blue-color);
        }
        .home-selling-points .box .rectangle .icon-box{
            width: max-content;
        }
        .home-selling-points .box .rectangle .icon-box img{
            width: 74px;
            height: 74px;
            object-fit: contain;
        }
        .home-selling-points .box .rectangle .content{
            flex-grow: 1;
            padding-left: 25px;
        }
        .home-selling-points .box .rectangle h6{
            font-size: 24px;
            padding-bottom: 10px;
            padding-top: 20px;
        }
        .home-selling-points .mobile{
            display: none;
        }
    /* SELLING POINTS */
    /* VIDEO */
        .home-video .video-box{
            height: 600px;
            position: relative;
        }
        .home-video .video-box .bg-img{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            object-fit: cover;
            height: 100%;
        }
        .home-video .video-box .btn-box {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .home-video .video-box .btn-box .play-btn {
            cursor: pointer;
        }
        .home-video .video-box iframe {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            display: none;
        }
    /* VIDEO */
    /* SUSTAINABILITY */
        .home-sustainability{
            background-repeat: no-repeat;
            background-position: right;
            background-size: cover;
        }
    /* SUSTAINABILITY */
    /* CALCULATOR */
        .home-calculator{
            background-color: #EFFBFF;
        }
        .home-calculator .left{
            padding-right: 130px;
        }
    /* CALCULATOR */
    /* AWARDS */
        .home-awards{
            background-color: #E0E0E080;
        }
        .home-awards .box{
            padding: 0px 45px;
        }
        .home-awards .awards-slider{
            position: relative;
            margin: 0 -45px;
        }
         .home-awards .awards-slider .rectangle{
            background-color: var(--white-color);
            border-radius: 10px;
            overflow: hidden;
            height: auto;
         }
         .home-awards .awards-slider img{
            transition: all .5s;
         }
         .home-awards .awards-slider .rectangle:hover img{
            transform: scale(1.1);
            transition: all .5s;
         }
        .home-awards .awards-slider .slick-prev,
        .home-awards .awards-slider .slick-next,
        .solar-solutions-wrapper .slick-slider .slick-prev,
        .solar-solutions-wrapper .slick-slider .slick-next{
            position: absolute;
            top: 43%;
            width: 40px;
            height: 40px;
            padding: 0;
            color: transparent;
            border: none;
            border-radius: 50%;
            background-color: var(--white-color);
            border: 1px solid var(--black-color);
            background-repeat: no-repeat;
            background-position: center;
            transition: all 0.5s;
            z-index: 100;
        }
        .home-awards .awards-slider .slick-prev:hover,
        .home-awards .awards-slider .slick-next:hover,
        .solar-solutions-wrapper .slick-slider .slick-prev:hover,
        .solar-solutions-wrapper .slick-slider .slick-next:hover{
            background-color: var(--black-color);
            border: 1px solid var(--black-color);
            transition: all 0.5s;
        }
        .home-awards .awards-slider .slick-prev{
            left: -45px;
        }
        .home-awards .awards-slider .slick-next{
            right: -45px;
        }
    /* AWARDS */
/* HOME */

/* PRODUCTS */
        .products-products .box{
            padding: 20px;
            width: 33.33%;
            min-height: 100%;
        }
        .products-products .box .rectangle{
            padding: 60px 50px;
            background-color: var(--white-color);
            text-align: center;
            min-height: 100%;
        }
        .products-products .box .rectangle .img-box{
            height: 340px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .products-products .box .rectangle img{
            max-width: 100%;
            max-height: 340px;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.5s;
        }
        .products-products .box:hover img{
            transform: scale(1.1);
            transition: all 0.5s;
        }
        .products-products .box .rectangle h5{
            font-size: 28px;
            line-height: 41px;
            word-break: break-all;
        }
/* PRODUCTS */
/* SOLAR SOLUTIONS */
        .solar-solutions-wrapper h5{
            font-size: 28px;
            font-weight: 500;
        }
        .solar-solutions-wrapper h6{
            font-size: 24px;
            font-weight: 500;
        }
        .solar-solutions-wrapper .solar-solutions-slider{
            margin: 0 -8px;
            padding-bottom: 0 !important;
            position: relative;
        }
        .solar-solutions-wrapper .solar-solutions-slider .box{
            padding: 8px;
        }
        .solar-solutions-wrapper .solar-solutions-slider .rectangle{
            padding: 50px 60px;
            background-color: var(--white-color);
            border-radius: 0px 0px 0px 10px;
        }
        .solar-solutions-wrapper .solar-solutions-slider .left{
            width: 40%;
            height: 380px;
            overflow: hidden;
        }
        .solar-solutions-wrapper .solar-solutions-slider .left img{
            object-fit: contain;
            transition: all 0.5s;
        }
        .solar-solutions-wrapper .solar-solutions-slider .box:hover img{
            transform: scale(1.1);
            transition: all 0.5s;
        }
        .solar-solutions-wrapper .solar-solutions-slider .right{
            width: 60%;
            padding-left: 30px;
        }
        .solar-solutions-wrapper .slick-slider .slick-prev{
            left: -80px;
        }
        .solar-solutions-wrapper .slick-slider .slick-next{
            right: -80px;
        }


        .solar-solutions-wrapper .projects-heading{
            font-weight: 400;
        }
        .solar-solutions-wrapper .projects-slider{
            position: relative;
            margin: 0 -15px;
        }
        .solar-solutions-wrapper .projects-slider .box{
            padding: 0 15px;
        }
        .solar-solutions-wrapper .projects-slider .rectangle{
            overflow: hidden;
        }
        .solar-solutions-wrapper .projects-slider img{
            height: 365px;
            width: 100%;
            object-fit: cover;
             transition: all 0.5s;
        }
        .solar-solutions-wrapper .projects-slider .box:hover img{
            transform: scale(1.1);
             transition: all 0.5s;
        }
        .vbox-child{
            width: 60%;
        }
        .vbox-child img{
            width: 100%;
        }
        .vbox-next, 
        .vbox-prev{
            width: 50px !important;
            height: 50px !important;
            border-radius: 50%;
            transition: all 0.2s;
        }
        .vbox-next:hover, 
        .vbox-prev:hover{
            background-color: var(--white-color) !important;
            transition: all 0.2s;
        }
        .vbox-next:hover span, 
        .vbox-prev:hover span{
            filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(7437%) hue-rotate(249deg) brightness(80%) contrast(97%);
            border: none !important;
            transition: all 0.2s;
        }
        .vbox-prev{
            left: 17% !important;
        }
        .vbox-next{
            right: 18% !important;
        }
        /* .vbox-next span,
        .vbox-prev span{
            display: none !important;
        } */
        .vbox-next span, .vbox-prev span {
            width: 48px !important;
            height: 48px !important;
            border: none !important;
            text-indent: unset !important;
            position: absolute !important;
            top: 1px !important;
            left: 1px !important;
            right: 1px !important;
            bottom: 1px !important;
            background-repeat: no-repeat !important;
            transform:rotate(0) !important;
            color: transparent;
            background-position: center;
            border-radius: 50%;
            border: 1px solid var(--white-color) !important;
            transition: all 0.2s;
        }
        
/* SOLAR SOLUTIONS */
/* ABOUT US */
    /* ABOUT */
        .about-about{
            position: relative;
        }
        .about-about .bg-img{
            position: absolute;
            object-fit: cover;
        }
        .about-about::after{
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--black-color);
            opacity: .5;
        }
        .about-about .max-wrap,
        .about-about .middle-wrap{
            position: relative;
            z-index: 1;
        }
    /* ABOUT */
    /* VISSION MISSION */
        .vision-mission .box{
            width: 50%;
            padding: 18px 0;
        }
        .vision-mission .box:first-child{
            padding-right: 9px;
        }
        .vision-mission .box:last-child{
            padding-left: 9px;
        }
        .vision-mission .box .rectangle{
            background-color: var(--blue-color);
            padding: 80px 130px 80px 100px;
        }
        .vision-mission .box .rectangle .left .img-box{
            width: 150px;
        }
        .vision-mission .box .rectangle .right{
            padding-left: 30px;
            border-left: 2px solid rgba(255, 255, 255, .5);
        }
    /* VISSION MISSION */
    /* MILESTONES */
        .milestones .left{
            width: 55%;
            background-color: var(--black-color);
            padding: 110px;
        }
        .milestones .right{
            width: 45%;
        }
        .milestones .right img{
            object-fit: cover;
        }
        .milestones h6{
            font-size: 30px;
            font-weight: 500;
        }
        .milestones .slider-nav .slick-track{
            padding-bottom: 20px;
        }
        .milestones .slider-nav .year{
            font-size: 24px;
            opacity: .5;
        }
        .milestones .slider-nav .box{
            padding-bottom: 40px;
            border-bottom: 2px solid #616161;
            position: relative;
        }
        .milestones .slider-nav .box::after{
            position: absolute;
            content: '';
            width: 22px;
            height: 22px;
            bottom: -12px;
            background-color: #616161;
            border-radius: 50%;
            left: 44%;
        }
        .milestones .slider-nav .slick-current.box::after{
            background-color: var(--blue-color);
        }
        .milestones .slider-nav .slick-current.box .year{
            color: var(--blue-color);
            opacity: 1;
        }
        .milestones .slider-nav .slick-prev{
            margin-right: 60px;
        }
        .milestones .slider-nav .slick-next{
            margin-left: 60px;
        }
        .milestones .slider-nav .slick-prev,
        .milestones .slider-nav .slick-next{
            padding: 0;
            color: transparent;
            min-width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 0;
            background-position: center;
            background-repeat: no-repeat;
            background-color: var(--white-color);
        }
        .milestones .slider-for .paragraph{
            margin-left: 100px;
            margin-right: 100px;
            opacity: .5;
        }
    /* MILESTONES */
    /* FOUNDERS MESSAGE */
        .founders-message {
            position: relative;
        }
        .founders-message::after{
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--black-color);
            opacity: 0.73;
            z-index: 2;
        }
        .founders-message .bg-img {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            object-fit: cover;
            z-index: 1;
        }
        .founders-message .middle-wrap{
            position: relative;
            z-index: 3;
        }
        .founders-message .img-box{
            width: 28%;
        }
        .founders-message .content-box{
            width: 72%;
            padding-left: 60px;
        }
        .founders-message .founder-name{
            color: var(--blue-color);
            font-size: 16px;
            font-weight: 500;
        }
    /* FOUNDERS MESSAGE */
    /* BOARD OF DIRECTORS */
        .board-of-dir .box{
            width: 25%;
            padding: 45px 30px;
        }
        .board-of-dir .box .img-box{
            position: relative;
            z-index: 100;
        }
        .board-of-dir .box .img-box::after{
            position: absolute;
            content: '';
            top: -30px;
            left: 30px;
            right: -30px;
            bottom: 30px;
            border: 2px solid #D1D1D1;
            z-index: -1;
        }
        .board-of-dir .box .img-box-inner{
            overflow: hidden;
        }
        .board-of-dir .box img{
            height: 300px;
            object-fit: cover;
            object-position: top;
            transition: all 0.5s;
            filter: grayscale(100%);
        }
        .board-of-dir .box:hover img{
            transform: scale(1.1);
            transition: all 0.5s;
            filter: unset;
        }
        .board-of-dir .box .content-box{
            padding-top: 25px;
        }
        .board-of-dir .box .content-box h6{
            font-size: 22px;
        }
        .board-of-dir .box .content-box .paragraph{
            font-weight: 500;
        }
    /* BOARD OF DIRECTORS */
/* ABOUT US */

/* CONTACT US */
    .contact-contact .box{
        width: 33.33%;
        padding: 40px 30px;
    }
    .contact-contact .box:nth-child(2){
        border-left: 2px solid var(--white-color);
        border-right: 2px solid var(--white-color);
    }
    .contact-contact .box:nth-child(2) .paragraph br{
        display: none;
    }
    .contact-contact .box .img-box{
        height: 65px;
        margin-bottom: 20px;
    }
    .contact-contact .box span{
        white-space: nowrap;
    }
    .contact-contact .box a{
        transition: all .5s;
    }
    .contact-contact .box a:hover{
        color: var(--white-color);
        text-decoration: underline;
        transition: all .5s;
    }

    .contact-contact-form .w-50.left{
        padding-right: 8px;
    }
    .contact-contact-form .w-50.right{
        padding-left: 8px;
    }
    .contact-contact-form .form-group{
        position: relative;
        margin-top: -10px;
    }
    .contact-contact-form .form-label{
        position: absolute;
        top: 48px;
        z-index: 1;
        left: 30px;
        font-size: 16px;
        color: var(--black-color);
        font-weight: 500;
        transition: all .3s;
    }
    .contact-contact-form input{
        width: 100%;
        height: 70px;
        border: 1px solid #E0E0E0;
        background-color: var(--white-color);
        transition: all .5s;
        padding-left: 30px;
        font-size: 16px;
        color: var(--black-color);
        font-weight: 500;
    }
    .contact-contact-form textarea{
        width: 100%;
        border: 1px solid #E0E0E0;
        background-color: var(--white-color);
        padding-left: 30px;
        padding-top: 25px;
        transition: all .5s;
        font-size: 16px;
        color: var(--black-color);
        font-weight: 500;
    }
    .contact-contact-form input:focus,
    .contact-contact-form textarea:focus{
        border: 1px solid #1C1C1C;
        outline: 0;
        transition: all .5s;
    }
    .contact-contact-form .btn-submit{
        background-color: var(--blue-color);
        border: 0;
        color: var(--white-color);
        margin-top: 35px;
        font-size: 16px;
        height: auto;
        padding: 25px 0;
    }
    .contact-contact-form .btn-submit:focus{
        outline: 0;
        border: 0;
    }

    .contact-contact-form ul{
        list-style: none;
        gap: 35px;
    }
    .contact-contact-form ul .hover{
        display: none;
        transition: all .5s;
    }
    .contact-contact-form ul li a:hover .hover{
        display: block;
        transition: all .5s;
    }
    .contact-contact-form ul li a:hover .normal{
        display: none;
        transition: all .5s;
    }
    .contact-contact-form .form-group.focused label{
        top: 30px;
        font-size: 13px;
        transition: all .3s;
    }
    .contact-contact-form .wpcf7 form.invalid .wpcf7-response-output, 
    .contact-contact-form .wpcf7 form.unaccepted .wpcf7-response-output, 
    .contact-contact-form .wpcf7 form.payment-required .wpcf7-response-output {
        text-align: center;
        border: 1px solid var(--blue-color);
        color: var(--black-color);
    }
    .map{
        height: 460px;
    }
    .map iframe{
        width: 100%;
        height: 100%;
    }
/* CONTACT US */

/* FOOTER */
    #footer{
        background-color: var(--black-color);
        position: relative;
    }
    #footer::before,
    #footer::after{
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        background-repeat: no-repeat;
    }
    #footer::before{
        right: 50%;
        left: 0;
        background-position: left bottom;
    }
    #footer::after{
        left: 50%;
        right: 0;
        background-position: right bottom;
    }
    #footer .footer-wrapper{
        position: relative;
        z-index: 1;
    }
    #footer .box{
        width: 20%;
    }
    #footer .box:nth-child(4){
        padding-right: 20px;
    }
    #footer .box p{
        font-size: 16px;
        text-transform: uppercase;
    }
    #footer .box p span{
        white-space: nowrap;
    }
    #footer .box li.menu-item-has-children.dropdown{
        display: none;
    }
    #footer h5{
        font-size: 22px;
        padding-bottom: 20px;
        opacity: .5;
        font-weight: 400;
    }
    #footer .contact-box{
        padding-bottom: 25px;
        gap: 15px;
        opacity: .5;
    }
    #footer .contact-box img{
        margin-top: 5px;
    }
    #footer .contact-box:last-child img{
        margin-top: 11px;
    }
    #footer .contact-box a:hover{
        color: var(--white-color);
    }
    #footer .social-icons{
        list-style: none;
        gap: 20px;
    }
    #footer .navbar-nav .nav-link{
        font-size: 16px;
        color: var(--white-color);
        opacity: .5;
        padding: 5px 0;
        text-transform: uppercase;
    }
    #footer .copyright-wrapper{
        position: relative;
        z-index: 1;
    }
    #footer .copyright-wrapper-mobile{
        display: none !important;
    }
    #footer .text{
        font-size: 12px;
        padding-right: 50px;
        opacity: .5;
        font-weight: 300;
    }
    #footer .text a:hover{
        color: var(--white-color);
    }
    #footer .products-list{
        list-style: none;
    }
    #footer .products-list li a{
        color: var(--white-color);
        opacity: .5;
        padding: 5px 0;
        display: flex;
    }
    #footer .products-list li a:hover{
        color: var(--white-color);
        font-size: 16px;
    }
/* FOOTER */

/* MEDIA QUERIES */
    @media only screen and (max-width: 1600px) {
        .home-calculator .calculator .box #kw_input, .home-calculator .calculator .box #output{
            font-size: 35px;
        }
        .home-calculator .input-box label{
            font-size: 35px;
        }
        .home-calculator .calculator .box.first-box {
            height: 680px;
        }
        /* COMMON */
            .extra-small-wrap{
                width: 50%;
                margin: auto;
            }
            .min-wrap{
                width: 70%;
                margin: auto;
            }
            .middle-wrap{
                width: 80%;
                margin: auto;
            }
            .max-wrap{
                width: 90%;
                margin: auto;
            }
            .common-banner img {
                height: 500px;
            }
        /* COMMON */
        /* NAV */
            .navbar-expand-lg .navbar-nav .nav-link {
                padding: 0px 35px;
            }
        /* NAV */
        /* HOME */
            .home-banner .carousel-item {
                height: 85vh;
            }
            .home-solutions .small-box {
                height: 550px;
            }
            .home-calculator .left {
                padding-right: 70px;
            }
            .home-awards .awards-slider .slick-prev {
                left: -12px;
            }
            .home-awards .awards-slider .slick-next {
                right: -12px;
            }
            /* .home-awards .awards-slider .rectangle {
                height: 250px;
            } */
        /* HOME */
        /* ABOUT US */
            .vision-mission .box .rectangle {
                padding: 70px 100px 70px 70px;
            }
            .board-of-dir .box img {
                height: 265px;
            }
            
        /* ABOUT US */
        /* PRODUCTS */
            .products-products .box {
                padding: 10px;
            }
            .products-products .box .rectangle {
                padding: 50px 40px;
            }
        /* PRODUCTS */
        /* SOLAR SOLUTIONS */
            .solar-solutions-wrapper .slick-slider .slick-prev {
                left: -45px;
            }
            .solar-solutions-wrapper .slick-slider .slick-next {
                right: -45px;
            }
        /* SOLAR SOLUTIONS */
        /* CONTACT */
            .contact-contact .min-wrap {
                width: 75%;
            }
        /* CONTACT */

        /* FOOTER */
            #footer .max-wrap {
                width: 95%;
            }
            #footer .box:nth-child(1) {
                width: 16%;
            }
            #footer .box {
                width: 21%;
            }
        /* FOOTER */
    }
    @media only screen and (max-width: 1400px) {
        .home-calculator .calculator {
            min-height: 640px;
        }
        .home-calculator .calculator .heading h4 {
            font-size: 18px;
        }
        .home-calculator .calculator .heading h5 {
            font-size: 14px;
        }
        /* .home-banner .carousel-control-next-icon, .home-banner .carousel-control-prev-icon {
            width: 40px;
            height: 40px;
        } */
        /* COMMON */
            .section-heading {
                font-size: 30px;
            }
            .btn--white-outline {
                font-size: 14px;
                padding: 10px 60px;
            }
            .paragraph {
                font-size: 14px;
                line-height: 30px;
            }
            .special-para {
                font-size: 16px;
                line-height: 24px;
            }
            
            .padd-top--30{
                padding-top: 20px;
            }
            .padd-bot--30{
                padding-bottom: 20px;
            }
            .padd-top--50{
                padding-top: 40px;
            }
            .padd-bot--50{
                padding-bottom: 40px;
            }
        
            .padd-top--65{
                padding-top: 50px;
            }
            .padd-bot--65{
                padding-bottom: 50px;
            }
        
            .padd-top--90{
                padding-top: 60px;
            }
            .padd-bot--90{
                padding-bottom: 60px;
            }
        
            .padd-top--100{
                padding-top: 70px;
            }
            .padd-bot--100{
                padding-bottom: 70px;
            }
        
            .padd-top--120{
                padding-top: 80px;
            }
            .padd-bot--120{
                padding-bottom: 80px;
            }
        
            .padd-top--140{
                padding-top: 100px;
            }
            .padd-bot--140{
                padding-bottom: 100px;
            }

            .common-banner {
                margin-top: 93px;
            }
            .common-banner img {
                height: 400px;
            }
            .breadcrumb {
                font-size: 14px;
            }

            .btn--blue-outline {
                font-size: 14px;
                padding: 10px 60px;
            }
        /* COMMON */
        /* NAV */
            .navbar-expand-lg .navbar-brand img{
                width: 140px;
                height: auto;
            }
            .navbar-expand-lg .navbar-nav .nav-link {
                padding: 0px 30px;
                font-size: 14px;
            }
            .header .contact-info a {
                font-size: 16px;
            }
            .header .contact-info a img {
                margin-right: 10px;
                width: 25px;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu li a {
                font-size: 13px;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu {
                margin-top: 46px;
            }
        /* NAV */
        /* HOME */
            .home-banner {
                margin-top: 131px;
            }
            .common-banner{
                margin-top: 131px;
            }
            .home-banner .carousel-item {
                height: 75vh;
            }
            .home-banner .carousel-item .content-box {
                padding-bottom: 100px;
            }
            .home-banner .carousel-item .content-box h5 {
                font-size: 65px;
                line-height: 69px;
            }
            .home-banner .carousel-item .content-box h6 {
                font-size: 15px;
            }
            .home-solutions .small-box {
                height: 450px;
            }
            .home-solutions .small-box .content-box {
                padding: 50px;
            }
            .home-solutions .small-box .content-box h6 {
                font-size: 20px;
            }
            .home-about .col-lg-7{
                width: 50%;
            }
            .home-about .col-lg-5{
                width: 50%;
            }
            .home-about ul {
                padding-bottom: 30px;
            }
            .home-about ul li {
                padding-bottom: 20px;
            }
            .home-count-section .count-box .watermark {
                font-size: 130px;
            }
            .home-count-section .count-box h5 {
                font-size: 50px;
            }
            .home-count-section .count-box h6 {
                font-size: 20px;
                line-height: 25px;
            }
            .home-selling-points .box .rectangle {
                padding: 15px 20px;
            }
            .home-selling-points .left .box::after, 
            .home-selling-points .right .box::before {
                min-width: 65px;
            }
            .home-selling-points .box .rectangle .icon-box img {
                width: 50px;
                height: 50px;
            }
            .home-selling-points .box .rectangle .content {
                padding-left: 20px;
            }
            .home-selling-points .box .rectangle h6 {
                font-size: 20px;
                padding-top: 15px;
            }
            .home-video .video-box {
                height: 450px;
            }
            .home-video .video-box .btn-box .play-btn img{
                width: 120px;
            }
            .home-calculator .left {
                padding-right: 50px;
            }
            .lead-block .monthly-amt {
                font-size: 55px;
                line-height: 70px;
            }
            .lead-block .lead-content-block-wrapper .lead-content-block {
                padding: 30px 50px 25px 50px !important;
            }
            .home-awards .box {
                padding: 0px 30px;
            }
            .home-awards .max-wrap {
                width: 85%;
            }
        /* HOME */
        /* ABOUT */
            .vision-mission .box .rectangle {
                padding: 40px 65px 40px 40px;
            }
            .milestones h6 {
                font-size: 25px;
            }
            .milestones .slider-nav .year {
                font-size: 20px;
            }
            .milestones .slider-nav .box::after {
                width: 15px;
                height: 15px;
                bottom: -8px;
                left: 42%;
            }
            .milestones .slider-nav .slick-prev, .milestones .slider-nav .slick-next {
                min-width: 30px;
                height: 30px;
            }
            .milestones .slider-for .padd-top--65 {
                padding-top: 35px;
            }
            .milestones .left {
                padding: 60px;
            }
            .founders-message .founder-name {
                font-size: 14px;
            }
            .board-of-dir .box .content-box h6 {
                font-size: 18px;
            }
            .board-of-dir .box .content-box .paragraph {
                font-size: 13px;
                line-height: 28px;
            }
            .board-of-dir .box .img-box::after {
                top: -20px;
                left: 20px;
                right: -20px;
                bottom: 20px;
            }
        /* ABOUT */
        /* PRODUCTS INNER */
            .products-products .box .rectangle img {
                max-height: 250px;
            }
            .products-products .box .rectangle .img-box {
                height: 250px;
            }
            .products-products .box .rectangle {
                padding: 30px 20px;
            }
            .products-products .box .rectangle h5 {
                font-size: 22px;
                line-height: 35px;
                padding-bottom: 10px;
            }
        /* PRODUCTS INNER */

        /* SOLAR SOLUTIONS */
            .solar-solutions-wrapper .solar-solutions-slider .rectangle {
                padding: 20px 30px;
            }
            .home-awards .awards-slider .slick-prev, 
            .home-awards .awards-slider .slick-next, 
            .solar-solutions-wrapper .slick-slider .slick-prev, 
            .solar-solutions-wrapper .slick-slider .slick-next {
                top: 46%;
                width: 30px;
                height: 30px;
                background-size: 30%;
            }
            .solar-solutions-wrapper h6 {
                font-size: 20px;
            }
            .solar-solutions-wrapper h5 {
                font-size: 25px;
            }
            .solar-solutions-wrapper .slick-slider .slick-prev {
                left: -30px;
            }
            .solar-solutions-wrapper .slick-slider .slick-next {
                right: -30px;
            }
        /* SOLAR SOLUTIONS */
        /* CONTACT US */
            .contact-contact .box .img-box{
                height: 45px;
            }
            .contact-contact .box .img-box img{
                max-height: 40px;
                max-width: 65px;
            }
            .contact-contact-form .btn-submit {
                font-size: 14px;
                padding: 15px 0;
            }
            .contact-contact-form .form-label {
                font-size: 14px;
            }
            .contact-contact-form .form-group.focused label {
                font-size: 12px;
            }
            .contact-contact-form ul {
                gap: 20px;
            }
            .contact-contact-form ul img{
                width: 55px;
            }
            .map {
                height: 350px;
            }
        /* CONTACT US */
        /* FOOTER */
            #footer h5 {
                font-size: 18px;
            }
            #footer .navbar-nav .nav-link {
                font-size: 14px;
            }
            #footer .box p {
                font-size: 14px;
            }
            #footer .box:nth-child(1) {
                width: 14%;
            }
            #footer .box:nth-child(1) .rectangle{
                padding-right: 40px;
            }
            #footer .box:nth-child(1) .rectangle .logo{
                width: 100%;
            }
            #footer .box {
                width: 22.5%;
            }
            #footer .box:nth-child(2){
                width: 16%;
            }
            #footer::before {
                background-size: 80%;
            }
            #footer::after {
                background-size: 80%;
            }
        /* FOOTER */
    }
    @media only screen and (max-width: 1200px) {
        .wpcf7-not-valid-tip {
            font-size: 11px;
        }
        .home-calculator .calculator .box {
            padding: 20px 30px;
        }
        .home-calculator .calculator {
            min-height: 600px;
        }
        .home-calculator .calculator .box.second-box {
            height: 650px;
        }
        .home-calculator .calculator .box.first-box {
            height: 650px;
        }
        /* COMMON */
            .common-banner {
                margin-top: 86px;
            }
            .common-banner img {
                height: 300px;
            }
        /* COMMON */
        /* NAV */
            .navbar-expand-lg .navbar-brand img {
                width: 100px;
            }
            .navbar-expand-lg .navbar-nav .nav-link {
                padding: 0px 20px;
                font-size: 13px;
            }
            .header .contact-info a {
                font-size: 15px;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu {
                margin-top: 41px;
            }
        /* NAV */
        /* HOME */
            .home-banner {
                margin-top: 101px;
            }
            .common-banner{
                margin-top: 101px;
            }
            .home-banner .carousel-item {
                height: 60vh;
            }
            .home-solutions .small-box {
                height: 400px;
            }
            .home-selling-points .left .box::after, 
            .home-selling-points .right .box::before {
                min-width: 45px;
            }
            /* .home-awards .awards-slider .rectangle {
                height: 200px;
            } */
            .lead-block .lead-content-block-wrapper .lead-content-block .button-wrapper {
                margin-top: 0 !important;
            }
            .lead-block .lead-content-block-wrapper .lead-content-block {
                min-height: 526px !important;
                max-height: 526px !important;
            }
            .lead-block .lead-content-block-wrapper .lead-content-block h3.info {
                font-size: 18px !important;
            }
            .home-calculator .left {
                padding-right: 15px !important;
            }
        /* HOME */
        /* ABOUT */
            .board-of-dir .box img {
                height: 180px;
            }
        /* ABOUT */
        /* FOOTER */
            #footer .navbar-nav .nav-link {
                font-size: 13px;
            }
            #footer .box p {
                font-size: 13px;
            }
            #footer h5 {
                font-size: 17px;
            }
        /* FOOTER */
    }
    @media only screen and (max-width: 1024) {
        
    }
    @media only screen and (max-width: 991px) {
        .navbar-expand-lg .navbar-brand img {
            width: 150px;
            height: 81px;
        }
        .home-calculator .calculator {
            min-height: 570px;
        }
        .home-calculator .calculator .box.second-box {
            height: 593px;
        }
        .home-calculator .calculator .heading {
            padding-bottom: 20px;
        }
        .home-calculator .calculator .box.first-box {
            height: 480px;
        }
        .home-calculator .calculator .box #kw_input, .home-calculator .calculator .box #output {
            font-size: 35px;
        }
        .home-calculator .input-box label {
            font-size: 35px;
        }
        .home-banner .carousel-item #play-pause {
            bottom: 30px;
            width: 30px;
            height: 30px;
        }
        .home-banner .carousel-item #play-pause::after{
            height: 2px;
        }
        .carousel-control-next{
            padding-right: 0;
        } 
        .carousel-control-prev{
            padding-left: 0;
        }
     
        .carousel-control-prev {
            left: 35%;
        }
        .carousel-control-next {
            right: 35%;
        }
        .carousel-control-next, .carousel-control-prev {
            bottom: 20px;
            display: flex;
            align-items: flex-end;
        }
        .milestones .slider-nav .box::after {
            left: 45.5%;
        }
        .home-count-section .count-box .watermark{
            padding-right: 85px;
        }
        .home-count-section .count-box{
            justify-content: unset;
        }
        /* COMMON */
            .extra-small-wrap{
                width: 95%;
                margin: auto;
            }
            .min-wrap{
                width: 95%;
                margin: auto;
            }
            .middle-wrap{
                width: 95%;
                margin: auto;
            }
            .max-wrap{
                width: 95%;
                margin: auto;
            }
            .padd-bot--50 {
                padding-bottom: 20px;
            }
            .padd-top--65{
                padding-top: 50px;
            }
            .padd-bot--65{
                padding-bottom: 50px;
            }
        
            .padd-top--90{
                padding-top: 60px;
            }
            .padd-bot--90{
                padding-bottom: 60px;
            }
        
            .padd-top--100{
                padding-top: 40px;
            }
            .padd-bot--100{
                padding-bottom: 40px;
            }
        
            .padd-top--120{
                padding-top: 50px;
            }
            .padd-bot--120{
                padding-bottom: 50px;
            }
        
            .padd-top--140{
                padding-top: 70px;
            }
            .padd-bot--140{
                padding-bottom: 70px;
            }
            .section-heading {
                font-size: 25px;
            }
            .btn--white-outline {
                font-size: 13px;
                padding: 8px 40px;
            }
            .breadcrumb{
                justify-content: center;
            }
            .breadcrumb-sect.padd-bot--90{
                padding-bottom: 30px;
            }
        /* COMMON */
        /* NAV */
            .navbar-toggler{
                display: block !important;
            }
            .header{
                height: 112px;
            }
            #navbar_main{
                background-color: var(--black-color) !important;
                display: block;
            }
            .mobile-offcanvas {
                visibility: hidden;
                transform: translateX(-100%);
                border-radius: 0;
                display: block;
                position: fixed;
                top: 112px;
                left: 0;
                bottom: 0;
                height: 100%;
                z-index: 1200;
                width: 100%;
                overflow-y: scroll;
                overflow-x: hidden;
                transition: visibility .3s ease-in-out, transform .3s ease-in-out;
            }
            .mobile-offcanvas.show {
                visibility: visible;
                transform: translateX(0);
            }
            .header .contact-info {
                display: none !important;
            }
            .navbar-expand-lg .navbar-nav .nav-link {
                padding: 25px 0;
                font-size: 15px;
            }
            #navbar_main .mobile-menu-wrapper{
                height: 80%;
                overflow: auto;
            }
            #navbar_main .mobile-menu-wrapper .menu-main-menu-container{
                flex-grow: 1;
            }
            #navbar_main .contact-info a{
                color: var(--white-color);
                font-size: 20px;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu {
                margin: 0;
                text-align: center;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu li a{
                border: none;
                font-size: 15px;
            }
        /* NAV */
        /* HOME */
            .home-banner .carousel-item {
                height: 500px;
            }
            .home-banner .carousel-item .content-box h6 {
                font-size: 14px;
                text-align: center;
            }
            .home-banner .carousel-item .content-box h5 {
                font-size: 40px;
                line-height: 50px;
                text-align: center;
            }
            .home-solutions .small-box {
                width: 100%;
            }
            .home-solutions .small-box .content-box{
                justify-content: center;
                padding: 20px;
            }
            .home-solutions .small-box:first-child {
                padding-right: 0;
            }
            .home-solutions .small-box:last-child {
                padding-left: 0;
            }
            .home-about .col-lg-5 {
                width: 100%;
                text-align: center;
            }
            .home-about ul{
                width: max-content;
                margin: auto;
            }
            .home-about ul li {
                padding-bottom: 10px;
                width: max-content;
            }
            .home-solutions .small-box .content-box h6 {
                font-size: 18px;
            }
            .home-solutions .small-box .btn-box {
                padding-top: 30px;
            }
            .home-count-section .max-wrap{
                width: 85%;
            }
            .home-count-section .count-box {
                width: 50%;
                height: 165px;
            }
            .home-count-section .count-box .watermark {
                font-size: 100px;
            }
            .home-count-section .count-box h5 {
                font-size: 40px;
            }
            .home-count-section .count-box h6 {
                font-size: 18px;
                line-height: 25px;
            }
            .home-selling-points .mobile{
                display: block;
            }
            
            .home-selling-points .desktop{
                display: none;
            }
            .home-selling-points .box {
                padding: 0 10px;
            }
            .home-selling-points .box .rectangle {
                flex-direction: column;
                align-items: center;
                text-align: center;
                height: 320px;
                justify-content: center;
            }
            .home-selling-points .box .rectangle .content{
                flex-grow: unset;
                padding: 0;
            }
            .home-selling-points .slick-prev,
            .home-selling-points .slick-next{
                padding: 0;
                background-color: var(--white-color);
                border: 0;
                color: transparent;
                width: 30px;
                height: 30px;
                background-size: 30%;
                border-radius: 50%;
                background-repeat: no-repeat;
                background-position: center;
                border: 1px solid var(--black-color);
                transition: all 0.5s;
            }
            .home-selling-points .slick-prev:hover,
            .home-selling-points .slick-next:hover{
                background-color: var(--black-color);
                border: 1px solid var(--black-color);
                transition: all 0.5s;
            }
            .home-video .video-box {
                height: 275px;
            }
            .home-video .video-box .btn-box .play-btn img {
                width: 80px;
            }
            .home-sustainability {
                position: relative;
                padding-top: 500px;
                text-align: center;
            }
            .home-sustainability .mobile-bg{
                position: absolute;
                top: 0;
                height: 500px;
                left: 0;
                right: 0;
                background-size: cover;
                background-position: center;
            }
            .home-sustainability .section-heading{
                padding-top: 30px;
            }
            .home-sustainability .special-para,
            .home-sustainability .paragraph{
                color: var(--black-color);
            }
            .home-awards .max-wrap {
                width: 75%;
            }
            .home-awards .box {
                padding: 0px 10px;
            }
            /* .home-awards .awards-slider .rectangle {
                height: 250px;
            } */
            .home-awards .awards-slider .slick-prev {
                left: -37px;
            }
            .home-awards .awards-slider .slick-next {
                right: -37px;
            }
            .home-calculator .left {
                padding-right: 0 !important;
                text-align: center;
                padding-bottom: 30px !important;
            }
            .lead-block .monthly-amt {
                font-size: 50px !important;
                margin-top: 10px !important;
            }
            .lead-block .lead-content-block-wrapper .lead-content-block .button-wrapper {
                margin-top: 40px !important;
            }
        /* HOME */
        /* ABOUT */
            .about-about{
                text-align: center;
            }
            .about-about .bg-img{
                left: 0;
            }
            .about-about .padd-bot--90{
                padding-bottom: 30px;
            }
            .vision-mission .box {
                width: 100%;
            }
            .vision-mission .box:first-child {
                padding-right: 0;
                padding-bottom: 0;
            }
            .vision-mission .box:last-child {
                padding-left: 0;
            }
            .milestones-wrapper{
                flex-direction: column-reverse;
            }
            .milestones .left {
                width: 100%;
                padding: 30px;
            }
            .milestones .right {
                width: 100%;
            }
            .founders-message .content-box {
                width: 100%;
                padding-left: 0;
                text-align: center;
                padding-top: 30px;
            }
            .founders-message .message-wrapper{
                justify-content: center;
            }
            .founders-message .img-box {
                width: 40%;
            }
            .board-of-dir .box {
                width: 33.33%;
                padding: 35px 25px;
            }
            .board-of-dir .box img {
                height: 210px;
            }
        /* ABOUT */
        /* SINGLE PRODUCT */
            .products-products .box {
                padding: 8px;
                width: 50%;
                min-height: 100%;
            }
        /* SINGLE PRODUCT */
        /* SOLAR SOLUTIONS */
            .solar-solutions-wrapper .max-wrap{
                width: 85%;
            }
            .solar-solutions-wrapper .solar-solutions-slider .rectangle {
                padding: 10px 20px;
                justify-content: center;
            }
            .solar-solutions-wrapper .solar-solutions-slider .left{
                width: 70%;
                height: 260px;
            }
            .solar-solutions-wrapper .solar-solutions-slider .right {
                padding-left: 20px;
                width: 100%;
                text-align: center;
            }
        /* SOLAR SOLUTIONS */
        /* CONTACT */
            .contact-contact .padd-bot--90{
                padding-bottom: 30px;
            }
            .contact-contact .min-wrap {
                width: 95%;
            }
            .contact-contact .box {
                padding: 20px 15px;
            }
        /* CONTACT */

        /* FOOTER */
            #footer .footer-wrapper{
                justify-content: center;
            }
            #footer .box:nth-child(1),
            #footer .box:nth-child(2) {
                display: none;
            }
            #footer .box {
                width: 50%;
            }
            #footer .box:last-child{
                text-align: center;
                padding-top: 30px;
            }
            #footer .box:last-child .social-icons{
                justify-content: center;
            }
            #footer .box:nth-child(4) {
                padding-right: 0;
            }
        /* FOOTER */
    }
    @media only screen and (max-width: 600px) {
        .navbar-expand-lg .navbar-brand img {
            width: 120px;
            height: 81px;
        }
        .home-calculator .calculator .box.first-box {
            height: 430px;
        }
        .home-calculator .calculator .box.second-box .wpcf7-response-output {
            font-size: 11px;
            line-height: 11px;
        }
        .home-calculator .calculator .box.second-box {
            height: 530px;
        }
        .home-calculator .form-group:last-child .form-label{
            padding-left: 20px;
        }
        .home-calculator .form-group:last-child .form-input{
            padding-left: 20px;
        }
        .home-calculator .three-inputs-wrapper {
            height: 115px;
        }
        .home-calculator .three-inputs-wrapper .form-group {
            width: 50%;
        }
        .home-calculator .reach {
            margin-top: 9px;
            margin-bottom: 30px;
        }
        .home-calculator .calculator .heading {
            padding-bottom: 5px;
        }
        .home-calculator .single {
            padding-top: 0px;
        }
        .home-calculator .calculator .heading h4 {
            width: 80%;
            padding-right: 20px;
        }
        .home-calculator .calculator .heading h5 {
            width: 20%;
        }
        .home-calculator .second-box .btn-submit {
            padding: 8px 50px;
            margin-top: 5px;
        }
        .home-calculator .single .form-group input {
            height: 40px;
        }
        .home-calculator .single .form-group .form-label {
            top: 32px;
        }
        .home-calculator .calculator .box #kw_input, 
        .home-calculator .calculator .box #output,
        .home-calculator .calculator .box #sys_size_input{
            font-size: 25px;
        }
        .home-calculator .input-box label {
            font-size: 25px;
        }
        .home-calculator .calculator .heading h4 {
            font-size: 14px;
            padding-bottom: 5px;
        }
        /* COMMON */
            .section-heading {
                font-size: 20px;
            }
            .btn--white-outline {
                font-size: 13px;
                padding: 5px 25px;
            }
            .paragraph {
                font-size: 13px;
                line-height: 25px;
            }
            .special-para {
                font-size: 14px;
                line-height: 24px;
            }
            .breadcrumb {
                font-size: 13px;
            }
            .common-banner img {
                height: 145px;
            }
            .padd-top--65 {
                padding-top: 40px;
            }
            .breadcrumb-sect.padd-bot--90 {
                padding-bottom: 20px;
            }
            .btn--blue-outline {
                font-size: 13px;
                padding: 8px 50px;
            }
        /* COMMON */
        /* NAV */
            .hamburger .line {
                width: 40px;
                height: 3px;
            }
            #navbar_main .contact-info a {
                font-size: 16px;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu li a {
                font-size: 12px;
            }
            #hamburger-1.is-active .line:nth-child(1){
                -webkit-transform: translateY(13px);
                -ms-transform: translateY(13px);
                -o-transform: translateY(13px);
                transform: translateY(13px);
            }
        
            #hamburger-1.is-active .line:nth-child(3){
                -webkit-transform: translateY(-10px) rotate(90deg);
                -ms-transform: translateY(-10px) rotate(90deg);
                -o-transform: translateY(-10px) rotate(90deg);
                transform: translateY(-10px) rotate(90deg);
            }
        /* NAV */
        /* HOME */
            .home-banner .carousel-item {
                height: 300px;
            }
            .home-banner .carousel-item .content-box {
                width: 95%;
            }
            .home-banner .carousel-item .content-box h5 {
                font-size: 30px;
                line-height: 35px;
            }
            .home-banner .carousel-item .content-box h6 {
                font-size: 13px;
                padding-bottom: 15px;
            }
            .home-solutions .small-box .content-box h6 {
                font-size: 16px;
            }
            .home-solutions .small-box {
                height: 250px;
            }
            .home-solutions .small-box {
                padding-top: 10px;
            }
            .home-solutions .single-solution {
                padding: 10px 0 0 0 !important;
            }
            .home-about ul {
                width: unset;
            }
            .home-about ul li {
                width: unset;
                text-align: left;
            }
            .home-about ul li span{
                font-size: 13px;
                line-height: 20px;
            }
            .home-count-section .count-box .watermark {
                font-size: 70px;
                padding-right: 20px;
            }
            .home-count-section .count-box h6 {
                font-size: 14px;
                line-height: 20px;
                padding-left: 10px;
            }
            .home-video .video-box {
                height: 200px;
            }
            .home-video .video-box .btn-box .play-btn img {
                width: 50px;
            }
            .home-sustainability .mobile-bg {
                height: 300px;
            }
            .home-sustainability {
                padding-top: 300px;
            }
            .lead-block .lead-content-block-wrapper .lead-content-block h3.info {
                font-size: 14px !important;
                line-height: unset !important;
            }
            .lead-block .lead-content-block-wrapper .lead-content-block h4.stepper {
                font-size: 14px !important;
                line-height: unset !important;
            }
            .lead-block .lead-content-block-wrapper .lead-content-block {
                padding: 20px 35px 20px 35px !important;
            }
            .lead-block .monthly-amt {
                font-size: 40px !important;
            }
            .lead-block .lead-content-block-wrapper .lead-content-block .button-wrapper a.button {
                padding: 10px 80px !important;
                font-size: 14px !important;
            }
            .lead-block .lead-content-block-wrapper .lead-content-block {
                min-height: 430px !important;
                max-height: 430px !important;
            }
            .lead-block .lead-content-block-wrapper .lead-content-block .button-wrapper {
                margin-top: 20px !important;
            }
            .lead-block [type="color"], .lead-block [type="date"], .lead-block [type="datetime-local"], .lead-block [type="datetime"], .lead-block [type="email"], .lead-block [type="month"], .lead-block [type="number"], .lead-block [type="password"], .lead-block [type="search"], .lead-block [type="tel"], .lead-block [type="text"], .lead-block [type="time"], .lead-block [type="url"], .lead-block [type="week"], .lead-block textarea{
                margin: 0 !important;
            }
            .lead-block .three-inputs-wrapper .column {
                width: 50% !important;
            }
            .lead-block .lead-content-block-wrapper .lead-content-block .input-group-wrapper input, .lead-block .lead-content-block-wrapper .lead-content-block .input-group-wrapper select{
                font-size: 14px !important;
            }
            .lead-block [type="color"], .lead-block [type="date"], .lead-block [type="datetime-local"], .lead-block [type="datetime"], .lead-block [type="email"], .lead-block [type="month"], .lead-block [type="number"], .lead-block [type="password"], .lead-block [type="search"], .lead-block [type="tel"], .lead-block [type="text"], .lead-block [type="time"], .lead-block [type="url"], .lead-block [type="week"], .lead-block textarea{
                font-size: 14px !important;
            }
            .lead-block .lead-content-block-wrapper .lead-content-block .input-group-wrapper {
                margin-bottom: 10px !important;
            }
            .lead-block [type="color"], .lead-block [type="date"], .lead-block [type="datetime-local"], .lead-block [type="datetime"], .lead-block [type="email"], .lead-block [type="month"], .lead-block [type="number"], .lead-block [type="password"], .lead-block [type="search"], .lead-block [type="tel"], .lead-block [type="text"], .lead-block [type="time"], .lead-block [type="url"], .lead-block [type="week"], .lead-block textarea {
                height: 40px !important;
            }
            .home-calculator{
                padding-bottom: 0;
            }
            .home-awards .max-wrap {
                width: 50%;
            }
            .home-count-section .count-box {
                height: 90px;
            }
        /* HOME */
        /* ABOUT */
            .about-about .padd-bot--90 {
                padding-bottom: 20px;
            }
            .vision-mission .box {
                padding: 10px 0;
            }
            .vision-mission .box .rectangle {
                padding: 20px;
                flex-wrap: wrap;
                height: max-content !important;
                justify-content: center;
                gap: 20px;
                text-align: center;
            }
            .vision-mission .box .rectangle ul{
                width: max-content;
                margin: auto;
            }
            .vision-mission .box .rectangle ul li{
                text-align: left;
            }
            .vision-mission .box .rectangle .right {
                padding-left: 0;
                border-left: 0;
            }
            .milestones .slider-nav .slick-prev {
                margin-right: 20px;
            }
            .milestones .slider-nav .slick-next {
                margin-left: 20px;
            }
            .milestones .slider-for .paragraph {
                margin-left: 50px;
                margin-right: 50px;
            }
            .milestones .left {
                padding: 20px;
            }
            .milestones h6 {
                font-size: 18px;
            }
            .milestones .slider-nav .year {
                font-size: 16px;
            }
            .founders-message .img-box {
                width: 100%;
            }
            .board-of-dir .box {
                width: 50%;
                padding: 25px 20px;
            }
            .board-of-dir .box img {
                filter: unset;
            }
            .board-of-dir .box img {
                height: 140px;
            }
            .board-of-dir .box .content-box h6 {
                font-size: 15px;
            }
            .board-of-dir .box .content-box .paragraph {
                font-size: 12px;
                line-height: 20px;
            }
        /* ABOUT */
        /* SINGLE PRODUCT */
            .products-products .box {
                padding: 8px 0;
                width: 100%;
            }
            .products-products .box .rectangle {
                padding: 20px 10px;
            }
            .products-products .box .rectangle h5 {
                font-size: 20px;
                line-height: 35px;
                padding-bottom: 5px;
            }
        /* SINGLE PRODUCT */
        /* SOLAR SOLUTIONS */
            .solar-solutions-wrapper .max-wrap {
                width: 70%;
            }
            .solar-solutions-wrapper h5 {
                font-size: 20px;
            }
            .solar-solutions-wrapper h6 {
                font-size: 18px;
            }
            .solar-solutions-wrapper .solar-solutions-slider .left {
                width: 100%;
                height: 290px;
            }
            .solar-solutions-wrapper .solar-solutions-slider .right {
                width: 100%;
                text-align: center;
                padding-left: 0;
            }
            .solar-solutions-wrapper .solar-solutions-slider {
                padding-bottom: 30px;
            }
        /* SOLAR SOLUTIONS */
        /* CONTACT */
            .contact-contact .padd-bot--90 {
                padding-bottom: 20px;
            }
            .contact-contact .box {
                padding: 10px 0;
                width: 100%;
            }
            .contact-contact .box:nth-child(2){
                border: 0;
            }
            .contact-contact-form .w-50{
                width: 100% !important;
            }
            .contact-contact-form .w-50.left {
                padding-right: 0;
            }
            .contact-contact-form .w-50.right {
                padding-left: 0;
            }
            .contact-contact-form .section-heading.padd-top--90{
                padding-top: 20px;
            }
            .map {
                height: 200px;
            }
        /* CONTACT */

        /* FOOTER */
            #footer .box {
                width: 100%;
                text-align: center;
            }
            #footer .navbar-nav .nav-link{
                justify-content: center;
            }
            #footer .box p {
                text-align: left;
            }
            #footer .contact-box {
                padding-bottom: 10px;
                gap: 10px;
                justify-content: center;
                width: 60%;
                margin: auto;
            }
            #footer .copyright-wrapper {
                flex-direction: column-reverse;
                gap: 15px;
            }
            #footer .text {
                font-size: 11px;
                padding-right: 0;
                text-align: center;
            }
            #footer .max-wrap {
                padding-bottom: 20px;
            }
            #footer .box:nth-child(4) {
                padding-top: 30px;
            }
            #footer::after {
                background-size: 95%;
            }
            #footer::before {
                background-size: 95%;
            }
            #footer .copyright-wrapper{
                display: none !important;
            }
            #footer .copyright-wrapper-mobile{
                position: relative;
                display: flex !important;
                gap: 20px;
                flex-direction: column-reverse;
                z-index: 100;
            }
        /* FOOTER */
    }  
/* MEDIA QUERIES */

/* ANIMATIONS SCROLL */
.js-scroll {
    opacity: 0;
    transition: opacity 500ms;
}
.js-scroll.scrolled {
    opacity: 1;
}
.scrolled.fade-in-bottom {
    animation: fade-in-bottom 0.5s ease-in-out both;
    animation-delay: calc(0.1s * var(--i));
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
/* ANIMATIONS SCROLL */

