* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Light.woff2') format('woff2'), url('../fonts/HelveticaNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue.woff2') format('woff2'), url('../fonts/HelveticaNeue.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'), url('../fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Black.woff2') format('woff2'), url('../fonts/HelveticaNeue-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    background: url(../images/body-bg.png) top left repeat;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: normal;
    background-size: 20px;
    color: #333333;
    font-size: 14px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

strong {
    font-weight: bold;
    font-family: sans-serif;
}

ol,
ul {
    padding-left: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h5 {
    font-weight: bold;
}

h1,
.h1 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
}

h1 span,
.h1 span {
    font-weight: 300;
    font-size: 1.7rem;
}

header {
    margin-bottom: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0px 1px 3px 0px #dddddd;
    z-index: 999;
}

.btn:not(.btn-link) {
    border-radius: 0;
    border: 0;
    padding: 0.5rem 1rem;
}

.btn-primary {
    background-color: #e73239;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #1f242c;
}

.btn-primary.btn-lg {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.btn-dark {
    background-color: #1f242c;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.btn-dark:hover {
    background-color: #e73239;
}

.navbar-brand img {
    max-width: 220px;
}

.navbar-light .navbar-nav .nav-link {
    color: #2e2816;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 0rem;
    padding-right: 0rem;
    margin-left: 1.3rem;
    margin-right: 1.3rem;
    border-bottom: 2px solid transparent;
    font-size: 16px;
}

.navbar-collapse .btn-link {
    color: #000000;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link:hover.active,
.navbar-light .navbar-nav .nav-link:hover {
    color: #e73239;
    border-bottom: 2px solid #e73239;
}

.main_content {
    padding: 0;
    margin-top:90px;
}

.focal_banner .item>img {
    width: 100%;
    height: 500px;
}
.focal_banner.innerpage .item>img {
    width: 100vw;
    height: 25vh;
    object-fit: cover;
}

.focal_banner .item {
    height: auto;
    overflow: hidden;
}

.item_caption {
    font-weight: 900;
    font-size: 3em;
    line-height: 1.1;
    color: #2e2816;
    position: absolute;
    top: 30%;
    right: 10%;
    z-index: 10;
}

#focal_slider {
    position: relative;
}

#focal_slider .owl-nav {
    position: absolute;
    bottom: -5px;
    right: 100px;
}

#focal_slider.owl-carousel .owl-nav button.owl-next,
#focal_slider.owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    font-size: 0;
    border-radius: 0;
}

#focal_slider.owl-carousel .owl-nav button.owl-next {
    background: url(../images/carousel-right.png) center center no-repeat #ffffff;
    background-size: 20px;
}

#focal_slider.owl-carousel .owl-nav button.owl-prev {
    background: url(../images/carousel-left.png) center center no-repeat #ffffff;
    background-size: 20px;
}

#focal_slider .owl-item:first-child .item_caption {
    top: 50%;
}

#focal_slider .owl-item:last-child .item_caption {
    top: 40%;
    right: 10%;
}

.thin {
    color: #7f2816;
    font-weight: 400;
}

.thick {
    color: #7f2816;
    font-weight: 900;
    font-size: 4.3rem;
}

.animation_container {
    position: relative;
    min-height: 100px;
}

.moving_cloud {
    position: absolute;
    right: 0px;
    top: 50%;
    animation: clouds 80s ease-out 0s infinite normal none;
}

@keyframes clouds {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-2000px);
    }
}

@keyframes cloudsreverse {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(2000px);
    }
}

@keyframes birdflight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-2000px);
    }
}

@keyframes birdflightreverse {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(2000px);
    }
}

.flying_birds {
    position: relative;
    min-height: 100px;
}

.bird_1 {
    position: absolute;
    top: 50%;
    right: 0px;
    width: 30px;
    height: auto;
    animation: birdflight 60s infinite ease-in-out;
}

.bird_2 {
    position: absolute;
    top: 0%;
    left: 0px;
    width: 30px;
    height: auto;
    animation: birdflightreverse 80s infinite ease-in-out;
}

.about_section {
    margin-top: 0px;
    margin-bottom: 100px;
}

.static_cloud_1 {
    position: absolute;
    top: 50px;
    right: 30%;
    opacity: 0.8;
}

.solar_layers {
    padding: 60px;
    /*background-color: #efefef;*/
    text-align: center;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.about_section {
    background: url(../images/solar-panel.png) 95% 100% no-repeat;
    background-size: 200px;
    position: relative;
}

.about_section:after {
    content: '';
    width: 200px;
    height: 200px;
    background: url(../images/about-bg.png) center center no-repeat;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-size: 200px;
}

.about_section h1 {
    font-weight: bold;
}

.about_section h1>span {
    font-weight: 300;
}

.readmore_btn {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-right: 3rem!important;
}

.readmore_btn:after {
    content: '';
    width: 1.5rem;
    height: 1px;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-left: 5px;
    background-color: #ffffff;
    transition: all 0.5s ease-out;
}

.readmore_btn:hover:after {
    width: 1.8rem;
}

@-webkit-keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

.floating {
    transform: translatey(0px);
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.floating_land {
    position: relative;
    background: url(../images/clouds-bg.png) center center no-repeat;
    background-size: contain;
    padding-top: 50px;
    padding-bottom: 50px;
}

.floating_title {
    font-size: 2em;
    text-align: center;
    font-weight: 300;
}

.floating_title strong {
    font-weight: bold;
}

.floating_land_sun {
    position: absolute;
    top: -15%;
    left: 65%;
    z-index: 1;
}

#rotating_sun {
    animation: rotation 30s infinite linear;
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

.floating_sunrays1 {
    transform: rotate(-45deg);
    top: 120px;
    position: absolute;
    left: -60px;
}

.floating_sunrays2 {
    transform: rotate(-60deg);
    top: 140px;
    position: absolute;
    left: -30px;
}

.floating_sunrays3 {
    transform: rotate(-75deg);
    top: 150px;
    position: absolute;
    left: 10px;
}

.intro_sun .floating_sunrays1 {
    transform: rotate(253deg);
    top: 180px;
    position: absolute;
    left: 70px;
}

.intro_sun .floating_sunrays2 {
    transform: rotate(238deg);
    top: 165px;
    position: absolute;
    left: 110px;
}

.intro_sun .floating_sunrays3 {
    transform: rotate(209deg);
    top: 130px;
    position: absolute;
    left: 160px;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    20% {
        opacity: 1;
        transform: translateX(10px);
    }
    80% {
        opacity: 1;
        transform: translateX(-10px);
    }
    100% {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.arrowSliding {
    position: absolute;
    -webkit-animation: slide 4s linear infinite;
    animation: slide 4s linear infinite;
}

.delay1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.delay2 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.delay3 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}


/*.floating_sunrays>img:nth-child(1) {

    position: absolute;

    top: 80%;

    left: -50%;

    z-index: 1;

}



.floating_sunrays>img:nth-child(2) {

    position: absolute;

    top: 95%;

    left: -10%;

    z-index: 1;

}



.floating_sunrays>img:nth-child(3) {

    position: absolute;

    top: 100%;

    left: 22%;

    z-index: 1;

}*/

.floating_land .animation_container {
    position: absolute;
    z-index: 1;
    width: 98%;
    height: 200px;
    top: 0;
}

.moving_cloud1 {
    position: absolute;
    right: 0px;
    top: 100%;
    animation: clouds 180s ease 0s infinite normal none;
}

.moving_cloud2 {
    position: absolute;
    right: 0px;
    top: 0%;
    animation: clouds 100s ease-out 3s infinite normal none;
}

.moving_cloud3 {
    position: absolute;
    right: 0px;
    top: 200%;
    animation: clouds 150s ease 0s infinite normal none;
}

.moving_cloud4 {
    position: absolute;
    left: 0px;
    top: 10%;
    animation: cloudsreverse 180s ease 0s infinite normal none;
}

.moving_cloud5 {
    position: absolute;
    left: 0px;
    top: 0%;
    animation: cloudsreverse 100s ease-out 3s infinite normal none;
}

.moving_cloud6 {
    position: absolute;
    left: 0px;
    top: 100%;
    animation: cloudsreverse 150s ease 0s infinite normal none;
}

.products_section {
    padding: 0 0 50px 0;
    background: url(../images/clouds-bg.png) center center no-repeat;
    background-size: contain;
}

.products_section .product {
    position: relative;
    overflow: hidden;
}

.products_section .product .product_detail {
    background: #e73239;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 45px;
    transition: all 0.5s ease-out;
}

.products_section .product .product_detail:hover {
    background: #1f242c;
    height: 160px;
}

.products_section .product .product_detail:hover>p {
    display: block;
}

.products_section .product .product_detail h3 {
    font-weight: bold;
    color: #ffffff;
    font-size: 1rem;
    height: 45px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products_section .product .product_detail h3:after {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/arrow-right.png) center center no-repeat;
    display: inline-block;
    vertical-align: middle;
    background-size: 20px;
}

.products_section .product .product_detail:hover h3:after {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/arrow-down.png) center center no-repeat;
    background-size: 20px;
    display: inline-block;
}

.products_section .product .product_detail a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
}

.products_section .product .product_detail p {
    display: none;
    padding: 0 1rem;
    margin-bottom: 1rem;
    margin-top: -1rem;
    color: #999999;
}

.products_section .product .product_detail .readmore_btn {
    background: transparent;
    color: #e73239;
}

.vishakha_group {
    padding: 50px 0;
    background: url(../images/clouds-bg.png) top center no-repeat;
    background-size: contain;
}

.vishakha_group h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.vishakha_group h3 span {
    font-weight: 300;
}

.group_links .item {
    position: relative;
    padding-bottom: 50px;
}

.group_links .item .group_link_box {
    position: absolute;
    bottom: 10px;
    left: 100px;
    width: calc(100% - 200px);
    height: auto;
    padding: 15px;
    z-index: 2;
    background: #e73239;
}

.group_links .item .group_link_box:hover {
    background: #1f242c;
}

.group_links .item .group_link_box a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.group_links .item .group_link_box img {
    width: 20px;
}

#groupLinks_slider .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
}

#clientLogoSlider .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
}

#groupLinks_slider.owl-carousel .owl-nav button.owl-next,
#groupLinks_slider.owl-carousel .owl-nav button.owl-prev,
#clientLogoSlider.owl-carousel .owl-nav button.owl-next,
#clientLogoSlider.owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    font-size: 0;
}

#groupLinks_slider.owl-carousel .owl-nav button.owl-next,
#clientLogoSlider.owl-carousel .owl-nav button.owl-next {
    background: url(../images/carousel-right.png) center center no-repeat #ffffff;
    background-size: 20px;
}

#groupLinks_slider.owl-carousel .owl-nav button.owl-prev,
#clientLogoSlider.owl-carousel .owl-nav button.owl-prev {
    background: url(../images/carousel-left.png) center center no-repeat #ffffff;
    background-size: 20px;
}

.client_logos {
    background: #1f242c;
    padding: 30px;
}

.client_logos img {
    width: 100%;
}

.client_logos .item img {
    filter: grayscale(100%);
}

.client_logos .item img:hover {
    filter: grayscale(0%);
}

footer {
    background: rgba(242, 242, 242, 0.5);
    padding: 50px 0;
}

footer h5 {
    font-size: 1.3rem;
    color: #000000;
    position: relative;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

footer h5:after {
    content: '';
    width: 80px;
    height: 2px;
    background-color: #e73239;
    position: absolute;
    bottom: -10px;
    left: 0;
}

footer .navlist {
    list-style: none;
    padding-left: 0;
}

footer .navlist>li {
    padding-top: 0.3rem;
    margin-bottom: 0.3rem;
}

footer .navlist a {
    color: black;
}

footer .navlist a:hover {
    color: #e73239;
}

footer .address,
footer .contactdetails {
    position: relative;
    line-height: 1.7;
}

footer .address:before {
    content: '';
    background: url(../images/map-marker.png) center center no-repeat;
    position: absolute;
    top: 0;
    left: -30px;
    display: block;
    width: 20px;
    height: 25px;
    background-size: contain;
}

.contactdetails {
    margin-top: 3rem;
}

.contactdetails>div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contactdetails>div>img {
    width: 20px;
    height: auto;
    margin-right: 15px;
    margin-top: 2px;
}

.contactdetails>div.social>a {
    margin-right: 15px;
    font-size: 1.3rem;
}

.contactdetails>div.social>a:hover {
    color: #000000;
}

.copyrights {
    padding: 1rem;
}

.greenicon {
    position: absolute;
    bottom: -80px;
    margin-right: 30px;
}


/*--------sun rays-------*/

.sun {
    position: absolute;
    top: -100px;
    left: 120px;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    opacity: 0.9;
    box-shadow: 0px 0px 40px 15px white;
}

.ray_box {
    position: absolute;
    margin: auto;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    -webkit-animation: ray_anim 120s linear infinite;
    animation: ray_anim 120s linear infinite;
}

.ray {
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    margin-left: 10px;
    border-radius: 80% 80% 0 0;
    position: absolute;
    opacity: 0.3;
}

.ray1 {
    height: 170px;
    width: 30px;
    -webkit-transform: rotate(180deg);
    top: -175px;
    left: 15px;
}

.ray2 {
    height: 100px;
    width: 8px;
    -webkit-transform: rotate(220deg);
    top: -90px;
    left: 75px;
}

.ray3 {
    height: 170px;
    width: 50px;
    -webkit-transform: rotate(250deg);
    top: -80px;
    left: 100px;
}

.ray4 {
    height: 120px;
    width: 14px;
    -webkit-transform: rotate(305deg);
    top: 30px;
    left: 100px;
}

.ray5 {
    height: 140px;
    width: 30px;
    -webkit-transform: rotate(-15deg);
    top: 60px;
    left: 40px;
}

.ray6 {
    height: 90px;
    width: 50px;
    -webkit-transform: rotate(30deg);
    top: 60px;
    left: -40px;
}

.ray7 {
    height: 180px;
    width: 10px;
    -webkit-transform: rotate(70deg);
    top: -35px;
    left: -40px;
}

.ray8 {
    height: 120px;
    width: 30px;
    -webkit-transform: rotate(100deg);
    top: -45px;
    left: -90px;
}

.ray9 {
    height: 80px;
    width: 10px;
    -webkit-transform: rotate(120deg);
    top: -65px;
    left: -60px;
}

.ray10 {
    height: 190px;
    width: 23px;
    -webkit-transform: rotate(150deg);
    top: -185px;
    left: -60px;
}

@-webkit-keyframes ray_anim {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*-------------------------------*/


/*---------------ABOUT US----------------*/

.page-template-aboutus .focal_banner {
    position: relative;
}

.page-template-aboutus .focal_banner .item img {
    width: 100%;
}

.page-template-aboutus .sun {
    top: calc(100vh - 65%);
    right: 18vw;
    left: auto;
    width: 50px;
    height: 50px;
}

.page-template-aboutus .ray_box {
    width: 50px;
}

.page-template-aboutus .ray_box .ray {
    opacity: 0.3
}

body:not(.home) .item_caption {
    top: 30%;
}

.page-template-aboutus .item_caption {
    top: 30%!important;
}

.intro_section {
    padding: 0 100px;
}

.intro_sun {
    position: absolute;
    top: 13px;
    left: -7px;
}

.section_bg {
    background: url(../images/clouds-bg.png) top center no-repeat;
    background-size: 100%;
}

.group_companies_section .container {
    background: #262262;
    padding-top: 3em;
    padding-bottom: 3em;
}

.group_companies_section,
.group_companies_section h2 {
    color: #ffffff;
}

.group_companies {
    padding: 150px 0;
    background: url(../images/clouds-bg.png) top center no-repeat;
    background-size: 100%;
}

.sub_heading {
    font-weight: normal;
    font-size: 1rem;
}

.company_desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.company_desc:hover>div {
    overflow: hidden;
}

.company_desc:hover>div>img {
    transition: all .3s ease-in-out;
}

.company_desc:hover>div>img {
    box-shadow: 0px 11px 16px 0px #ccc;
    transform: scale(0.9);
}

.company_desc h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0rem;
}

.vmv>div {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-radius: 50%;
    text-align: center;
    width: 400px;
    height: 400px;
    padding: 4rem;
}

.vmv>div>img {
    width: 50px;
    margin-bottom: 15px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.vision {
    background: rgba(255, 204, 0, 0.6);
}

.vision>img,
.mission>img,
.values>img {
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.vision:hover>img,
.mission:hover>img,
.values:hover>img {
    transform: scale(1.5);
}

.mission {
    background: rgba(0, 234, 255, 0.6);
    margin-left: -50px;
    margin-right: -50px;
}

.values {
    background: rgba(172, 199, 255, 0.6);
}

.height_500 {
    height: 500px;
}

ul.features.inline {
    padding-left: 0;
}

ul.features.inline li {
    line-height: 1.5;
    display: inline;
    margin-left: 0px;
}

ul.features.inline li:before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: black;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

ul.features li {
    line-height: 1.5;
}

.features .sublist {
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.features .sublist:before {
    content: 'o';
    margin-right: 5px;
    font-size: 10px;
}

.features a {
    color: #246eb7;
}

ul.features{list-style: none;padding: 0;margin: 15px 0;}
ul.features > li{ position:relative;list-style: none;padding-left: 20px; padding-bottom: 5px; margin-top: 5px;}
ul.features > li:before{
    content:'';
    background:url(../images/carousel-right.png) center center no-repeat;
    background-size: 16px;
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:16px;
    height:16px;
}





.height_300 {
    height: 300px;
}

.columncount-2 {
    column-count: 2;
}

.mt-10 {
    margin-top: 8rem;
}

.mb-10 {
    margin-bottom: 8rem;
}

.cloudbg {
    background: url(../images/main_content_bg.png) top left no-repeat;
    background-size: contain;
}

.certifications .container {
    background: url(../images/certifications.jpg) top center no-repeat;
    background-size: cover;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
}

.certifications {
    color: #ffffff;
}

.certifications .features {
    font-size: 0.9rem;
    line-height: 1.8;
}

.form-control,.form-select {
    border-radius: 0;
    border: 1px solid #444444;
}

.cloudbg2 {
    background: url(../images/clouds-bg.png) center center no-repeat;
    background-size: cover;
}

.page-template-career .sun {
    top: -150px;
    left: 250px;
}

.page-template-career .sun .ray {
    opacity: 0.5;
}


/*---------------water----------------*/

#container,
#water {
    background-image: url(../images/banner-0.jpg);
    background-position: center bottom;
    background-size: cover;
}

#container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

#container:after {
    position: absolute;
    top: 10%;
    left: 2.5%;
    z-index: -1;
    content: '';
    display: block;
    height: 95%;
    width: 95%;
    background: #0f0f0f;
    filter: blur(30px);
}

#water {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    filter: url('#turbulence');
    overflow: hidden;
}

.hovereffect>img {
    transition: all 0.5s ease;
}

.hovereffect:hover>img {
    transform: scale(0.9);
    box-shadow: 0px 11px 16px 0px #ccc;
}

.certifications .container {
    transition: all 0.5s ease;
}

.certifications:hover .container {
    transform: scale(0.9);
}

.animated_obj {
    position: relative;
}

img.process_sun {
    position: absolute;
    top: 10px;
    left: 60px;
    width: 80px;
}

.process_droplet {
    position: absolute;
    top: 310px;
    left: 420px;
    width: 6px;
    animation: drop 3s linear infinite .8s;
}

.process_droplet2 {
    position: absolute;
    top: 310px;
    left: 480px;
    width: 6px;
    animation: drop 3s linear infinite .8s;
}

@keyframes drop {
    0% {
        transform: translateY(0px);
        opacity: 0;
    }
    5% {
        opacity: .7;
    }
    50% {
        transform: translateY(5px);
        opacity: 0.9;
    }
    100% {
        transform: translateY(10px);
        opacity: 1;
    }
}

.process_cart {
    position: absolute;
    top: 375px;
    left: 130px;
    width: 23px;
    animation: slide 4s linear infinite;
}

.fb {
    color: #4267B2;
}

.insta {
    color: #C13584;
}

.twitter {
    color: #1DA1F2;
}

.linkedin {
    color: #0077b5;
}

@media all and (min-width:0px) and (max-width:500px) {
    .solar_layers {
        padding: 15px;
    }
    .page-template-career .sun {
        display: none;
    }
    .intro_sun {
        position: absolute;
        top: -90px;
        left: -20px;
    }
    .page-template-aboutus .ray_box {
        display: none;
    }
    @keyframes clouds {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-200px);
        }
    }
    @keyframes cloudsreverse {
        0% {
            transform: translateX(0px);
        }
        100% {
            transform: translateX(200px);
        }
    }
    @keyframes birdflight {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-200px);
        }
    }
    @keyframes birdflightreverse {
        0% {
            transform: translateX(0px);
        }
        100% {
            transform: translateX(200px);
        }
    }
}

@media all and (min-width:501px) and (max-width:989px) {
    .page-template-aboutus .ray_box {
        display: none;
    }
    @keyframes clouds {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-900px);
        }
    }
    @keyframes cloudsreverse {
        0% {
            transform: translateX(0px);
        }
        100% {
            transform: translateX(900px);
        }
    }
    @keyframes birdflight {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-900px);
        }
    }
    @keyframes birdflightreverse {
        0% {
            transform: translateX(0px);
        }
        100% {
            transform: translateX(900px);
        }
    }
}

@media all and (max-width:990px) {
    .item_caption {
        top: 50%;
        right: auto;
        left: auto;
        width: 100%;
        text-align: center;
    }
    #focal_slider .owl-item:first-child .item_caption,
    #focal_slider .owl-item:last-child .item_caption {
        top: 30%;
        right: auto;
        left: auto;
        width: 100%;
    }
    .focal_banner .item {
        height: 80vh;
    }
    .about_section {
        background: transparent;
    }
    .about_section:after {
        bottom: -150px;
        right: 0px;
    }
    .floating_title {
        margin-top: 100px;
    }
    .products_section .product {
        margin-bottom: 30px;
    }
    .group_links .item .group_link_box {
        left: 10px;
        width: calc(100% - 20px);
    }
    .greenicon {
        position: static;
        margin-right: 0;
        text-align: center;
    }
    .intro_section {
        padding: 0 15px;
    }
    .group_companies .company_desc {
        margin-bottom: 30px;
    }
    .vmv>div {
        padding: 2rem;
        width: 300px;
        height: 300px;
        margin-bottom: 30px;
    }
    .flowchart {
        width: 100%;
        height: auto;
    }
    img.process_sun {
        position: absolute;
        top: 10px;
        left: 60px;
        width: 80px;
    }
    .process_sun,
    .process_droplet,
    .process_droplet2,
    .process_cart {
        display: none;
    }
    .focal_banner .ratio {
        height: 100%;
    }
    .focal_banner {
        position: relative;
    }
    .products_section {
        padding: 0 0 50px 0;
    }
    .floating_land .animation_container {
        width: 90%;
    }
    .group_companies {
        padding: 50px 0;
    }
    body:not(.home) .item_caption {
        color: white;
    }
    .cloudbg {
        background: none;
    }
    .columncount-2 {
        column-count: 1;
    }
}

.navbar-nav li:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 100%;
    left: 0%;
    margin-top: -6px;
}


/* rotate caret on hover */

.dropdown-menu>li>a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
}

.focal_banner{
    min-height:60vh;
}
.focal_banner.innerpage{
    min-height:15vh;
    height:25vh;
}
.notfound{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    height:100%;
}
.notfound h1{
    font-size: 8em;
    text-align: center;
    width: 100%;
}
.notfound p{
    font-size: 1.5em;
    text-align: center;
    width: 100%;
}
.productSpec{
    background:rgba(255,255,255,0.8);
}
.productSpec tr td:nth-child(1){
    width:120px;
}

.productSpecsList{
    padding-left:0;
}
.productSpecsList li{
    display: flex;
    gap:15px;
    padding: 4px 0;
    border-bottom: 1px solid #aaa
}
.productSpecsList li > strong{
    width: 120px;
    font-style: normal;
    letter-spacing: 0.012em;
}

.productFeature{
    background-color:#262262;
    border-radius:1em;
    padding:1.5em;
    position:relative;
    height:100%;
    color:white;
}
.productFeature h3{
    font-size: 1.5em;
    color:white;
}
.productFeature:after{
    content: attr(data-title);
    font-size: 100px;
    color: rgba(255,255,255,0.05);
    position: absolute;
    bottom: -40px;
    right: 10px;
    font-weight: 900;
}
#enqTabContent{
    margin-top:-1px;
}
#enqTab .nav-link{
    font-size: 1.2em;   
    color:#e73239;
    font-weight:600;
}
#enqTab .nav-link.active{
    color:#000000;
}
.iconBlock{
    display:flex;
    gap:15px;
    height:100%;
    background:white;
    padding:15px;
    border-radius:10px;
    box-shadow: 0px 1px 3px 0px #dddddd;
}
.iconBlock.top{
    flex-direction: column;
    align-items: center;
}

.blockicon i{
    color:#e73239;
    font-size: 35px;
}
.blocktext h5{
    font-size: 1.05em;
}

.whyus{
    /*background-color: #262262;
    color:white;*/
}
.reasons{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0px 1px 3px 0px #dddddd;
    background:white;
    padding:30px;
    border-radius:10px;
    height:100%;
}
.reasons h3{
    font-size: 1.08em;
    margin-top:15px;
}
.reasons p{
    margin-bottom:0;
}
.pagecta{
    background-color:#262262;
    color:white;
}
#accordionExample .accordion-button{
    font-weight:600;
    font-size: 1rem;
}
#accordionExample .accordion-button:not(.collapsed) {
    color: #e73239;
    background-color: #ffffff;
}
.accordion-button:focus{
    box-shadow: none;
}
.error{
    color:red;
}

.mtb80{margin-top:80px;margin-bottom:80px;}