
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* 
Font family
-----------------------------------------------

font-family: "Montserrat", sans-serif;
font-family: "Roboto", sans-serif;

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

:root {

/* -----PRMIARY-COLOR----------- */
--primary-green: #174f3d;
--primary-blue: #003abc;
--primary-teal: #008065;
--primary-sky: #148ccd;


/* -----SECONDARY-COLOR----------- */
    --secondary-charcoal: #3e4c59;
    --secondary-slate: #616e7c;
    --secondary-steel: #7b8794;

    --secondary-off-white: #f5f7fa;

    --secondary-light-gray: #f1f1f1;

    --black-grey: #1b1b1b;
    --whitecolor:#FFFFFF;
    --blackcolor:#000000;
    --paracolor:#5e5e5e;

    --selection: #d9d9d9;

    --font-Montserrat: "Montserrat", sans-serif;
    --font-Roboto: "Roboto", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none !important;
    list-style: none;
    font-family: var(--font-Lato);
}

body,
ul,
li,
a {
    font-family: var(--font-Roboto);
    font-size: 20px;
    color: var(--greycolor);
}

body {
    max-width: 100%;
    overflow-x: hidden !important;
    background: var(--whitecolor) !important;
}

hr.wp-block-separator {
    color: transparent !important;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 20;
    content: " ";
    clear: both;
    height: 0;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.grecaptcha-badge {
    z-index: 99;
}


/* == SELECTION-CSS ==
===============================================================*/

::-moz-selection {
    background: var(--selection);
    color: var(--blackcolor);
}

::-webkit-selection {
    background: var(--selection);
    color: var(--blackcolor);
}

::selection {
    background: var(--selection);
    color: var(--blackcolor);
}

/* == SELECTION-CSS ==
===============================================================*/


#wpadminbar {
    z-index: 100001999 !important;
}

body.admin-bar div#page-container {
    padding-top: 170px !important;
}

div#page-container {
    margin-top: 0 !important;
}



.container,
.et_pb_row {
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
    padding-left: 24px !important;
    padding-right: 24px !important;
}


/* == TYPOGRAPHY-CSS == 
===============================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 30px 0 10px;
    padding: 0;
}

h1,
h1 a,
.common-outer h1,
.common-outer h1 a {
    font-family: var(--font-Montserrat);
    font-weight: 600;
    font-size: 44px;
    color: var(--primary-green);
    text-align: initial;
    line-height: 1.25 ;
}

h2,
h2 a,
.common-outer h2,
.common-outer h2 a {
    font-family: var(--font-Montserrat);
    font-weight: 600;
    font-size: 36px;
    color: var(--primary-green);
    line-height: 28px;
}

h3,
h3 a,
.common-outer h3,
.common-outer h3 a {
    font-family: var(--font-Montserrat);
    font-weight: 600;
    font-size: 30px;
    color: var(--primary-green);
    line-height: 31px;
}

h4,
h4 a,
.common-outer h4,
.common-outer h4 a {
    font-family: var(--font-Montserrat);
    font-weight: 600;
    font-size: 24px;
    color: var(--primary-green);
    line-height: 39px;
}

h5,
h5 a,
.common-outer h5,
.common-outer h5 a {
    font-weight: 600;
    font-size: 48px !important;
    color: var(--primary-green);
    text-align: initial;
    line-height: 50px !important;
    font-family: var(--font-Montserrat);
}

h6,
h6 a,
.common-outer h6,
.common-outer h6 a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px !important;
    color: var(--primary-green);
    text-align: initial;
    line-height: 27px !important;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    text-align: initial;
    font-family: var(--font-Montserrat);
}

a {
    text-decoration: underline;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-sky);
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
}

a:hover {
    color: var(--primary-green);
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
}
div#wpadminbar a {
        text-decoration: none;
}

strong {
    font-weight: 700 !important;
}

span.nav-click {
    font-size: 0;
    position: relative;
    padding: 16px 25px 16px 20px;
    cursor: pointer;
    right: 0px;
    top: 4px;
    transform: translateX(0%);
}

span.nav-click::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 9px;
    background-image: url(../images/arrow_menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(0deg);
    left: auto;
    top: 7px;
    right: 18px;
    transition: 0.4s;
}

.menu-mobile-menu-container ul#menu-mobile-menu > li.menu-item.minus span.nav-click::before {
    rotate: 180deg;
    transition: 0.4s;
}

.sub-menu li span.nav-click {
    top: 14px;
    z-index: 999;
}

 blockquote p {
    margin-bottom: 0;
    
}


 blockquote p {
    font-family: var(--font-Roboto-Condensed);
    font-size: 52px !important;
    line-height: 52px !important;
    font-weight: 700;
    color: var(--primary-navy) !important;
}



p {
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--paracolor);
    line-height: 1.8;
    padding: 0px;
    margin-bottom: 6px;
}

.entry-content ul, .team-popup-right ul, .expertise-outer-section ul {
    margin-bottom: 0px;
    margin-top: 20px;
    padding: 0;
    padding-left: 18px !important;
}
.popup-member-outer .popup-inner-blog .popup-right ul {
    margin-bottom: 0px;
    margin-top: 28px;
    padding: 0;
    padding-left: 9px !important;
}

.entry-content ul li, .team-popup-right ul li, .expertise-outer-section ul li {
    font-family: var(--font-Roboto);
    font-weight: 400;
    font-size: 16px;
    color: var(--paracolor);
    line-height: 27px !important;
    padding-left: 18px;
    padding-bottom: 2px;
    position: relative;
}

.popup-member-outer .popup-inner-blog .popup-right ul li {
    font-family: var(--font-Roboto);
    font-weight: 400;
    font-size: 17px;
    color: var(--secondary-charcoal) ;
    line-height: 27px !important;
    padding-left: 42px;
    padding-bottom: 24px;
    position: relative;
}

.entry-content ul li::before, .expertise-outer-section ul li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: var(--paracolor);
    left: 1px;
    top: 11px;
    border-radius: 100px;
}

.popup-member-outer .popup-inner-blog .popup-right ul li::before {
    position: absolute;
    content: "";
    background: url(../images/checkmark.svg);
    width: 23px;
    height: 23px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 0;
    top: 5px;
    left: 0;
    filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(686%) hue-rotate(168deg) brightness(93%) contrast(90%);
}
 .team-popup-right ul li::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background: var(--whitecolor);
    left: 1px;
    top: 11px;
    border-radius: 100px;
}

.entry-content ol {
    padding-left: 35px !important;
    margin-bottom: 0px;
    margin-top: 20px;
    text-align: left;
    padding-bottom: 0;
}
.popup-full ol {
    padding-left: 55px;
    margin-bottom: 0px;
    margin-top: 20px;
    text-align: left;
    padding-bottom: 0;
}

.entry-content ol li, ol li {
    font-family: var(--font-Roboto);
    font-weight: 400;
    font-size: 17px;
    color: var(--paracolor);
    line-height: 27px !important;
    padding-left: 0px;
    padding-bottom: 10px;
    position: relative;
    list-style-type: decimal !important;
}


.popup-inner ul li {
    font-size: 17px;
    color: var(--paracolor) !important;
    line-height: 27px !important;
    padding-left: 11px;
    padding-bottom: 10px;
    position: relative;
}
.popup-inner ul li::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background: var(--primary-green);
    left: 1px;
    top: 11px;
    border-radius: 100px;
}

.callout-1 blockquote p, .callout-1 blockquote  {
    font-family: var(--font-Roboto);
    font-size: 52px !important;
    line-height: 52px !important;
    font-weight: 700;
    color: var(--paracolor) !important;
}
.callout-2 blockquote p, .callout-1 blockquote  {
    font-family: var(--font-Roboto);
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 500;
    color: var(--paracolor) !important;
}
.callout-3 blockquote p, .callout-1 blockquote  {
    font-family: var(--font-Roboto);
    font-size: 32px !important;
    line-height: 40px !important;
    font-weight: 700;
    color: var(--paracolor) !important;
    font-style: italic;
}

blockquote {
    padding-left: 0;
    border: none;
}



/* == TYPOGRAPHY-CSS == 
===============================================================*/


/* GREY BACKGROUND SECTION TYPOGRAPY CSS ::::::::::::::::::::::::::  */


.grey-bg-section a.arrow-button {
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    font-family: var(--font-Reddit);
    font-size: 16px;
    font-weight: 700 !important;
    color: var(--whitecolor);
    text-transform: uppercase;
    transition: 0.5s ease !important;
    overflow: hidden;
    position: relative;
    text-decoration: none !important;
}

.grey-bg-section a.read-more-toggle {
    text-decoration: underline !important;
    color: var(--whitecolor) !important;
    font-weight: 400 !important;
    text-transform: uppercase;
}
.grey-bg-section a {
    text-decoration: underline !important;
    color: var(--whitecolor) !important;
}


/* DARK BACKGROUND SECTION TYPOGRAPY CSS ::::::::::::::::::::::::::  */






/* == FORM-TYPOGRAPHY-CSS == 
===============================================================*/

::placeholder {
    font-family: var(--font-Roboto);
    color: var(--secondary-charcoal) !important;
    text-transform: none;
    font-size: 17px !important;
    font-weight: 400;
}

input {
    width: 100%;
    border: 1px solid var(--secondary-charcoal) !important;
    display: block;
    color: var(--secondary-charcoal) !important;
    font-family: var(--font-Roboto);
    border-radius: 0 !important;
    padding: 17px 13px !important;
    font-size: 17px;
}

.get-free-section .get-free-clmn-three form input {
    width: 100%;
    border-bottom: 1px solid #000;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    display: block;
    font-family: var(--font-Roboto);
    color: var(--blackcolor) !important;
    font-size: 16px !important;
    border-radius: 0 !important;
    appearance: none;
    -webkit-appearance: none;
}

textarea {
    height: 120px;
    resize: none;
    width: 100%;
    border: 1px solid var(--secondary-charcoal) !important;
    display: block;
    color: var(--secondary-charcoal) !important;
    font-family: var(--font-Roboto);
    border-radius: 0 !important;
    padding: 17px 13px !important;
    font-size: 17px;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.wpcf7-not-valid {
    border: none;
    border: 1px solid #fa3040 !important;
}

.invalid .wpcf7-response-output {
    text-align: center;
    color: #fa3040;
    border: 2px solid #fa3040 !important;
    width: 100%;
    font-weight: 600;
    margin: 20px 0px 10px !important;
    padding: 4px !important;
    font-size: 12px;
    text-transform: none;
    line-height: 19px;
}

.wpcf7 form.sent .wpcf7-response-output {
    text-align: center;
    color: #41ce41;
    border: 2px solid #41ce41 !important;
    width: 96%;
    font-weight: 450;
    margin: 20px 10px 10px !important;
    padding: 4px !important;
    font-size: 12px;
    text-transform: none;
    line-height: 19px;
}

/* .wpcf7-not-valid-tip {
    display: none !important;
} */

.wpcf7-not-valid-tip {
    padding-top: 10px;
}

.get-free-section .get-free-clmn-three form .wpcf7-response-output {
    margin: 0px auto 20px !important;
}

/* wpcf7 form wpcf7-response-output 
===============================================================*/




/* SCROLL_TO_TOP_CSS_START ==
===============================================================*/

.et_pb_scroll_top.et-pb-icon {
    /* background: var(--primary-teal); */
    border-radius: 0;
    border: 0px;
    transition: 0.5s ease;
width: 65px;
    height: 65px;
    overflow: hidden;
    right: 20px;
    background: transparent;

}

/* .et_pb_scroll_top.et-pb-icon:hover {
    background: var(--whitecolor);
    border-radius: 0;
    border: 1px solid var(--greycolor);
    transition: 0.5s ease;
} */


.et_pb_scroll_top.et-pb-icon::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/top-bg.svg);
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    transition: 0.5s ease;
    opacity: 1;
    animation: rotateBg 12s linear infinite;
}

/* Rotation keyframes */
@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.et_pb_scroll_top.et-pb-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/arrow.svg);
    background-position: center;
    background-size: 23%;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    transition: 0.5s ease;
    opacity: 1;
    z-index: 9;
}



/* SCROLL_TO_TOP_CSS_END
===============================================================*/






/* ERROR PAGE CSS CODE ::::::::::::::::::::::::::::::::::::::::::::: */

.page_not_found_sec .page_not_found_row .page-not-clmn {
    text-align: center;
}

.page_not_found_sec .page_not_found_row .page-not-clmn .et_pb_text_inner {
    text-align: center;
}

.page_not_found_sec .page_not_found_row .page-not-clmn .et_pb_text_inner h1 {
    text-align: center;
    padding-bottom: 30px;
    font-family: var(--font-Reddit) !important;
}

.et_pb_row.page_not_found_row {
    padding: 30px 80px !important;
}

/* ERROR PAGE CSS CODE ::::::::::::::::::::::::::::::::::::::::::::: */








/* THANK PAGE CSS CODE ::::::::::::::::::::::::::::::::::::::::::::: */

.tq-txt-inner .et_pb_text_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tq-title-heading h1 {
    margin-top: 0;
}

.tq-txt-inner h1,
.tq-txt-inner p {
    text-align: center !important;
}

.tq-txt-inner h1 {
    font-family: var(--font-Reddit) !important;
    padding-bottom: 30px;
}

.thanku-txt-sec .et_pb_row {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

/* THANK PAGE CSS CODE ::::::::::::::::::::::::::::::::::::::::::::: */






/* BTN CSS CODE :::::::::::::::::::::::::::::::::::::::::: */



/* BTN ONE CSS CODE :::::::::::::::::::::::::::::::::::::::::: */



/* BTN ONE CSS CODE :::::::::::::::::::::::::::::::::::::::::: */



/* BUTTON CSS :::::::::::::::::::::::::::::: */



a.common_button {
    font-size: 18px;
    border: 0 !important;
    text-decoration: none !important;
    color: var(--whitecolor) !important;
    background: var(--primary-green) !important;
    font-weight: 600;
    border-radius: 0 !important;
    padding: 13px 31px 13px 31px !important;
    transition: 0.2s;
}
a.common_button::after {
    display: none;
}
a.common_button:hover {
        border: 0 !important;
    color: var(--whitecolor) !important;
    background:  #216952 !important;
    transition: 0.2s;
 }
 

/* BTN CSS CODE :::::::::::::::::::::::::::::::::::::::::: */





ul.et-social-icons li.et-social-icon a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
ul.et-social-icons li.et-social-facebook a::after {
    background: url(../images/ftr_Facebook.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
ul.et-social-icons li.et-social-facebook a::before {
    opacity: 0;
}





/* HEADER CSS CODE ::::::::::::::::::::::::::::::::::::::::::::::::: */


/* TOP-HEADER CSS CODE --------- */

div#top-header {
    background: var(--primary-green);
        transform: 0.2s !important;
}
div#top-header .container {
    padding: 5px 0 5px 0px;
}

.outer-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
div#top-header .container div#et-info {
    width: 100% !important;
        padding: 0;
}
.top-header-description a.top-header-over-fund {
    text-decoration: none;
}
.top-header-description a.top-header-over-fund p {
    color: white;
    margin-bottom: 0;
    font-size: 16px !important;
    transition: 0.5s ease;
}
.header-inner-2 {
    color: white;
    font-size: 18px;
    line-height: normal;
}
.header-inner-2 a {
    display: block;
    text-decoration: none;
    font-size: 16px !important;

}



header.et-fixed-header {
    padding-bottom: 10px;
}
header.et-fixed-header .logo_container {
    position: relative;
    width: 114px !important;
    height: 70px !important;
}
header.et-fixed-header {
    top: 0 !important;
    transform: 0.2s !important;
}

.top-header-outer-cont.et-fixed-header {
    top: -90px !important;
    transition: 0.3s;
}

header#main-header .logo_container a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100% !important;
    min-height: 100% !important;
}

header#main-header {
    box-shadow: none !important;
        transform: 0.2s !important;
}

header#main-header .logo_container {
    position: relative;
    width: 166px;
    height: 100px;
}
header#main-header .logo_container span.logo_helper {
    display: none;
}
header#main-header .logo_container a {
    display: block;
        width: 100%;
    height: 100%;
}

header#main-header .container {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: center;
}

header#main-header {
    padding-bottom: 0;
}

header#main-header .container::after {
    display: none;
}

header#main-header div#et-top-navigation {
    padding-left: 0 !important;
    padding-top: 15px !important;
}

nav#top-menu-nav ul#top-menu li.menu-item a {
    font-size: 16px;
    position: relative;
    color: var(--primary-green);
    padding-bottom: 11px;
    font-weight: 400;
    opacity: 1 !important;
}
nav#top-menu-nav ul#top-menu li.menu-item.current_page_item a {
    color: var(--black-grey) !important;
}
nav#top-menu-nav ul#top-menu li.menu-item {
    padding-left: 5px;
}
/* nav#top-menu-nav ul#top-menu li.menu-item a::before {
    position: absolute;
    content: "";
    background-color: var(--primary-green);
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: 0.3s;
} */
/* nav#top-menu-nav ul#top-menu li.menu-item a:hover::before {
        width: 100%;
            transition: 0.3s;
} */
nav#top-menu-nav ul#top-menu li.menu-item.current_page_item a::before {
    position: absolute;
    content: "";
    background-color: var(--black-grey);
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
}




/* FOOTER CSS CODE ::::::::::::::::::::::::::::::::::::::::::::::::: */


footer#main-footer {
    background: white;
}
.outer-top-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
}


.phone-foo a {
 color: var(--primary-green);
 text-decoration: none;
}


.address-foo p {
    text-align: center;
    color: var(--black-grey);
}
.address-foo {
    padding-bottom: 10px;
}

.address-foo h6 {
    text-align: center;
    margin-top: 21px;
    margin-bottom: 15px;
    font-size: 16px !important;
    color: #1b1b1b;
    font-family: 'Roboto', sans-serif !important;
}




/* -------HOME-PAGE-BANNER---- */



.outer-column-home {
    padding-top: 0 !important;
        padding-bottom: 0 !important;
}

.outer-column-home .image-home {
    padding-top: 0px;
}


.outer-column-home .image-home span.et_pb_image_wrap {
    width: 100%;
    margin: 0px !important;
    padding-bottom: 56%;
    position: relative;
    display: block;
}
.outer-column-home .image-home span.et_pb_image_wrap img {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}


.convenience_section {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}


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

.consluting-content {
    margin-top: 65px;
}

.Bannerheading-class h1.et_pb_module_heading {
    margin-top: 0 !important;
}
.Convenienceclass-outer {
    padding-top: 30px !important;
}

.conveniencestore-class {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.conveniencestore-class :where(h1, h2, h3, h4, h5, h6) {
    text-align: center;
}
.conveniencestore-class .Homeimage-column {
    margin: 0 !important;
    width: 30.5%;
}

.conveniencestore-class .Homeimage-column span.et_pb_image_wrap {
    width: 100%;
    margin: 0px !important;
    padding-bottom: 75%;
    position: relative;
    display: block;
}

.conveniencestore-class .Homeimage-column span.et_pb_image_wrap img {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}
.conveniencestore-class::after {
    display: none;
}
.Homeimage-column .et_pb_main_blurb_image {
    margin-bottom: 0;
        width: 100%;
}
.Homeimage-column .et_pb_main_blurb_image a {
            width: 100%;
}
.conveniencestore-class  h3.et_pb_module_header {
    margin-top: 26px;
}
.carosel-image-row {
    padding-top: 5px !important;
}

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



.carousel-gallery .et_pb_gallery_item  {
    margin: 0 !important;
    width: 100% !important;
}
.section-image-carousel .et_pb_gallery_items.et_post_gallery    {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.carousel-gallery .et_pb_gallery_item .et_pb_gallery_image {
    position: relative;
    height: 100% !important;
}
.carousel-gallery .et_pb_gallery_item .et_pb_gallery_image a {
    width: 100%;
    margin: 0px !important;
    padding-bottom: 108%;
    /* height: 0; */
    position: relative;
    display: block;
    overflow: hidden;
}
.carousel-gallery .et_pb_gallery_item .et_pb_gallery_image img:hover {
    transform: scale(1.2);
    transition: 0.3s;
}


.carousel-gallery .et_pb_gallery_item .et_pb_gallery_image img {
    height: 100% !important;
        position: absolute;
    top: 0;
    left: 0px;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}
.carousel-gallery .et_pb_gallery_item .et_pb_gallery_image img {
    height: 100% !important;
    transition: 0.3s;
}

.section-image-carousel {
    padding-top: 0 !important;
        padding-bottom: 10px !important;
}







/* -----------------SERVICES_PAGES------------------ */


.et_pb_gutters3 .et_pb_column {
    margin-right: 4.5%;
}

.img-left-cmn-inner .img-left-side{
    margin-right: 48px;
}

.what_text_class p {
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    width: 100%;
    line-height: 22px;
}

.what_text_class {
  text-align: center !important;
}

.what_text_class p::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #ccc;
    right: 0;
    z-index: -1;
}
.what_text_class p span {
    background: white;
    padding: 0 20px 0 20px;
}


.what_text_class p::after {
  left: 100%;
  margin-left: 20px; 
}

.common_class_heading {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.common_class_heading .whatrow_class {
    padding-bottom: 0;
}



.img-left-cmn-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.img-left-side   span.et_pb_image_wrap {
    width: 100%;
    margin: 0px !important;
    padding-bottom: 75%;
    position: relative;
    display: block;

}

.img-left-side   span.et_pb_image_wrap img {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.img-left-cmn-inner {
    display: flex;
    /* flex-wrap: wrap; */
}



.img-right-cmn-section {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}




.sec-img-side span.et_pb_image_wrap {
    width: 100%;
    margin: 0px !important;
    padding-bottom: 75%;
    position: relative;
    display: block;

}

.sec-img-side span.et_pb_image_wrap img {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.img-right-cmn-inner {
    display: flex;
    /* flex-wrap: wrap; */
}

.img-right-side h3.et_pb_module_heading {
    margin-top: 5px;
}

.sec-content-side h3.et_pb_module_heading {
    margin-top: 5px !important;
}


/* -----------------SERVICES_PAGES------------------ */




/* -----------------PORTFOLIO_PAGES------------------ */

.portfolio-row-inner .portfolio-item .et_pb_button_module_wrapper {
    padding-top: 26px;
}

.portfolio_outer_class {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.siteplans-gallery {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.portfolio-row-inner h6.et_pb_module_heading {
    margin-top: 0;
    text-align: center;
}
.portfolio-row-inner .portfolio-item .port-img {
    margin-bottom: 24px !important;
}
.portfolio-row-inner .portfolio-item .port-content {
    margin-bottom: 5px !important;
}

.portfolio-row-inner :where(h1, h2, h3, h4, h5, h6, p) {
        margin-top: 0;
    text-align: center;

}

.portfolio-row-inner .port-heading {
    margin: 0 0 25px 0px !important;
}



.portfolio-row-inner {
    display: grid;
    /* padding-top: 0 !important; */
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}


.et_pb_row.et_pb_row_2.portfolio-row-inner {
    padding-top: 0;
}


.port-img span.et_pb_image_wrap {
    width: 100%;
    margin: 0px !important;
    padding-bottom: 50%;
    position: relative;
    display: block;
}

.port-img span.et_pb_image_wrap img {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.port-content p {
    text-align: center;
}
.portfolio-item   .et_pb_button_module_wrapper {
    text-align: center;
}






.siteplans-gallery-row .et_pb_gallery_item .et_pb_gallery_image a {
        width: 100%;
    margin: 0px !important;
    padding-bottom: 75%;
    position: relative;
    display: block;
    overflow: hidden;
}

.siteplans-gallery-row .et_pb_gallery_item .et_pb_gallery_image a img {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100% !important;
    height: 100%;
    object-fit: cover;

}
.section-image-carousel span.et_overlay {
    display: none;
}

/* .siteplans-gallery-row .et_pb_gallery_item .et_pb_gallery_image a img:hover {
            transform: scale(1.05);
          transition: 0.3s;
} */
.carousel-gallery .et_pb_gallery_item .et_pb_gallery_image img:hover {
                transform: scale(1.05);
          transition: 0.3s;
}


.siteplans-gallery-row .et_pb_gallery_items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
        gap: 7px;
}
.siteplans-gallery-row .et_pb_gallery_item {
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.portfolio-row-inner .portfolio-item {
    margin: 0 !important;
    width: 100% !important;
}
.portfolio-row-inner::after {
    display: none;
} 







.port-details-sec {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.port-details-sec  .port-details-row {
    max-width: 767px !important;
}

.port-details-col {
    text-align: center;
}
.port-details-content {
    text-align: center !important;
}





/* -----------------PORTFOLIO_PAGES------------------ */



.mfp-image-holder .mfp-content {
    max-width: 100%;
    width: 40% !important;
    margin-top: 30px;
}

.mfp-content img.mfp-img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}



.siteplans-gallery-row span.et_overlay {
    display: none;
}


/* EQUIPMENT PAGE DESIGN START==================================================================*/

.equipment-heading h3 {
    margin: 27px 0px 0 0;
}

.mini-container {
    max-width: 774px;
    margin: auto;
}

.equipement-grid-section .et_pb_column {
    width: 30%;
    margin: 0;
}

.equipement-grid-section {
    display: flex;
    gap: 50px;
    justify-content: space-between !important;
    flex-wrap: wrap;
    flex-direction: row;
}
.equipement-grid-section::after{
    display: none;
}

.equipement-grid-section .et_pb_column span{
    width: 100% !important;
}

.equipement-grid-section .et_pb_column img {
    width: 100% !important;
}

.equipment-content {
    width: 98%;
}

button.mfp-close {
    cursor: pointer !important;
}

.caro_outer_row .et_pb_gallery_items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}


.caro_outer_row .et_pb_gallery_items .et_pb_gallery_item {
    width: 32.5% !important;
    margin: 0 !important;
}

.caro_outer_row .et_pb_gallery_items .et_pb_gallery_item img {
    width: 100%;
}

.equipment_title {
    margin-bottom: 20px !important;
}

.mfp-container.mfp-image-holder.mfp-s-ready {
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
}

.equipment-inner .clearfix .et_pb_gallery_item {
    margin: 0 !important;
    width: 30%;
}


.equipment-inner .clearfix {
    display: flex;
    gap: 50px !important;
    justify-content: space-between !important;
    flex-wrap: wrap;
    flex-direction: row;
}

.equipment-inner .clearfix img {
    width: 100%;
}

.et_pb_gallery_image:hover .et_overlay{
    opacity: 0;
}

.et_pb_gallery_pagination ul{
    display: flex;  
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 30px !important;
    gap: 15px;
}

.et_pb_gallery .et_pb_gallery_pagination ul li::before{
    display: none !important;
}

.et_pb_gallery .et_pb_gallery_pagination ul li{
    padding: 0;
}

.et_pb_gallery .et_pb_gallery_pagination ul li a {
    display: inline-block;
    padding: 14px 18px;
    text-decoration: none !important;
    color: #FFFFFF !important;
    background: var(--primary-green) !important;
}

.et_pb_gallery .et_pb_gallery_pagination ul li a:hover{
    border: 0 !important;
    color: var(--whitecolor) !important;
    background: #216952 !important;
    transition: 0.2s;
}

button.mfp-close {
    position: fixed;
    right: 10% !important;
    top: 10% !important;
}

.mfp-figure figure img {
    padding-top: 0;
    padding-bottom: 0;
}

 #top-header a:hover{
    color: #c1c1c1 !important;
    transition: 0.5s ease;
}   

.top-header-description a.top-header-over-fund p:hover {
    color: #c1c1c1 !important;
    transition: 0.5s ease;
}

.mfp-image-holder .mfp-close{
    opacity: 1;
}

/* EQUIPMENT PAGE DESIGN END ==================================================================*/


/* TONE PAGE DESIGN START ==================================================================*/

.et-social-icons li {
    margin-left: 0;
}

.tone_heading_title h3 {
    margin-top: 0 !important;
}

.tone-container {
    display: flex;
    justify-content: center;
    max-width: 1120px !important;
}


/* TONE PAGE DESIGN END ==================================================================*/

/* EV CHARGES PAGE DESIGN START ==================================================================*/

.banner_outer_section {
    max-width: 1160px;
    margin: auto;
    width: 82.5%;
    position: relative;
}

.banner_outer_text_row h1 {
    margin: 0;
    padding-left: 25px;
}

.banner_outer_section::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000045;
}

.banner_outer_section .et_pb_row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_outer_section .et_pb_row .banner_outer_text_row {
    width: 80%;
    margin-right: 0;
}

.banner_outer_section .et_pb_row .banner_outer_button {
    width: 20%;
    padding-right: 20px;
    text-align: center;
}

.banner_outer_section .et_pb_row .banner_outer_button a.learn_more_button {
    border: 1px solid white;
    color: white;
    text-decoration: none;
    position: relative;
    padding: 13px 42px;
    border-radius: 0;
    font-size: 18px !important;
}

.banner_outer_section .et_pb_row .banner_outer_button a.learn_more_button::after{
    content: "";
    position: absolute;
    top: 50%;
    width: 19px;
    height: 1px;
    background: #ccc;
    right: 15px;
    z-index: 1;
    opacity: 1;
}

.banner_outer_section .et_pb_row .banner_outer_button a.learn_more_button::before {
    content: "" !important;
    position: absolute;
    top: 50%;
    width: 19px;
    height: 1px;
    background: #ccc;
    left: 15px !important;
    z-index: 1;
    opacity: 1;
    display: block;
    right: auto !important;
    margin-left: 0;
}

.banner_outer_section .et_pb_row .banner_outer_button a.learn_more_button:hover{
    padding: 13px 42px;
    background-color: rgb(23, 79, 61);
    border: 1px solid rgb(23, 79, 61);
}

.ev-charges-container .ev_gallery .et_pb_gallery_items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.ev-charges-container .ev_gallery .et_pb_gallery_items .et_pb_grid_item {
    margin: 0 !important;
    width: 100%;
} 

.ev-charges-container .ev_gallery .et_pb_gallery_items .et_pb_gallery_item_0_1 {
    grid-row: span 2;
}

.settings_text p {
    font-family: 'Roboto', arial, sans-serif;
}

.mfp-bottom-bar {
    top: 0;
}

/* EV CHARGES PAGE DESIGN END ==================================================================*/


/* CONTACT PAGE DESIGN START ==================================================================*/

.message_class h3 {
    margin-top: 0;
}

.contact-content p a {
    color: #174f3d;
    text-decoration: none;
}

.contact-content p:first-child {
    padding-bottom: 20px;
}

.contact-form form ul {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form form ul li {
    padding: 0;
}

.contact-form form ul li::before {
    display: none;
}

.contact-form form ul li input {
    background-color: rgb(241, 241, 241) !important;
    color: rgb(59, 59, 59) !important;
    border: 1px solid rgb(241, 241, 241) !important;
    transition: 0.3s ease;
}

.contact-form form ul li textarea {
    background-color: rgb(241, 241, 241) !important;
    color: rgb(59, 59, 59) !important;
    border: 1px solid rgb(241, 241, 241) !important;
    transition: 0.3s ease;
    resize: vertical;
}

.contact-form form ul li textarea:focus {
    box-shadow: currentcolor 0px 0px 0px 1px inset !important;
    transition: 0.3s ease;
}


.contact-form form ul li input:focus {
    box-shadow: currentcolor 0px 0px 0px 1px inset !important;
    transition: 0.3s ease;
}

.contact-form form ul li.checkbox span.wpcf7-list-item.first.last {
    width: 100%;
    margin: 0;
}

.contact-form form ul li.checkbox label{
    display: flex;
    width: 100%;
    gap: 10px;
}

.contact-form form ul li.checkbox label input[type="checkbox"] {
    width: 4%;
    cursor: pointer;
}

.contact-form form ul li.checkbox label span {
    width: 96%;
}

.contact-form form ul li.submit input {
    border: 1px solid #174f3d !important;
    text-decoration: none;
    background-color: white !important;
    position: relative;
    padding: 13px 42px;
    border-radius: 0;
    cursor: pointer;
    font-size: 18px !important;
    color: #174f3d !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.contact-form form ul li.submit input:hover{
    background-color: #174f3d !important;
    color: white !important;
}

.contact-form form ul li.submit input:focus {
    box-shadow: none !important;
}

.contact-form form ul li.submit input::before{
    content: "" !important;
    position: absolute;
    top: 50%;
    width: 19px;
    height: 1px;
    background: #174f3d;
    left: 15px !important;
    z-index: 1;
    opacity: 1;
    display: block;
    right: auto !important;
    margin-left: 0;     
}

.contact-form form ul li.submit input::after{
    content: "";
    position: absolute;
    top: 50%;
    width: 19px;
    height: 1px;
    background: #174f3d;
    right: 15px;
    z-index: 1;
    opacity: 1; 
}

.contact-form form ul li.checkbox label input[type="checkbox"]:focus {
    box-shadow: none !important;
}

.contact-form form ul li.submit span{
    display: none;
}

.recaptcha_class p a {
    color: #174f3d;
    text-decoration: none;
    font-size: 12px !important;
}

.recaptcha_class p {
    font-size: 12px !important;
}

/* CONTACT PAGE DESIGN END ==================================================================*/

/* 404 PAGE DESIGN START ==================================================================*/

.thank-you-sec .thank-you-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-bottom: 60px;
}

.thank-you-sec .thank-you-col .et_pb_button_module_wrapper a.outline-btn-r {
    font-size: 18px;
    border: 0 !important;
    text-decoration: none !important;
    color: var(--whitecolor) !important;
    background: var(--primary-green) !important;
    font-weight: 600;
    border-radius: 0 !important;
    padding: 13px 31px 13px 31px !important;
    transition: 0.2s;
}

.thank-you-sec .thank-you-col .et_pb_button_module_wrapper a.outline-btn-r:hover{
    border: 0 !important;
    color: var(--whitecolor) !important;
    background: #216952 !important;
    transition: 0.2s;
}


/* 404 PAGE DESIGN END ==================================================================*/

.privacy_policy_class {
    padding-top: 0 !important;
}

.current-year {
    display: flex;
    text-transform: uppercase;
    justify-content: center;
    font-size: 11px;
    line-height: 18px;
    font-weight: 300;
    gap: 5px;
    align-items: flex-start;
}

#footer-bottom {
    background-color: transparent;
    padding-top: 0 !important;
}

div#footer-info a {
    font-size: 11px;
    text-decoration: none;
    font-weight: 400;
}

div#footer-info {
    display: flex;
    font-size: 11px !important;
    text-transform: uppercase;
    gap: 4px;
    align-items: center !important;
    color: #5e5e5e;
    font-weight: 400;
}

div#footer-info p {
    font-size: 11px;
    margin-bottom: 0 !important;
}

div#footer-info a {
    font-size: 11px;
    text-decoration: none;
}

/* #footer-bottom {
    display: none;
} */