/* Base CSS */

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
    color: #1B1B21;
    font-family: 'Gotham';
}

body {
    color: #1E1F20;
    font-weight: 400;
    font-family: 'Gotham Rounded';
}

@font-face {
    font-family: 'Gotham Rounded';
    src: url('../fonts/GothamRounded-Medium.eot');
    src: url('../fonts/GothamRounded-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GothamRounded-Medium.woff2') format('woff2'),
        url('../fonts/GothamRounded-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Rounded';
    src: url('../fonts/GothamRounded-Book.eot');
    src: url('../fonts/GothamRounded-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GothamRounded-Book.woff2') format('woff2'),
        url('../fonts/GothamRounded-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamBold.eot');
    src: url('../fonts/GothamBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GothamBold.woff2') format('woff2'),
        url('../fonts/GothamBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --theme__color1: #008930;
}

.selector-for-some-widget {
    box-sizing: content-box;
}

a:hover {
    text-decoration: none
}

/*---------------------- Header area start ----------------------*/

.menu-close {
    font-size: 20px;
    color: #3d424e;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: .4s;
    border: 1px solid #bebebe !important;
    width: 30px;
    height: 30px;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-close:hover {
    color: #fff;
    background: var(--theme__color1);
    border-color: var(--theme__color1);
}

.offcanvas-area {
    position: fixed;
    left: -100%;
    height: 100%;
    width: 300px;
    background: #F5FCFF;
    z-index: 6;
    padding-top: 35px;
    -webkit-transition: .4s;
    transition: .4s;
    visibility: hidden;
    top: 0;
}

.offcanvas-area.active {
    left: 0;
    visibility: visible;
}

.offcanvas-area .main-menu ul li a {
    display: flex;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    padding: 14px 18px;
    color: #1E1F20;
    letter-spacing: 1.2px;
    text-align: start;
    border-bottom: 1px solid #0a090945;
    transition: .3s;
    justify-content: space-between;
    align-items: center;
}

.main-menu ul li:first-child a {
    border-top: 1px solid #0a090945;
}


.main-menu ul li a.active,

.main-menu ul li a:hover {
    color: var(--theme__color1);
}

.offcanvas-area .main-menu ul li a:hover, .offcanvas-area .main-menu ul li a[aria-expanded="true"] {
    color: var(--theme__color1);
}
.offcanvas-area .main-menu ul li a[aria-expanded="true"] i{
    transform: rotate(180deg)
}
.offcanvas-area .main-menu ul li a  i{
    transition: .3s
}
.offcanvas-menu .main-menu > ul { 
    padding-top: 78px;
    padding-left: 0;
    margin-bottom: 65px;
    list-style: none;
}

.offcanvas-menu .main-menu   ul{
    list-style:none;
    padding-left: 0;
}

.offcanvas-menu .main-menu ul li ul li:first-child a{
    border-top: 0;
}
.offcanvas-menu .main-menu   ul li ul a{
    font-size: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 30px
}
.offcanvas-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 5;
}

.offcanvas-overlay.active {
    opacity: .4;
    visibility: visible;
}

.menu-open {
    font-size: 25px;
    color: #fff;
    cursor: pointer;
    position: relative;
    top: 2px;
    margin-left: 20px;
    margin-right: 8px;
    transition: .3s;
}

.menu-open:hover {
    color: #000;
}

.offcanvas-menu .common-btn {
    font-size: 17px;
    padding: 11px 45px;
    width: initial;
    display: inline-block;
}

.subb-menu {
    padding-left: 10px;
}

.offcanvas-area .main-menu .subb-menu a {
    font-size: 16px;
    margin: 0px;
    padding-left: 10px;
    margin-left: 26px;
    margin-bottom: 10px;
}

.offcanvas-area .main-menu .subb-menu a:last-child {
    margin-bottom: 20px;
}

.header {
    padding: 15px 0;
    background: #008930;
}

.header-nav ul li a {
    color: #fff;
    transition: .3s;
    display: inline-block;
    text-decoration: none;
    margin: 0 19px;
    font-size: 18px;
    font-weight: 500;
}

.header-nav ul li a:hover,
.header-nav ul li a.active {
    color: #D6DD21;
}

.header-btn a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border: 1px solid #89C33F;
    border-radius: 18px 1px 18px 2px;
    transition: .3s;
    padding: 11px 25px;
    line-height: 1.2;
}

.header-btn a:hover {
    background: #89C33F;
    color: #fff;
}

.header-nav ul li {
    position: relative;
    padding: 10px 0;
}

.header-nav ul li ul {
    position: absolute;
    top: 115%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 4px 10px #00000121;
    margin: 0;
    padding: 0;
    list-style: none;
    left: 2px;
    width: 193px;
    transition: .3s;
    padding: 16px 15px;
    z-index: 5;
    opacity: 0;
    visibility: hidden
}

.header-nav ul li:hover>ul {
    top: 97%;
    opacity: 1;
    visibility: visible
}

.header-nav ul li ul li {
    padding: 0;
}

.header-nav ul li ul li a {
    margin: 0;
    padding: 8px 4px;
    color: #000;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1;
}

.header-nav ul li ul li a:hover {
    color: #008930;
}

.header-nav ul li ul::after {
    position: absolute;
    top: -13px;
    left: 18px;
    content: '';
    clip-path: polygon(52% 18%, 0% 100%, 100% 100%);
    background-color: #fff;
    height: 15px;
    width: 20px;
}

.training-icon {
    position: absolute;
    max-width: 130px;
}

.t-3.training-icon {
    bottom: -26px;
    right: 146px;
    z-index: 1;
}

.t-2.training-icon {
    right: 115px;
    top: 22px;
}

.t-1.training-icon {
    top: 106px;
    left: 12px;
}

.bubble {
    cursor: pointer;
    position: relative;
    -webkit-animation: move 4s cubic-bezier(0.71, -0.33, 0.57, 0.9) 0s infinite;
    animation: move 4s cubic-bezier(0.71, -0.33, 0.57, 0.9) 0s infinite;
    border-radius: 50%;
}

.tooltip-inner {
    max-width: 280px;
    padding: 11px;
    line-height: 1.3;
}

@-webkit-keyframes move {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes move {

    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/*---------------------- Header area end ----------------------*/


/*---------------------- Hero area start ----------------------*/
.hero-area {
    padding: 100px 0;
}

.hero-bg {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: auto;
    min-height: 500px;
}

.hero-logo {
    max-width: 7040px;
    margin: 0 auto;
    margin-bottom: 50px;
}

/* .hero-area p {
    color: #006837;
    font-weight: 500;
    text-align: center;
    font-size: 32px;
} */

.hero-slider-wrapper {
    position: absolute;
    max-width: 578px;
    top: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 380px;
}

.laptop {
    max-width: 810px;
    margin: 0 auto;
}

/*---------------------- Hero area end ----------------------*/


/*---------------------- Service area start ----------------------*/
.service-area {
    background: #038930;
    padding-top: 80px;
    padding-bottom: 45px;
    color: white;
}

.service-area a{
    color: white;
    text-decoration: none;
}

.service-area p{
    padding: 10px;
    font-weight: bold;
    font-size: 15px;
    margin: 10px 0;
}

.common-content h3 {
    font-size: 35px;
    position: relative;
    margin-bottom: 32px;

}

.service-brand-logo {
    padding: 0 10px;
    width: 13%;
    height: 150px;
    text-align: center;
    margin-bottom: 20px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.service-logos {
    max-width: 100%;
    margin: 0 auto;
}

/*---------------------- Service area end ----------------------*/


/*---------------------- Club area start ----------------------*/
.club-area {
    /* background: url(../img/dark-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
    padding-top: 70px;
    padding-bottom: 20px;
}

.club-logo {
    max-width: 460px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.has-after {
    position: relative;
}

.has-after::after {
    bottom: -6px;
    left: 0;
    width: 110px;
    height: 3px;
    background: #39B24A;
    content: '';
    position: absolute;
}

.accordion-button {
    background: #1e99d4;
    background: -moz-linear-gradient(left, #1e99d4 0%, #2989d8 65%, #2989d8 65%, #0075bb 100%);
    background: -webkit-linear-gradient(left, #1e99d4 0%, #2989d8 65%, #2989d8 65%, #0075bb 100%);
    background: linear-gradient(to right, #1e99d4 0%, #2989d8 65%, #2989d8 65%, #0075bb 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e99d4', endColorstr='#0075bb', GradientType=1);
    color: #fff !important;
    font-size: 20px;
    font-weight: 500;
    border: 0 !important;
    border-radius: 44px 5px 5px 5px !important;
    padding: 19px 42px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.accordion-button--green {
    background: linear-gradient(to right, #008930, #48AC48);
}

.accordion-item {
    background: transparent;
    box-shadow: unset;
    border: 0;
    color: #fff;
    margin-bottom: 30px;
}

.accordion-item--dark {
    color: #000;
}

.accordion-body {
    padding: 22px 27px;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: none;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    background-color: transparent;
    transition: transform .2s ease-in-out;
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-weight: 200;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-49%) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: rotate(-180deg);
    content: "\f068";
}

.faq-wrapper {
    max-width: 490px;
}

.video-thumb {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 40px;
    height: 306px;
    border-radius: 10px;
    overflow: hidden;
}

.video-thumb>a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-thumb>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.common-btn {
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    color: #fff !important;
    border-radius: 60px 5px 60px 5px;
    transition: .3s;
    padding: 21px 48px;
    line-height: 1.2;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f4901e+0,ee5a24+61,b24116+100 */
    background: #f4901e;
    /* Old browsers */
    background: -moz-linear-gradient(top, #f4901e 0%, #ee5a24 61%, #b24116 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #f4901e 0%, #ee5a24 61%, #b24116 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #f4901e 0%, #ee5a24 61%, #b24116 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4901e', endColorstr='#b24116', GradientType=0);
    /* IE6-9 */

    max-width: 350px;
    width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.com-sm-button {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #fff !important;
    border-radius: 50px 5px 50px 5px;
    transition: .3s;
    padding: 13px 48px;
    line-height: 1.2;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f4901e+0,ee5a24+61,b24116+100 */
    background: #f4901e;
    /* Old browsers */
    background: -moz-linear-gradient(top, #f4901e 0%, #ee5a24 61%, #b24116 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #f4901e 0%, #ee5a24 61%, #b24116 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #f4901e 0%, #ee5a24 61%, #b24116 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4901e', endColorstr='#b24116', GradientType=0);
    /* IE6-9 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.com-sm-button.curve-lt {
    border-radius: 50px 5px 5px 5px;
}

/*---------------------- Club area end ----------------------*/


/* ---common--- */
.h2 {
    font-size: 26px;
    margin: 0 0 24px;
}

.h2-b {
    font-size: 29px;
    position: relative;
    top: 2px;
}

.cont-blk {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cont-blk--center {
    align-items: center;
    text-align: center;
}

.cont-blk .line {
    margin: 0 0 30px;
    height: 4px;
    width: 80px;
    border-radius: 30px;
    background: #39B24A;
}

.cont-blk .p {
    font-size: 15px;
    color: #000;
    font-weight: 500;
}

.cont-blk .bottom-button {
    margin-top: 30px;
}

/* ---common---end */


/* ---training-area--- */
.training-area {
    padding: 40px 0;
    overflow: hidden;
}

.training-area__inner {}

.training-area__title {}

.style-title {
    padding: 21px 20px;
    margin: 0 0 40px;
    background: linear-gradient(to right, #008930, #48AC48);
    color: #fff;
    border-radius: 60px 5px 60px 5px;
    position: relative;
}

.style-title h2 {
    color: #fff;

}

.style-title::after {
    content: '';
    height: 100%;
    width: 5000px;
    display: block;
    position: absolute;
    right: calc(100% - 80px);
    top: 0;
    background: #008930;
    z-index: -1;
}

.style-title--right::after {
    background: #48AC48;
    left: calc(100% - 80px);
    right: unset;
}

.training__row {
    align-items: center;
}

.training__content {}

.training__content .cont-blk {}

.training__content .cont-blk .training-ul {
    margin: 30px 0 20px 35px;
}

.training-ul {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.training-ul .cli {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    gap: 20px;
}

.training-ul .cli .icon {
    width: 30px;
}

/* ---training-area---end */



/* ---cal-area--- */
.cal-area {
    padding: 100px 0 50px;
}

.cal-area__inner {}

.cal__row {}

.cal__image-side {}

.cal__image__title {}

.cal__image-side .img {
    max-width: initial;
    width: 132%;
    margin-left: -30%;
}

.cal-content-side {}

.cal-content-side .faq-wrapper {}

/* ---cal-area---end */


/* ---solar-area--- */
.solar-area {
    padding: 90px 0 80px;
    position: relative;
    z-index: 3;
}

.solar-area::after {
    content: '';
    height: 500px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../img/knowledge-bg.png') no-repeat center center/cover;
    z-index: -1;
}

.solar-area__inner {}

.solar-area__title {
    margin: 0 0 60px;
}

.solar-area__title h2 {
    color: #fff;
}

.solar-cards-wrap {
    gap: 140px;
    display: flex;
    justify-content: center;
}

.solar-card {}

.solar-card__image {}

.solar-card__image .img {}

.solar-card__tc {
    padding: 35px 20px;
    display: flex;
    justify-content: center;
}

.solar-card__tc .button {}

/* ---solar-area---end */



/* ---brand-section--- */
.brand-section {
    padding: 80px 0;
    /* background: #EFEFEF; */
}

.brand-section__inner {}

.brand-section__title {
    margin: 0 0 40px;
}

.brands__wrapper {
    display: grid;
    grid-gap: 43px;
    grid-template-columns: repeat(5, 1fr);
}

.brands__wrapper2 {
    display: grid;
    grid-gap: 43px;
    margin-top: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.single-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-brand .img {}

/* ---brand-section---end */


/* ---work-area--- */
.work-area {
    padding: 80px 0;
    overflow: hidden;
}

.work-area__inner {}

.work-area__title {
    margin: 0 0 70px;
}

.work__gird {}

.work__single {}

.work__single .img {
    width: 100%;
}

/* ---work-area---end */


/* ---footer-section--- */
.footer-section {
    padding: 55px 0;
    background: var(--theme__color1);
}

.footer-section__inner {}

.footer__top {
    gap: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 170px;
    display: block;
}

.footer-logo img {}

.fs-menu {
    gap: 16px;
    display: flex;
    padding: 0;
}

.fs-menu li {
    list-style: none;
}

.fs-menu li a {
    height: 41px;
    width: 41px;
    font-size: 25px;
    color: var(--theme__color1);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.fs-menu li a:hover {}

.copy-right {
    font-weight: 14px;
    font-weight: 500;
    margin: 30px auto 0;
    text-align: center;
    color: #fff;
}

/* ---footer-section---end */