/********** Template CSS **********/
:root {
    --primary: #1F6837;;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
    --white-f: #fff;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: transparent;
}

.navbar .navbar-brand .img {
    height: 50px;
}

/* .navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: var(--primary);
} */

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/The_Solar_Warehouse.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    /* transform: skewY(-12deg); */
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-item  img {
    width: 3.5rem;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.full-content {
    display: none;
  }

.expand-btn {
background-color: transparent;
border: none;
cursor: pointer;
color: blue;
}

.rv-inner-footer {
    background-color: #012307;
}

.rv-8-footer-middle {
    padding: 100px 0 110px;
}
.rv-8-footer-bottom {
    padding: 30px 0;
}

.rv-2-footer {
    border-top: 1px solid hsla(0, 0%, 100%, .1);
    padding: 45px 0;
}

.rv-1-footer__about-txt {
    font-weight: 400;
    font-size: 15px;
    color: hsla(0, 0%, 100%, .6);
    margin-bottom: 27px;
}

.rv-1-socials {
    display: flex;
    gap: 6px;
}
.rv-1-socials.rv-inner-socials a {
    border-radius: 6px;
}

.rv-1-socials a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid hsla(0, 0%, 100%, .1);
    text-align: center;
    border-radius: 50%;
    color: hsla(0, 0%, 100%, .5);
}
a, a:hover {
    text-decoration: none;
}
a {
    transition: .4s ease;
    vertical-align: top;
    display: inline-block;
}
a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
}
.rv-1-footer-widget__title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--mulish);
    color: var(--white-f);
    margin-bottom: 25px;
}
.rv-1-footer-widget li, .rv-1-footer-widget li a {
    color: hsla(0, 0%, 100%, .6);
    font-size: 15px;
    font-weight: 300;
    font-family: var(--mulish);
    transition: .4s ease;
}

.rv-1-footer-widget li {
    margin-bottom: 13px;
}
.rv-8-footer-nwsltr__form .nwsltr-top {
    padding-bottom: 0;
    border: none;
}

.rv-6-footer-nwsltr__form .nwsltr-top {
    display: flex;
}
.rv-inner-footer-nwsltr__form .nwsltr-top {
    border-radius: 6px;
    background: hsla(0, 0%, 100%, .04);
}
.rv-6-footer-nwsltr__checkbox {
    padding-top: 20px;
}
.rv-6-footer-nwsltr__checkbox a, .rv-6-footer-nwsltr__checkbox label {
    color: hsla(0, 0%, 100%, .5);
}

label {
    display: inline-block;
}

.rv-8-footer-nwsltr__form input {
    border: 1px solid hsla(0, 0%, 100%, .16);
    border-right: 0;
    padding: 10px 22px;
}

.rv-6-footer-nwsltr__checkbox input {
    background-color: transparent;
    width: auto;
    margin-right: 10px;
}
.rv-6-footer-nwsltr__form input {
    width: 100%;
}
.rv-inner-footer-nwsltr__form .nwsltr-top button {
    border-radius: 0 6px 6px 0;
    background-color: #509e0f;
}

.rv-6-footer-nwsltr__form .nwsltr-top>* {
    color: var(--white-f);
}
.rv-8-footer-nwsltr__form button {
    width: 46px;
    height: 46px;
    background-color: #1c74e9;
    flex-shrink: 0;
}
.rv-6-footer-nwsltr__form button {
    min-width: max-content;
}
@media screen and (max-width: 1399px) {
    .rv-8-footer-middle {
        padding: 80px 0 90px;
    }
}

.rv-breadcrumb {
    background-color: #f5f6fa;
    background-color: #f1ffed;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-120 {
    padding-top: 120px;
}

@media screen and (max-width: 1399px) {
    .rv-breadcrumb {
        padding: 80px 0;
    }
}
.rv-breadcrumb__nav .current-page {
    color: #509e0f;
}
rv-breadcrumb__nav {
    font-weight: 500;
}

@media screen and (max-width: 1399px) {
    .rv-breadcrumb__title {
        font-size: 50px;
    }
}

.rv-breadcrumb__title {
    font-size: 54px;
    font-weight: 700;
    border-bottom: 1px solid rgba(5, 5, 5, .1);
    display: inline-block;
    padding: 0 70px 10px;
    margin-bottom: 16px;
}
.rv-breadcrumb__nav a {
    color: #5d626c;
}
.rv-breadcrumb__nav .current-page {
    color: #509e0f;
}
.rv-breadcrumb__nav {
    font-weight: 500;
}

.rv-section-spacing {
    padding: 120px 0;
}

@media screen and (max-width: 1399px) {
    .rv-section-spacing {
        padding: 80px 0;
    }
}
.rv-inner-service {
    padding: 35px 40px;
    position: relative;
    background-color: var(--white-f);
    border: none;
    height: 100%;
}

@media screen and (max-width: 1399px) {
    .rv-14-service {
        padding: 25px 35px 25px 0;
    }
}
.rv-14-service {
    border-right: 1px solid rgba(2, 2, 8, .1);
    padding: 35px 50px 35px 0;
}
.rv-inner-service:before {
    content: "";
    position: absolute;
    inset: 0;
    bottom: -1px;
    right: -1px;
    z-index: 1;
    pointer-events: none;
    border: solid #ddd;
    border-width: 0 1px 1px 0;
}
@media screen and (max-width: 1599px) {
    .rv-14-service__icon {
        margin-bottom: 35px;
    }
}

.rv-14-service__icon {
    margin-bottom: 45px;
}
.rv-14-service__title {
    color: #020208;
    font-size: 22px;
    font-weight: 700;
    line-height: 127.273%;
    margin-bottom: 11px;
}
@media screen and (max-width: 1599px) {
    .rv-14-service .rv-3-service__descr {
        margin-bottom: 37px;
    }
}

.rv-14-service .rv-3-service__descr {
    font-size: 14px;
    color: rgba(2, 2, 8, .6);
    line-height: 157.143%;
    margin-bottom: 47px;
}
.rv-3-service__descr {
    color: rgba(5, 5, 5, .7);
    font-family: var(--mulish);
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 30px;
}
@media screen and (max-width: 1399px) {
    .rv-3-service__descr {
        margin-bottom: 20px;
    }
}

.rv-14-service__btn {
    color: #020208;
    font-weight: 700;
}
.project-description a {
    font-weight: bold!important;
}

.rv-inner-cta {
    background-color: #f5f6fa;
}
@media screen and (max-width: 991px) {
    .rv-section-spacing {
        padding: 60px 0;
    }
}
@media screen and (max-width: 1399px) {
    .rv-section-spacing {
        padding: 80px 0;
    }
}
.rv-section-spacing {
    padding: 120px 0;
}
@media screen and (max-width: 991px) {
    .rv-1-section__title {
        font-size: 35px;
    }
}
@media screen and (max-width: 1199px) {
    .rv-1-section__title {
        font-size: 40px;
        margin-bottom: 18px;
    }
}
@media screen and (max-width: 1399px) {
    .rv-1-section__title {
        font-size: 45px;
        margin-bottom: 23px;
    }
}
.rv-1-section__title {
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 28px;
}

@media screen and (max-width: 1199px) {
    .rv-14-nwsltr__form {
        gap: 35px;
    }
}

.rv-14-nwsltr__form {
    display: flex;
    align-items: center;
    gap: 75px;
}