/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: Cambria;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: Cambria;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        top: 0;
        width: 100%;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

.carousel-caption h1 {
    /* text-shadow: 0 0 10px #ea4d3d; */
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}


/*** Service ***/
.service_section {
    background-image: url(../img/slider1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.service_section .container {
    position: relative;
}

.why_choose_items {
    justify-content: space-between;
    display: grid;
    align-self: normal;
}

.service_section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #eb47006e;
}

.service-item {
    position: relative;
    height: 100%;
    padding: 30px 20px;
    transition: .5s;
    box-shadow: 0 0 10px #fff;
}

.service-item:hover {
    background-color: #1987546e !important;
}

.service-item:hover p, .service-item:hover h5 {
    color: #fff;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
    font-size: 30px;
}

.service-item h5 {
    font-size: 22px;
}

.service-item p {
    text-align: center;
    color: #000;
}

.service-item ol li {
    text-align: left !important;
    color: #000;
}

.service-item ol {
    padding-left: 16px !important;
}

.service-item a.btn {
    position: absolute;
    width: 150px;
    bottom: -48px;
    left: 0;
    right: 0;
    margin: auto;
    /* margin-left: -30px; */
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: #091e3e24;
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 75%;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/bg-image.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: 0px;
    }

    .footer-about .first_column {
        border: 1px dashed #ea4e3c;
    }
}

.how_did_this .card {
    border-radius: 0px;
    box-shadow: 0 0 10px #fff;
    color: #fff;
    background: #453a96;
    text-align: center;
}

.how_did_this .card p {
    font-weight: 500;
    font-size: 16px;
}

.how_did_this .card .border-bottom {
    border-bottom: 1px solid #e1e1e1 !important;
}

.how_did_this .card:hover {
    color: #fff !important;
    background-color: #028d27;
}

.how_did_this .card:hover h4 {
    color: #fff !important;
}

/* .how_did_this .card {
    background: linear-gradient(#ec623b, #028d27 50%, #06a3da 50%, #fff);
    background-size: 100% 200%;
    transition: background 0.5s;
} */



.how_did_this {
    background-image: url(../img/bg-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.how_did_this::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #137748a8;
}

.how_did_this .container {
    position: relative;
}


/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.form-wrapper {
    border: 2px solid #ea4e3c;
    border-radius: 10px;
    padding: 40px 30px;
}

.form-wrapper .tab-headers {
    padding: 5px 30px;
    border: 1px solid #06a3da;
    border-radius: 30px;
    margin-bottom: 20px;
}

.form-wrapper .tab-headers .nav-link {
    display: block;
    padding: .35rem 1rem !important;
    border-radius: 30px !important;
}

@media screen and (max-width:768px) {
    .form-wrapper {
        padding: 30px 15px !important;
    }

    .form-wrapper .tab-headers {
        padding: 5px !important;
    }

    .form-wrapper .tab-headers .nav-link {
        padding: .35rem .25rem !important;
        font-size: 14px !important;
    }
}

.owl-carousel .owl-item img {
    border: 1px solid lightgrey;
    padding: 5px;
}

.solar-features-heading {
    font-size: 1.2rem;
    padding-left: 16px;
    font-weight: bold;
    color: green;

}

.solar-features-logo img {
    width: 4rem;
}

.india_map_point_solar {
    background-image: url(../img/19742.jpg);
    background-repeat: repeat;
    position: relative;
    box-shadow: 0 0 3px #1f6832;
}

.india_map_point_solar .card {
    box-shadow: 0 0 10px green;
    border-radius: 20px;
}

.india_map_point_solar .card .city_icon {
    margin-bottom: 10px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: auto;
    border: 2px dashed orange;
}

.india_map_point_solar .card:hover {
    background-color: #028d27;
    color: #fff;
}

.india_map_point_solar .card:hover h4 {
    background-color: #028d27;
    color: #fff;
}

.india_map_point_solar .card:hover .city_icon {
    background-color: orange;
    border: 2px dashed #000;
    color: #fff;
}

.about_other_section ul {
    list-style: none;
    padding-left: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.about_other_section {
    background-image: url(../img/about1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.about_other_section .container {
    position: relative;
    color: #fff;
}

.about_other_section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #00000069;
}

.how-we-did {
    background: linear-gradient(90.16deg, #005b30 -15.84%, #00af2e 122.54%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: -moz-fit-content;
    max-height: fit-content;
    min-height: 100vh;
}

.how-we-did .main-timeline-2 {
    position: relative;
}

.how-we-did .right-2 {
    left: 50%;
    padding: 0 0 20px 40px;
}

.how-we-did .timeline-2 {
    background-color: inherit;
    position: relative;
    width: 50%;
}

.how-we-did .left-2 {
    left: 0;
    padding: 0 40px 20px 0;
}

.how-we-did .timeline-2 .install-solar-step.step-left {
    text-align: right;
}

.how-we-did .timeline-2 .install-solar-step .solar-step-name {
    color: #fff !important;
}

.how-we-did .timeline-2 .install-solar-step .solar-step-img {
    margin-bottom: 1rem;
}

.how-we-did .timeline-2 .install-solar-step .solar-step-img img {
    width: 120px;
    background: #ffffff;
    padding: 10px;
    border-radius: 20px;
}

.how-we-did .timeline-2 .install-solar-step {
    color: #fff;
}

.how-we-did .timeline-2 .install-solar-step.step-right {
    text-align: left;
}

.how-we-did .timeline-2 .install-solar-step .solar-step-name {
    font-family: Cambria;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.how-we-did .timeline-2 .install-solar-step .solar-step-description {
    font-family: Cambria;
    font-size: 1.1rem;
    font-weight: 600;
}

.how-we-did .timeline-2 .install-solar-step .btn {
    font-size: 1rem;
}



.how-we-did .main-timeline-2:after {
    background-color: #fff;
    bottom: 0;
    content: "";
    left: 50%;
    margin-left: -3px;
    position: absolute;
    top: 0;
    width: 3px;
}

.how-we-did .timeline-2:after {
    background-color: #26c6da;
    border-radius: 50%;
    content: "";
    height: 25px;
    position: absolute;
    right: -11px;
    top: 15px;
    width: 25px;
    z-index: 1;
}

@media screen and (max-width: 768px) {

    .how-we-did .timeline-2 {
        padding-left: 70px;
        padding-right: 25px;
        width: 100%;
    }

    .how-we-did .timeline-2 .install-solar-step.step-left {
        text-align: left;
    }

    .how-we-did .left-2:after,
    .how-we-did .right-2:after {
        left: 18px;
    }

    .how-we-did .main-timeline-2:after {
        left: 31px;
    }

    .how-we-did .right-2,
    .sp-section-6 .right-2 {
        left: 0;
    }

    .how-we-did .timeline-2 {
        padding-left: 50px;
        padding-right: 15px;
        width: 100%;
    }
}

.form-wrapper {
    color: #000;
    font-weight: 500;
}

.radio-group {
    gap: 10px;
}

.radio-btn {
    padding: 5px 15px;
    border: 1px solid #06a3da;
    background-color: white;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
    margin: 5px 3px;
}

.radio-btn.active,
.radio-btn:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

input[type="radio"] {
    display: none;
}

.tooltip {
    position: relative;
    display: inline-block;
    opacity: 1;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.homes-section-12 .faq-content .faq-web .nav-tabs .nav-item .nav-link {
    border: none;
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

.homes-section-12 .faq-content .faq-web .nav-tabs .nav-item .nav-link.active {
    background-color: #005b30;
    border-radius: 0;
    color: #fff;
}

.homes-section-12 .faq-content .faq-mobile .accordion-item .accordion-body .accordion-header .accordion-button:after,
.homes-section-12 .faq-content .faq-web .accordion-header .accordion-button:after {
    background-image: none;
    content: "\f067";
    font-family: 'FontAwesome';
    left: -1px;
    position: absolute;
}

.homes-section-12 .faq-content .faq-web .accordion-header .accordion-button:not(.collapsed):after {
    background-image: none;
    content: "\f068";
    font-family: FontAwesome;
    position: absolute;
}

.homes-section-12 .accordion-button {
    font-weight: 600;
    color: #000;
}


.portfolio-section {
    padding: 50px 20px;
    transition: background-image 0.4s ease-in-out;
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 500px;
    background-attachment: fixed;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: -50px;
}

@media screen and (max-width:768px) {
    .portfolio-grid {
        grid-template-rows: repeat(3, 1fr) !important;
        grid-template-columns: auto !important;
    }
}

.portfolio-item {
    background-color: #00000042;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.info-subtitle {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

.info-title {
    font-size: 20px;
    margin: 5px 0 0;
}


.circle-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    /* optional: limits size on large screens */
    aspect-ratio: 1 / 1;
    /* keeps it a perfect square */
    margin: auto;
    /* centers it horizontally */
}

.rotating-circle {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
    animation: spin 15s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.circle-wrapper .item {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #3b6ebe;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: all 0.5s ease;

}

.circle-wrapper .item p {
    margin-bottom: 0;
    transform: rotate(0deg);
    margin: 0;
    text-align: center;
}

.circle-wrapper .item.active {
    background-color: #28a745;
    color: white;
    transform: scale(1.2);
    z-index: 10;
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid green;
    justify-content: center;
    display: flex;
    align-items: center;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 60px;
    z-index: -1;
}

.center-content h5 {
    color: #28a745;
    font-size: 18px;
}

.center-content p {
    color: #000;
    font-size: 14px;
}

.mw-circle, .dm-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 10px;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
}

.mw-circle {
    height: 100px;
    width: 100px;
    font-size: 28px;
    position: absolute;
    top: 45%;
    right: 30%;
    z-index: 99;
}

.dm-circle {
    height: 170px;
    width: 170px;
    font-size: 30px;
    position: absolute;
    top: 55%;
    right: 15%;
    z-index: 1;
}

#myVideo {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.sticky-icon {
    z-index: 1;
    position: fixed;
    top: 50%;
    right: 0%;
    width: 230px;
    display: flex;
    flex-direction: column;
}

.sticky-icon a {
    transform: translate(180px, 0px);
    border-radius: 50px 0px 0px 50px;
    text-align: left;
    margin: 2px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    transition: all 0.8s;
}

.sticky-icon a:hover {
    color: #FFF;
    transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
    transform: rotate(360deg);
}


.Instagram {
    background-color: #198754;
    color: #FFF;
}


.sticky-icon a i {
    background-color: #FFF;
    height: 40px;
    width: 40px;
    color: #000;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 5px;
    transition: all 0.5s;
}

.sticky-icon a i.fa-instagram {
    background-color: #FFF;
    color: #FD1D1D;
}


#myBtn {
    height: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    text-align: center;
    padding: 10px;
    text-align: center;
    line-height: 40px;
    border: none;
    outline: none;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    border-radius: 50%;
}

.fa-arrow-circle-up {
    font-size: 30px;
}

#myBtn:hover {
    background-color: #555;
}

.asset_management_service_main {
    background-image: url(../img/solar_projects.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.asset_management_service_main::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0000008e;
}

.asset_management_service .card .service-card-heading {
    font-size: 18px;
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.asset_management_service .card {
    background-color: #ffffff5c;
}

.asset_management_service .card .card-content {
    visibility: hidden;
}

.asset_management_service .card:hover .card-content {
    visibility: visible;
}

.asset_management_service .card:hover {
    background-color: lightgrey;
}

.asset_management_service .card:hover .service-card-heading {
    color: #00af2e;
}

.footer {
    padding: 30px 0;
}

.footer h3 {
    font-size: 18px;
}

.counter-card {
    border: 8px solid #818181;
    border-radius: 15px;
    position: relative;
}

.counter-card-icon {
    background-color: #fff;
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: -40px;
    right: 20px;
    box-shadow: 0 0 5px #0000008c;
}

.counter-card-icon i {
    font-size: 24px;
}

.bg-green {
    background-color: #137748 !important;
}

.card-main-header {
    width: 100%;
    height: 50px;
    display: flex;
    border: 1px solid grey;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.card-main-header h4 {
    margin-bottom: 0 !important;
}

@media screen and (max-width:768px) {
    .container_main {
        width: 100%;
        height: 550px;
        overflow: scroll;
        padding-top: 80px;
    }

    .abouthover .grid {
        display: block !important;
        gap: 10px;
    }

    .abouthover .grid .item {
        width: 100% !important;
        height: 100% !important;
        margin-bottom: 20px;
    }

}