/*
Theme Name: Jubilee
Theme URI: https://templatesjungle.com/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: Jubilee is specially designed product packaged for online course websites.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Floating & Alignment
  2.3 Forms
  2.4 Lists
  2.5 Code
  2.6 Tables
  2.7 Spacing
  2.8 Utilities
  2.9 Misc
    - Row Border
    - Zoom Effect
  2.10 Buttons
    - Button Sizes
    - Button Shapes
    - Button Color Scheme
    - Button Aligns
  2.11 Section
    - Hero Section
    - Section Title
    - Section Paddings
    - Section Margins
    - Section Bg Colors
    - Content Colors
    - Content Borders

3. EXTENDED TYPOGRAPHY
  3.1 Blockquote / Pullquote
  3.2 Text Highlights

4. CONTENT ELEMENTS
  4.1 Tabs
  4.2 Accordions
  4.3 Brand Carousel
  4.4 Category Carousel

5. BLOG STYLES
  5.1 Blog Single Post
  5.2 About Author
  5.3 Comments List
  5.4 Comments Form3

6. SITE STRUCTURE
  6.1 Header
    - Header Menu
    - Nav Sidebar
  6.2 Billboard
  6.3 About Us Section
  6.4 Video Section
  6.5 Selling Products Section
  6.6 Quotation Section
  6.7 Latest Blogs Section
  6.8 Newsletter Section
  6.9 Instagram Section
  6.10 Footer
    - Footer Top
    - Footer Bottom

7. OTHER PAGES
  7.1 Product detail
  7.2 Shop page


/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
    /* widths for rows and containers
     */
    --header-height: 160px;
    --header-height-min: 80px;
}
.text-decoration {
    text-decoration: none;
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
    :root {
        --header-height: 100px;
        --header-height-min: 80px;
    }
}

/* Theme Colors */
:root {
    --primary-color: #4cc082;
    --light-primary-color: #e2f3f0;
    --secondary-color: #ec6c5a;
    --light-secondary-color: #ffe9e5;
    --tertiary-color: #ffeed3;
    --dark-color: #31333a;
    --light-color: #ffffff;
    --grey-color: #bbc7d4;
    --light-dark-color: #727272;
    --light-grey-color: #f5f5f5;
}

/* Fonts */
:root {
    --body-font: "Inter", sans-serif;
    --heading-font: "Inter", sans-serif;
}

body {
    --bs-link-color: var(--dark-color);
    --bs-link-hover-color: var(--dark-color);

    --bs-link-color-rgb: 40, 40, 40;
    --bs-link-hover-color-rgb: 0, 0, 0;

    --bs-light-rgb: 248, 248, 248;

    --bs-font-sans-serif: var(var(--body-font));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.3rem;
    --bs-body-color: var(--dark-color);

    --bs-primary: #4cc082;
    --bs-primary-rgb: 76, 192, 130;
    --bs-primary-bg-subtle: #e2f3f0;

    --bs-border-color: #f7f7f7;

    --bs-secondary: #ec6c5a;
    --bs-secondary-rgb: 236, 108, 90;
    --bs-secondary-bg-subtle: #ffe9e5;

    --bs-tertiary: #f8be60;
    --bs-tertiary-bg-subtle: #ffeed3;
}

.btn {
    --bs-btn-font-family: var(--heading-font);
}

.btn-primary {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.3s ease-in;
    --bs-btn-color: var(--light-color);
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #46ad76;
    --bs-btn-hover-border-color: #46ad76;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--light-color);
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--light-color);
    --bs-btn-disabled-bg: #d3d7dd;
    --bs-btn-disabled-border-color: var(--primary-color);
}

.btn-outline-primary {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.3s ease-in;
    --bs-btn-color: var(--primary-color);
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--primary-color);
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--primary-color);
    --bs-btn-disabled-bg: #d3d7dd;
    --bs-btn-disabled-border-color: var(--primary-color);
    --bs-gradient: none;
}

.btn-outline-dark {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in;
}

.btn-dark {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in;
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--dark-color);
    --bs-btn-border-color: var(--dark-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #212529;
    --bs-btn-hover-border-color: #212529;
    --bs-btn-focus-shadow-rgb: 66, 70, 73;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--dark-color);
    --bs-btn-active-border-color: var(--dark-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--dark-color);
    --bs-btn-disabled-border-color: var(--dark-color);
}

/* body {
  letter-spacing: 0.01625rem;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--bs-body-color);
    font-weight: 700;
    text-transform: capitalize;
}

a {
    text-decoration: none;
}

.breadcrumb {
    --bs-breadcrumb-item-active-color: var(--dark-color);
}

.form-control {
    border: 1px solid #e4e3e3;
}

.form-control:focus {
    border-color: #949494;
    outline: 0;
    box-shadow: none;
}

.padding-large {
    padding-top: 18rem;
    padding-bottom: 14rem;
}

.padding-medium {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.padding-medium-2 {
    padding-top: 11rem;
    padding-bottom: 8rem;
}

@media only screen and (max-width: 767px) {
    .padding-large {
        padding-top: 10rem;
        padding-bottom: 5rem;
    }
    .map {
        height: auto;
        width: 300px;
        /* width: 650px; */
        /* margin: 3rem 8rem; */
    }
    .padding-medium {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .padding-medium-2 {
        padding-top: 12rem;
        padding-bottom: 6rem;
    }
}

/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/
/* 6.1 Header
--------------------------------------------------------------*/
/* Preloader */
.preloader-wrapper {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 111;
    background: #fff;
}

.preloader-wrapper .preloader {
    margin: 20% auto 0;
    transform: translateZ(0);
}

.preloader:before,
.preloader:after {
    content: "";
    position: absolute;
    top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
    border-radius: 50%;
    width: 2em;
    height: 2em;
    animation: animation 1.2s infinite ease-in-out;
}

.preloader {
    animation-delay: -0.16s;
}

.preloader:before {
    left: -3.5em;
    animation-delay: -0.32s;
}

.preloader:after {
    left: 3.5em;
}

@keyframes animation {
    0%,
    80%,
    100% {
        box-shadow: 0 2em 0 -1em var(--primary-color);
    }

    40% {
        box-shadow: 0 2em 0 0 var(--primary-color);
    }
}

@media screen and (max-width: 991px) {
    /* offcanvas menu */
    .offcanvas-body .nav-item {
        font-weight: 700;
        border-bottom: 1px solid #d1d1d1;
    }

    /* dropdown-menu */
    .dropdown-menu {
        padding: 0;
        border: none;
        line-height: 1.4;
        font-size: 0.9em;
    }
}

/*----- Nav Section Style -------------------------*/
/* nav bar style  */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.nav-link {
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* dropdown style */
.dropdown-item {
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.5rem 1rem;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--body-text-color);
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--light-grey-color) !important;
}
.nav-item a {
    text-decoration: none;
    color: #000;
    position: relative;
}

.nav-item.active a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #505050;
}

.nav-item a {
    transition: color 0.3s;
}

.nav-item.active a::after {
    transition: width 0.3s;
}

/*----- Feature Section Style -------------------------*/

.feature-item {
    box-shadow: 4px 4px 10px rgba(150, 150, 150, 0.192);
    background: var(--light-color);
    cursor: pointer;
}

.feature-item:hover {
    background: var(--primary-color);
    transition: all 0.3s ease-in;
}

.feature-title {
    font-weight: 900;
    text-transform: uppercase;
    color: var(--secondary-color);
    transition: all 0.3s ease-in;
}

.feature-info {
    transition: all 0.3s ease-in;
}

.feature-item:hover .feature-info,
.feature-item:hover .feature-title {
    color: var(--light-color);
}

@media only screen and (min-width: 1400px) {
    #features {
        position: relative;
    }

    .feature-box {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media only screen and (max-width: 1399px) {
    .feature-box {
        margin-top: 120px;
    }
}

/*----- catergory Section Style -------------------------*/
.category-paragraph {
    transition: all 0.3s ease-in;
}

.primary {
    background: var(--bs-primary-bg-subtle);
    transition: all 0.3s ease-in;
}

.svg-primary {
    color: var(--primary-color);
    transition: all 0.3s ease-in;
}

.primary:hover {
    background: var(--bs-primary);
}

.secondary {
    background: var(--bs-secondary-bg-subtle);
    transition: all 0.3s ease-in;
}

.svg-secondary {
    color: var(--secondary-color);
    transition: all 0.3s ease-in;
}

.secondary:hover {
    background: var(--bs-secondary);
}

.tertiary {
    background: var(--bs-tertiary-bg-subtle);
    transition: all 0.3s ease-in;
}

.svg-tertiary {
    color: var(--bs-tertiary);
    transition: all 0.3s ease-in;
}

.tertiary:hover {
    background: var(--bs-tertiary);
}

.gray {
    background: #e0e5eb;
    transition: all 0.3s ease-in;
}

.svg-gray {
    color: var(--bs-gray);
    transition: all 0.3s ease-in;
}

.gray:hover {
    background: var(--bs-gray);
}

.primary:hover .svg-primary,
.primary:hover .category-paragraph,
.secondary:hover .svg-secondary,
.secondary:hover .category-paragraph,
.tertiary:hover .svg-tertiary,
.tertiary:hover .category-paragraph,
.gray:hover .svg-gray,
.gray:hover .category-paragraph {
    color: var(--light-color);
}

/*----- courses Section Style -------------------------*/
h5.course-title {
    transition: all 0.3s ease-in;
}

h5.course-title:hover {
    color: var(--primary-color);
}

/*----- testimonial Section Style -------------------------*/
.swiper-pagination {
    position: unset;
}

.swiper-pagination-bullet {
    width: var(
        --swiper-pagination-bullet-width,
        var(--swiper-pagination-bullet-size, 10px)
    );
    height: var(
        --swiper-pagination-bullet-height,
        var(--swiper-pagination-bullet-size, 10px)
    );
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--bs-primary);
    background: var(--bs-primary);
}

/*----- teacher Section Style -------------------------*/
.team-member ul.social-links {
    top: 0;
}

.team-member ul li {
    padding: 5px;
    transform: rotatey(-90deg) perspective(100px);
    transform-origin: left;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    background-color: var(--primary-color);
}

.team-member ul li:first-of-type {
    transition-delay: 0.3s;
}

.team-member ul li:nth-of-type(2) {
    transition-delay: 0.6s;
}

.team-member ul li:nth-of-type(3) {
    transition-delay: 0.9s;
}

.team-member ul li:last-of-type {
    transition-delay: 1.3s;
}

.team-member:hover ul li {
    transform: rotatey(0deg);
}

/* Zoom Effect*/
.zoom-effect {
    position: relative;
    overflow: hidden;
}

.zoom-effect img {
    max-width: 100%;
    -webkit-transition: 0.6s ease-out;
    -moz-transition: 0.6s ease-out;
    transition: 0.6s ease-out;
}

.zoom-effect:hover img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.zoom-effect:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    opacity: 0;
    -moz-transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.zoom-effect:hover:before {
    opacity: 1;
    cursor: pointer;
}

/*----- register Section Style -------------------------*/
#register {
    background: var(--tertiary-color);
}

/*----- footer Section Style -------------------------*/
a.footer-link:hover {
    color: var(--primary-color);
}
.footer-link {
    text-decoration: underline;
}

svg.social-icon {
    color: var(--light-dark-color);
    transition: all 0.3s ease-in;
}

svg.social-icon:hover {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
faqs page style start
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
    color: var(--body-text-color);
    background-color: transparent;
    box-shadow: none;
}

.accordion {
    --bs-accordion-color: var(--light-text-color);
    --bs-accordion-bg: none;
    --bs-accordion-btn-color: var(--body-text-color);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("https://api.iconify.design/eva/arrow-down-fill.svg?color=%234cc082");
}

.accordion-button::after {
    background-image: url("https://api.iconify.design/eva/arrow-down-fill.svg?color=%234cc082");
}

.accordion-button:focus {
    z-index: 3;
    border-color: none;
    box-shadow: none;
}

/*--------------------------------------------------------------
Checkout page style start
--------------------------------------------------------------*/
.form-check-input {
    border: 1px solid var(--primary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/*--------------------------------------------------------------
Styles page style start
--------------------------------------------------------------*/
.chocolat-wrapper {
    z-index: 9999;
}

/*--------------------------------------------------------------
Account page style start
--------------------------------------------------------------*/
.nav-tabs .nav-item.show .nav-link.account-tab,
.nav-tabs .nav-link.account-tab {
    color: var(--light-dark-color);
}

.nav-tabs .nav-item.show .nav-link.account-tab,
.nav-tabs .nav-link.account-tab.active {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
Blog page style start
--------------------------------------------------------------*/

/* ------ Pagination ------*/
.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: 0;
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: 0;
    --bs-pagination-hover-color: var(--light-color);
    --bs-pagination-hover-bg: var(--bs-primary);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--light-color);
    --bs-pagination-focus-bg: var(--bs-primary);
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-active-color: var(--light-color);
    --bs-pagination-active-bg: var(--bs-primary);
    --bs-pagination-active-border-color: var(--bs-primary);
    --bs-pagination-disabled-color: var(--bs-primary-color);
    --bs-pagination-disabled-bg: var(--bs-primary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

/*--------------------------------------------------------------
Single Product page style start
--------------------------------------------------------------*/
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: var(--bs-body-color);
    background-color: var(--primary-color);
}

/* product-thumbnail-slider */
.product-thumbnail-slider {
    height: 660px;
}

/*--------------------------------------------------------------
  Shop page style
  --------------------------------------------------------------*/
.product-box {
    width: 25%;
}

@media screen and (max-width: 800px) {
    .product-box {
        width: 50%;
    }
}

.product-store .product-item {
    position: relative;
}

.product-item .cart-concern {
    background: var(--light-color);
    width: 80%;
    text-align: center;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 180px;
    z-index: 9;
    transition: 0.5s ease-out;
    padding: 20px 30px;
    opacity: 0;
}

.product-item:hover .cart-concern {
    bottom: 150px;
    opacity: 1;
}

.cart-concern .cart-button button {
    background: none;
    color: var(--dark-color);
    height: auto;
    padding: 0;
    margin: 0;
}

.cart-concern .cart-button button i.icon {
    font-size: 15px;
}

.product-item .wishlist-btn i.icon.icon-heart {
    font-size: 20px;
}

.product-item .item-price {
    font-size: 1.8em;
}

/*--------------------------------------------------------------
  course detail page style
  --------------------------------------------------------------*/
.nav-tabs .nav-item {
    transition: all 0.1s ease-in;
    border-radius: 0px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--bs-primary);
    background-color: transparent;
    border-color: transparent;
    border-bottom: 4px solid var(--bs-primary);
    transition: all 0.1s ease-in;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    color: var(--bs-primary);
    isolation: isolate;
    border-color: transparent;
    border-bottom: 4px solid var(--bs-primary);
    transition: all 0.1s ease-in;
}

/*---- video section style start ----*/

/* color box style */
div#cboxOverlay {
    opacity: 0.8 !important;
}

.video .video-player {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

iconify-icon.video-icon {
    font-size: 30px;
    color: var(--bs-light);
    border-radius: 6.25rem;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.4s ease-in-out;
}

iconify-icon.video-icon:hover {
    font-size: 35px;
}

.container-video {
    position: relative;
    width: 95%; /* Set the width of the container */
    /* Optional: Set a maximum width if needed */
    margin: 0 auto; /* Center the container horizontally */
}
.container-video2 {
    position: relative;
    width: 100%; /* Set the width of the container */
    /* Optional: Set a maximum width if needed */
    margin: 0 auto; /* Center the container horizontally */
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* height: 500px; */
    overflow: hidden;
}

.background-video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content-video {
    position: relative;
    z-index: 1; /* Ensure the content appears above the video */
}
.welcome-text {
    font-family: "popin", sans-serif;
    font-size: 47.9px;
    font-weight: 500;
    white-space: pre-wrap;
    transition-timing-function: ease;
    transition-duration: 0.6s;
    transition-delay: 0.245455s;
    text-align: center;
    color: #e2f3f0;
    height: 505px;
    text-align: center;
    align-content: center;
}
.sunset-bg {
    background-image: url("../images/sunset.jpeg");
}

.container-solar {
    background-image: url("../images/sunset.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    /* position: relative; */
    width: 95%;

    height: 743px;
}

.container-install {
    background-image: url("../images/solar-install.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 95%;
    height: 743px;
}

.grow {
    text-align: center;
    font-family: "popin", sans-serif;
    font-size: 47.104px;
    padding-top: 96px;
    font-weight: 500;
}
.map {
    height: auto;
    width: 400px;
    /* width: 650px; */
    /* margin: 3rem 8rem; */
}
.content-wrapperw {
    height: 743px;
}

.sky,
.sky2 {
    background-image: url("../images/sky.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 95%;

    height: 743px;
}
.sky2 {
    background-image: url("../images/warehouseimg.jpeg");
}

.solar-text {
    padding-top: 95px;
    text-align: center;
    font-family: "poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    h2 {
        font-weight: 500;
        font-size: 47.104px;
    }
}

.blue-pic {
    width: 125px;
    height: 72px;
}
.mission-solar {
    width: 124px;
    height: 65px;
}
.untitle-09 {
    width: 198px;
    height: 103px;
}
.distribution-text {
    color: rgb(255, 255, 255);
    display: block;
    font-family: Poppins;
    font-size: 47.104px;
    font-style: normal;
    font-weight: 500;
    /* height: 61.1875px; */
    letter-spacing: normal;
    line-height: 61.1975px;
}
.distribution-bg {
    background-image: url("../images/warehouseimg.jpeg");
}
.labour {
    background-image: url("../images/25ED11.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 95%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.labour-text {
    color: rgb(255, 255, 255);
    display: block;
    font-family: Poppins;
    font-size: 47.104px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 61.1975px;
    text-align: center;
}
.para-text {
    color: rgb(255, 255, 255);
    display: block;
    font-family: Poppins;
    font-size: 19.456px;
    font-style: normal;
    font-weight: 500;
    height: 27.0104px;
    letter-spacing: normal;
    line-height: 27.0205px;
}
.section-pic {
    background-image: url("../images/contact.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 81px 0px;
}
.img-container {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 95%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.professional-bg {
    background-image: url("../images/professionalBackimg.jpeg");
    height: 70vh;
}
.wareHouse_div {
    position: relative;
}
.for_opacity {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.text-overlay {
    background-color: rgba(0, 0, 0, 0.558);
    padding: 60px;
    position: relative;
    width: 90%;
    opacity: 0.8;
    letter-spacing: 2px;
    text-align: center;
    h1 {
        color: white;
    }
    h2 {
        font-size: 50px;
        margin: 10px 0px;
    }
    p {
        font-size: 20px;
        font-weight: 800;
        line-height: 30px;
    }
}
.Our_process_text {
    width: 76%;
    margin: auto;
    text-align: center;
    h1 {
        font-size: 60px;
        color: white;
        font-weight: 600;
        margin-bottom: 50px;
        line-height: 30px;
    }
    p {
        font-size: 22px;
        line-height: 30px;
        font-weight: 500;
        color: white;
        margin-bottom: 20px;
    }
}
.logos_div {
    display: flex;
    justify-content: center;
    gap: 20px;
    img {
        margin-top: 20px;
        width: 20%;
    }
}
.black-background {
    background-color: rgba(0, 0, 0, 0.67);
    opacity: 1;
    overflow-wrap: break-word;
    padding: 65.4688px;
}
.contact-text {
    display: block;
    font-family: "poppins", sans-serif;
    font-size: 42.784px;
    font-style: normal;
    font-weight: 500;
    height: 55.5833px;
    letter-spacing: normal;
    line-height: 55.585px;
}
.container-pic {
    /* width: max-width; */
    height: 359px;
}
.blue-background {
    background-color: #ff8500;
    width: 100%;
    height: auto;
}
.container-form {
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    padding: 20px;
    border-radius: 10px;
}
.light_weight {
    font-weight: 300;
}
.form-box {
    background-color: rgb(168, 195, 220);
    padding: 30px;
    width: 95%;
    height: 100%;
}

.form-box h2 {
    text-align: center;
    color: #ffffff;
    background-color: hsl(209, 43%, 76%);
    padding: 10px 0;
    border-radius: 10px 10px 0 0;
}

.form-box label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

.form-box input[type="text"],
.form-box input[type="email"],
.form-box select {
    width: 100%;
    padding: 15px;
    margin-top: 5px;
    border-radius: 36px; /* Define the border-radius for pill shape */
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: hsla(
        55,
        23.08%,
        89.8%,
        1
    ); /* Use the given background color */
}

.form-box input[type="checkbox"] {
    width: auto;
    margin-right: 10px; /* Optional: add some space between the checkbox and the label */
}

.form-box .form-group {
    margin-bottom: 20px;
}

.form-box .form-group.inline {
    display: flex;
    gap: 10px; /* Adjust gap between fields as needed */
}

.form-box .form-group.inline input[type="text"] {
    flex: 1;
}

.footer-logo {
    /* width: 141px !important; */
    /* height: 141px !important; */
}

.form-box input[type="checkbox"] {
    display: none; /* Hide the default checkbox */
}

.form-box input[type="checkbox"] + label {
    position: relative;
    padding-left: 35px; /* Adjust based on the size of the custom checkbox */
    cursor: pointer;
}

.form-box input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    border-radius: 50%; /* Makes it rounded */
    background-color: #fff; /* Background color of the checkbox */
    border: 1px solid #ccc; /* Border of the checkbox */
    box-sizing: border-box;
}

.form-box input[type="checkbox"]:checked + label::before {
    background-color: #4caf50; /* Change to your desired checked color */
    border: 1px solid #4caf50; /* Border color when checked */
}

.form-box input[type="checkbox"] + label::after {
    content: "";
    position: absolute;
    left: 5px; /* Adjust based on the size of the custom checkbox */
    top: 5px; /* Adjust based on the size of the custom checkbox */
    width: 10px; /* Adjust size as needed */
    height: 10px; /* Adjust size as needed */
    border-radius: 50%; /* Makes it rounded */
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
}

.form-box input[type="checkbox"]:checked + label::after {
    opacity: 1;
}

.black-button {
    align-items: flex-start;
    appearance: none;
    backface-visibility: hidden;
    background-attachment: scroll;
    background-clip: border-box;
    background-color: rgb(0, 0, 0);
    background-image: none;
    background-origin: padding-box;
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    border-bottom-color: rgb(0, 0, 0);
    border-bottom-left-radius: 6.4px;
    border-bottom-right-radius: 6.4px;
    border-bottom-style: solid;
    border-bottom-width: 0px;
    border-image-outset: 0;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    border-left-color: rgb(0, 0, 0);
    border-left-style: solid;
    border-left-width: 0px;
    border-right-color: rgb(0, 0, 0);
    border-right-style: solid;
    border-right-width: 0px;
    border-top-color: rgb(0, 0, 0);
    border-top-left-radius: 6.4px;
    border-top-right-radius: 6.4px;
    border-top-style: solid;
    border-top-width: 0px;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-block;
    font-family: Poppins;
    font-feature-settings: normal;
    font-kerning: auto;
    font-optical-sizing: auto;
    font-size: 16px;
    font-stretch: 100%;
    font-style: normal;
    font-variant-alternates: normal;
    font-variant-caps: normal;
    font-variant-east-asian: normal;
    font-variant-ligatures: normal;
    font-variant-numeric: normal;
    font-variant-position: normal;
    font-variation-settings: normal;
    font-weight: 500;
    height: 64.9167px;
    letter-spacing: 0.32px;
    line-height: normal;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    overflow-wrap: break-word;
    padding-block-end: 20.8px;
    padding-block-start: 20.8px;
    padding-bottom: 20.8px;
    padding-inline-end: 34.736px;
    padding-inline-start: 34.736px;
    padding-left: 34.736px;
    padding-right: 34.736px;
    padding-top: 20.8px;
    text-align: center;
    text-indent: 0px;
    text-rendering: auto;
    text-shadow: none;
    text-size-adjust: 100%;
    text-transform: none;
    transition-behavior: normal;
    transition-delay: 0s;
    transition-duration: 0.1s;
    transition-property: opacity;
    transition-timing-function: linear;
    /* width: 129.083px; */
    word-spacing: 0px;
    -webkit-font-smoothing: antialiased;
}
.contact-text {
    opacity: 0; /* Initially invisible */
    /* Add any other styles for the contact text here */
}
.pop_in {
    font-family: "poppins";
}
#bussiness-id {
    opacity: 0;
    font-size: 40px;
    font-family: "poppins";
    font-weight: 500;
}
#individual-contact {
    opacity: 0;
    font-size: 40px;
    font-family: "poppins";
    font-weight: 500;
}
#form-box {
    opacity: 0;
}

/*----------------------COMPANY---------------------------*/

.company-container {
    min-height: 90vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
}
.company-background {
    background-image: url("../images/solar\ house.jpg");
    background-position: center;
}
.brown-background {
    background-image: url("../images/Install\ pic.jpg");
}
.house-background {
    background-image: url("../images/our-mission-bg.jpeg");
}
.blue-bg {
    background-color: #ff8500;
}
.text_width {
    width: 600px;
}
.welcome_heading {
    font-size: 60px;
    font-weight: 500;
}
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
.home-owner_btn {
    display: flex;
    gap: 10px;
    width: 50%;
    margin: auto;
}
.images_flexDiv {
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-device-width: 1024px) {
    .form-box .form-group.inline {
        display: block;
        gap: 10px;
    }
    #bussiness-id {
        font-size: 35px;
    }
    #individual-contact {
        font-size: 35px;
    }
}
@media only screen and (max-device-width: 768px) {
    .text_width {
        width: 90%;
    }
    .welcome-text {
        height: 70vh;
    }
    .container-solar {
        min-height: 70vh;
    }
    .grow {
        font-size: 30px;
    }
    .welcome-text {
        font-size: 30px;
    }
    .company-container {
        min-height: auto;
        padding: 20px 0px;
    }
    .solar-text {
        padding-top: 30px;
    }
    .blue-pic {
        width: 60%;
        height: auto;
    }
    .mission-solar {
        width: 60%;
        height: auto;
    }
    .untitle-09 {
        width: 60%;
        height: auto;
        padding: 20px;
    }
    .distribution-text {
        height: auto;
        font-size: 40px;
    }
    .sky {
        height: auto;
    }
    .images_flexDiv {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .labour-text {
        font-size: 30px;
    }
    .home-owner_btn {
        display: block;
        gap: 10px;
        width: 100%;
        margin: auto;
    }
    .Our_process_text {
        h1 {
            font-size: 30px;
        }
        p {
            font-size: 18px;
        }
    }
    #bussiness-id {
        font-size: 30px;
    }
    #individual-contact {
        font-size: 30px;
    }
    .contact-text {
        font-size: 35px;
    }

    .form-box {
        background-color: rgb(168, 195, 220);
        padding: 20px;
        width: 100%;
        height: 100%;
    }
    .black-background {
        padding: 20px;
        height: 30vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
/* ---------what happen details page ________ */
.during_dot {
    position: relative;
}
.during_dot::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background-color: black;
    border-radius: 50%;
    top: 30%;
    left: -20px;
}
/* __________Career----------- */

.career_Blackdiv {
    padding: 120px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background-image: url("../images/bubleimg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    h1,
    p {
        color: white;
    }
}

.paragraph_text {
    line-height: 30px;
    margin: 10px 0px;
    font-weight: 500;
}
.eave-btn-size {
    height: 60px;
}
.contact_evaBtn {
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    display: block;
    margin: 20px auto;
    width: 280px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    &:hover {
        opacity: 0.9;
    }
}
.partial_login {
    text-align: center;
    padding: 14px 20px;
    border-radius: 5px;
    display: block;
    margin: 20px auto;
    font-size: 14px;
    border: none;
    outline: none;
    font-weight: 500;
    &:hover {
        opacity: 0.9;
    }
}
.back_Color {
    width: 95%;
    margin: auto;
    position: relative;
    overflow: hidden;
}
#video-bg {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}
.how_Work_eva {
    width: 80%;
    margin: auto;
    color: white;

    h1 {
        color: white;
        font-size: 60px;
        font-weight: 500;
        margin: 40px 0px;
    }
    h3 {
        color: white;
        font-weight: 500;
        font-size: 40px;
        margin-bottom: 30px;
    }
    .bg-sky {
        background-image: url("../images/bluesky.jpeg") !important;
    }
    h5 {
        color: white;
        font-size: 20px;

        margin-bottom: 10px;
    }
    p {
        line-height: 30px;
    }
}

.backgroundImage {
    padding: 30px;
    background-color: #ccc;
    .img {
        height: 600px;
        object-fit: cover;
        width: 100%;
    }
}
.dropdownData {
    padding: 5px;
}
.dropdown__hoverdiv {
    border: 1px solid transparent;
    border-radius: 0px !important;
    width: 200px;
}

.video-container {
    width: 100%;
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 8px;
    padding: 40px 0px;
}

.video-container video {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
    border-radius: 4px;
    border: none;
}
.background_videoDiv {
    background-color: #ff8500;
    h2 {
        font-weight: 500;
    }
}
.map__div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    h2 {
        margin-top: 30px;
        color: white;
        font-size: 40px;
        font-weight: 500;
    }
    img {
        width: 50%;
        display: block;
        margin: 10px auto;
    }
}
.bg_blueColor {
    background-color: #ff8500;
}
.black-box {
    width: 70% !important;
    text-size-adjust: 16em;
    line-height: 30px !important;
}
/* .sqs-video-background-native{
  height: 92% !important;
} */
.video-1 {
    height: 569px !important;
}
.iframe-video2 {
    width: 100%;
    height: 600px;
}

.small-black-box {
    width: 40% !important;
}
.ptb {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.Mian_cards_div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    .Cards {
        background-color: white;
        width: 430px;
        margin: 20px 10px;
        padding: 30px;
        height: 550px;
        h3 {
            font-weight: 500;
        }
        p {
            margin-top: 20px;
            line-height: 25px;
            font-size: 16px;
            font-weight: 300;
        }
    }
}
.Energy_cards {
    img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        margin-bottom: 10px;
    }
    h3 {
        padding: 10px;
        text-align: center;
        font-size: 28px;
        font-weight: 500;
        margin: 0px;
    }
    p {
        text-align: center;
        margin-bottom: 5px;
    }
}
.readmore {
    text-decoration: underline;
}
.home_skyBAck {
    height: 100vh;
    background-image: url("../images/bluesky.jpeg") !important;
}
.heading_detailss_page {
    font-family: "poppins";
    font-weight: 500;
    font-size: 60px;
    color: black;
}
.detailss__div {
    font-weight: 300;
    font-family: "poppins";
    margin-top: 70px;
    line-height: 25px;
}
.next_link {
    font-weight: 500;
    font-size: 30px;
}
.career_image {
    height: 100vh;
    object-fit: cover;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 1024px) {
    .heading_detailss_page {
        font-size: 30px;
    }
    .career_image {
        height: auto;
        object-fit: cover;
    }
    .next_link {
        font-weight: 500;
        font-size: 22px;
    }
    .detailss__div {
        margin-top: 40px;
    }
    .footer-logo {
        display: block;
        margin: auto;
    }
    .home_skyBAck {
        height: auto;
        padding: 30px 0px;
    }
    .contact_evaBtn {
        width: 270px;
    }
    .text-overlay {
        padding: 10px;
    }
    .Mian_cards_div {
        .Cards {
            width: 300px;
            margin: 10px;
        }
    }
    .how_Work_eva {
        width: 100%;
        h1 {
            color: white;
            font-size: 40px;
        }
        h3 {
            font-size: 30px;
        }
    }
    .logos_div {
        display: block;
        img {
            width: 280px;
        }
    }
    .background_videoDiv {
        background-color: #ff8500;
        h2 {
            font-size: 20px;
        }
    }
    .video-container {
        width: 100%;
        width: 90%;
        margin: 0 auto;
        padding: 10px;
        border-radius: 8px;
        padding: 40px 0px;
    }
    .map__div {
        height: auto;
        h2 {
            font-size: 30px;
        }
        img {
            width: 80%;
        }
    }
}
@media (max-width: 506px) {
    .black-box {
        width: 95% !important;
    }

    .small-black-box {
        width: 95% !important;
    }
    .pop-in-fonts {
        font-size: 12px !important;
    }
    .welcome_heading {
        font-size: 24px;
        font-weight: 500;
    }
    .video-1 {
        height: 340px !important;
    }
}
@media (min-width: 509px) and (max-width: 769px) {
    .welcome_heading {
        font-size: 40px;
    }
}
@media (min-width: 769px) and (max-width: 988px) {
    .home-owner_btn {
        margin-left: 66px !important;
    }
}
