/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-size: 18px;
    font-weight: 400;
    color: #505155;
}

a {
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

a:hover {
    color: #23AA4A;
}

p {
    font-size: 18px;
    font-weight: 400;
}

h1 {
    font-size: 58px;
    font-weight: 700;
    color: #23AA4A;
    margin-bottom: 1rem;
}

h2 {
    font-size: 38px;
    font-weight: 700;
    color: #23AA4A;
    margin-bottom: 1rem;
}

h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 1rem;
}

h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

h5,
h6 {
    font-weight: 500;
    margin-bottom: 1rem;
}

.p-truncate-1 {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.btn-main,
.navbar .btn-main {
    display: inline-block;
    text-align: center;
    color: #fff !important;
    font-size: 18px;
    font-weight: 400;
    background-color: #23AA4A;
    border: 2px solid #23AA4A;
    border-radius: 22px 0;
    padding: 8px 58px;
    transition: 0.5s;
    box-shadow: 0px 4px 4px #00000040;
}
.navbar .btn-main {
    font-size: 20px;
    padding: 5px 20px;
    margin: 0 0 0 14px;
    box-shadow: none;
}

.btn-main:hover,
.navbar .btn-main:hover {
    color: #23AA4A !important;
    background-color: #fff;
}

.btn-main:focus,
.navbar .btn-main:focus {
    color: #fff !important;
    background-color: #23AA4A;
}

.btn-main.inner {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-wrap: nowrap;
    padding: 8px 20px;
}

.btn-back {
    display: flex;
    align-items: center;
    color: #505155;
    font-weight: 500;
    transition: 0.5s;
}

.btn-back img {
    width: auto;
    margin-right: 20px;
    transition: 0.5s;
}

.btn-back:hover img {
    transform: scale(1.1);
}

.btn-prev,
.btn-next {
    display: flex;
    align-items: center;
    color: #505155;
    font-weight: 500;
}

.btn-next {
    text-align: end;
}

.btn-prev svg {
    margin-right: 16px;
    flex-shrink: 0;
}

.btn-next svg {
    margin-left: 16px;
    flex-shrink: 0;
}

.btn-station {
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    text-align: center;
    color: #fff;
    font-size: 18px;
    background-color: #23AA4A;
    border: 2px solid #23AA4A;
    border-radius: 30px;
    padding: 0 6px 0 26px;
    transition: ease-in-out 0.5s;
    /* box-shadow: 0px 4px 4px #00000040; */
}
.btn-station svg {
    width: 45px;
    height: 45px;
    margin-left: 5px;
    transition: ease-in-out 0.5s;
}

.btn-station:hover {
    color: #23AA4A;
    background-color: #fff;
}
.btn-station:hover svg path {
    fill: #23AA4A;
}

.py-100 {
    padding: 100px 0;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.bg-green-light {
    background-color: #d1eed9;
}

.text-green-dark {
    color: #005132 !important;
}

.text-green-light {
    color: #23AA4A !important;
}

.img-rounded {
    border-radius: 30px;
}

.img-container {
    position: relative;
}

.no-banner {
    margin-top: 103px;
}

@media (max-width: 991px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }
    .container-xl {
        padding: 0 2rem;
    }
}

@media (max-width: 767px) {
    .btn-main {
        padding: 8px 38px;
    }
    .py-100 {
        padding: 50px 0;
    }

    .pt-100 {
        padding-top: 50px;
    }

    .pb-100 {
        padding-bottom: 50px;
    }

    .mt-80 {
        margin-top: 40px;
    }

    .mb-80 {
        margin-bottom: 40px;
    }
    .btn-prev svg,
    .btn-next svg {
        width: 30px;
    }
    .btn-prev svg{
        margin-right: 10px;
    }
    .btn-next svg {
        margin-left: 10px;
    }
}

@media (max-width: 575px) {
    .btn-back img {
        width: 40px;
    }
    .btn-prev svg,
    .btn-next svg {
        width: 25px;
    }
    .btn-prev svg {
        margin-right: 5px;
    }

    .btn-next svg {
        margin-left: 5px;
    }
}

@media (max-width: 374px) {
    .btn-main.inner {
        text-wrap: inherit;
        width: 90%;
    }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
    background-color: transparent;
    padding: 22px 0;
    z-index: 20;
    transition: all 0.5s;
}

#header.header-scrolled {
    background-color: #fff;
    padding: 10px 0 10px 0;
    box-shadow: 0 4px 8px #00000017;
}

@media (max-width: 768px) {
    #header {
        padding: 15px 0;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
    width: 100%;
}

/* .navbar-logo {
    padding: 5px 0 10px 0;
    border-bottom: 1px solid #0000004a;
} */

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: end;
    list-style: none;
    align-items: center;
    width: 100%;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    display: table-cell;
    position: relative;
    white-space: nowrap;
    padding: 0 0 0 18px;
}

.navbar>ul>li:first-child {
    padding: 0;
}

.navbar a {
    display: block;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    /* border-bottom: 2px solid #fff; */
    padding: 2px 2px 0;
    text-decoration: none;
}

.navbar a:hover,
.navbar a:focus,
.navbar a.active {
    color: #23AA4A !important;
}

.navbar a:hover svg path,
.navbar a.active svg path {
    fill: #23AA4A !important;
}

.navbar svg {
    transition: 0.3s;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    top: calc(100% + 10px);
    margin: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    width: auto;
}

.navbar .dropdown ul li {
    padding: 8px 0;
    min-width: 200px;
}

.navbar .dropdown ul li.radius-top {
    border-radius: 18px 18px 0 0;
}

.navbar .dropdown ul li.radius-bottom {
    border-radius: 0 0 18px 18px;
}

.navbar .dropdown ul li.radius-around {
    border-radius: 18px;
}

.navbar .dropdown ul a {
    padding: 0 20px;
    text-transform: none;
    color: #505155;
    font-weight: 400;
    border: none;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a,
.navbar .dropdown ul li.active>a {
    color: #fff !important;
}

.navbar .dropdown ul li:hover,
.navbar .dropdown ul li.active {
    background-color: #23AA4A;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 8px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown svg {
    transform: rotate(-90deg);
}

.navbar .dropdown .dropdown:hover svg path,
.navbar .dropdown li.active svg path {
    fill: #fff;
}

#header.header-scrolled .navbar a {
    color: #505155;
}

#header.header-scrolled .navbar svg path {
    fill: #505155;
}

.navbar .dropdown.changelang ul {
    width: 100%;
}
.navbar .dropdown.changelang ul li {
    min-width: auto;
}

@media (max-width: 1199px) {
    .navbar a {
        font-size: 18px;
    }
    .navbar .btn-main {
        font-size: 18px;
    }

    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
    .navbar .dropdown.changelang ul {
        right: 0;
    }
}

@media (max-width: 991px) {
    .navbar {
        justify-content: end;
    }

    .navbar ul {
        justify-content: unset;
    }

    .navbar-logo {
        padding-left: 0.75rem;
        border-bottom: none;
    }
    .navbar .dropdown.changelang ul {
        width: auto;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x,
#header.header-scrolled .mobile-nav-toggle.bi-x {
    color: #fff;
}

#header.header-scrolled .mobile-nav-toggle {
    color: #505155;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(28, 47, 65, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: grid;
    position: absolute;
    width: auto;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 18px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile svg path {
    fill: #505155;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 18px;
    color: #505155;
    border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #23AA4A !important;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul li:hover,
.navbar-mobile .dropdown ul li.active {
    background-color: #fff;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown ul li.active>a {
    color: #23AA4A !important;
}

.navbar-mobile .dropdown .dropdown:hover svg path,
.navbar-mobile .dropdown li.active svg path {
    fill: #23AA4A !important;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
    visibility: visible !important;
}

.navbar-mobile .dropdown>.dropdown-active svg {
    transform: rotate(0deg);
}

/*--------------------------------------------------------------
# nav-fix (Nav no banner)
--------------------------------------------------------------*/
#header.nav-fix {
    background-color: #fff;
    box-shadow: 0 4px 8px #00000017;
}

.nav-fix .navbar a {
    color: #505155;
}

.nav-fix .navbar svg path {
    fill: #505155;
}

.nav-fix .mobile-nav-toggle {
    color: #505155;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 10px solid #23AA4A;
    border-top-color: #d1eed9;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

.text-white {
    color: #fff;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero .hero-container {
    min-height: 1080px;
    padding: 80px 0;
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom-right-radius: 400px;
}

.hero-text {
    letter-spacing: .5px;
}

.hero-text h1 {
    font-size: 58px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-text h1 span {
    color: #23AA4A;
}

.hero-text p {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

@media (max-width: 1700px) {
    #hero .hero-container {
        min-height: 980px;
    }
}

@media (max-width: 1440px) {
    #hero .hero-container {
        min-height: 880px;
    }
}

@media (max-width: 991px) {
    #hero .hero-container {
        min-height: 680px;
        border-bottom-right-radius: 300px;
    }
    .hero-text h1 {
        font-size: 48px;
    }
    .hero-text p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    #hero .hero-container {
        min-height: 580px;
        padding: 100px 0 80px;
        border-bottom-right-radius: 200px;
    }
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 376px) {
    #hero .hero-container {
        border-bottom-right-radius: 150px;
    }
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.breadcrumb {
    display: flex;
    align-items: end;
}

.breadcrumb a {
    color: inherit;
}

.breadcrumb .breadcrumb-item {
    font-size: 18px;
    font-weight: 500;
}

.breadcrumb .breadcrumb-item.active {
    color: #23AA4A;
}

.breadcrumb .breadcrumb-icon {
    margin: 0 10px 2px;
}

.breadcrumb .breadcrumb-item.active.inner {
    max-width: 278px;
}

@media (max-width: 575px) {
    .breadcrumb-item svg {
        width: 40px;
        height: 40px;
    }
}

/*--------------------------------------------------------------
# Station
--------------------------------------------------------------*/
.station .box-icon {
    background-color: #9F9FA3;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    padding: 10px;
}

.station .box-icon img {
    width: 75px;
    height: 75px;
}

.station h3 {
    color: #005132;
    font-weight: 700;
}

.station .img-station {
    border-radius: 30px;
}

.station-menu {
    position: absolute;
    left: 0;
    top: 114px;
    padding: 30px 10px;
    min-width: 220px;
    height: fit-content;
    border: 5px solid #D1EED9;
    border-radius: 0 30px 30px 0;
}

.station-menu ul {
    margin-bottom: 0;
}

.station-menu ul>li {
    margin-bottom: 36px;
}

.station-menu ul>li:last-child {
    margin-bottom: 0;
}

.station-menu ul>li a {
    font-size: 24px;
    font-weight: 500;
    color: #005132;
    text-transform: capitalize;
}

.station-menu ul>li.active>a {
    color: #23AA4A;
}
.station-menu ul>li.active::marker {
    color: #23AA4A;
}


.charging-station .box {
    background-color: #D1EED9;
    padding: 40px;
    border-radius: 30px;
}

.charging-station .no-img {
    background-color: #fff;
    height: 100%;
    max-width: 286px;
    min-height: 273px;
    display: grid;
    align-items: center;
    text-align: center;
    padding: 10px;
    margin: auto;
}

.charging-station .box.empty {
    min-height: 300px;
}

.charging-station img {
    max-width: 286px;
    margin: auto;
}

.charging-station h4 {
    color: #005132;
}

.charging-station .status {
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
    border-radius: 40px;
    text-align: center;
}

.charging-station .status.status-1 {
    padding: 12px;
    background-color: #23AA4A;
    color: #fff;
}

.charging-station .status.status-0 {
    padding: 14px 24px;
    background-color: #CECECE;
    color: #505155;
}

.charging-station .see-map {
    text-decoration: underline;
    color: #23AA4A;
}

.charging-station .see-map:hover {
    color: #005132;
}

.charging-station.detail span {
    color: #23AA4A;
}

.charging-station.detail .form-select {
    padding: 5px 30px 5px 20px;
    color: #23AA4A;
    border-color: #005132;
    font-size: 20px;
    font-weight: 600;
    max-width: 156px;
}

.charging-station.detail .title-type {
    display: flex;
    align-items: center;
}

.charging-station span.separate {
    font-size: 24px;
    font-weight: 400;
    margin: 0 16px;
    color: #005132;
}

.charging-station .amount {
    color: #fff;
    background-color: #23AA4A;
    padding: 10px 24px;
    border-radius: 30px;
    text-wrap: nowrap;
    margin-right: 14px;
}

.charging-station .amount-item {
    margin-left: 14px;
}

.charging-station .available .item {
    font-size: 24px;
}

.charging-station .available .status-0 svg {
    fill: #CECECE;
}

.charging-station .available .status-1 svg {
    fill: #23AA4A;
}

.charging-station .media-body {
    font-weight: 400;
}

@media (min-width: 1200px) {
    .inner-station {
        padding-left: 300px;
    }
}

@media (min-width: 1400px) {
    .inner-station {
        padding-left: 280px;
    }
}

@media (min-width: 1600px) {
    .inner-station {
        padding-left: 200px;
    }
}

@media (min-width: 1800px) {
    .inner-station {
        padding-left: 120px;
    }
}

@media (max-width: 1400px) {
    .charging-station .status {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .station-menu {
        position: inherit;
        margin-bottom: 3rem;
        border-radius: 30px;
    }
}

@media (max-width: 991px) {
    .station-menu ul>li a {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .station .box-icon img {
        width: 60px;
        height: 60px;
    }
    .station-menu ul>li a {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .station .box-icon img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 320px) {
    .charging-station.detail .title-type {
        width: 100%;
        flex-wrap: wrap;
    }
}


/*--------------------------------------------------------------
# Charging step
--------------------------------------------------------------*/
.charging-step {
    position: relative;
    padding-top: 210px;
}

.charging-step .box {
    position: absolute;
    width: 360px;
    min-height: 240px;
    background-color: #9F9FA3;
    padding: 40px;
    border-radius: 30px;
}

.charging-step .box .arrow{
    position: absolute;
    top: 97%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 45px solid #9F9FA3;
}

.charging-step .box.box1 {
    top: 150px;
}

.charging-step .box.box2 {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.charging-step .box.box3 {
    top: 150px;
    right: 0;
}

.charging-step .text .title {
    display: inline-block;
    background-color: #fff;
    color: #23AA4A;
    padding: 5px 42px;
    border-radius: 50px 0;
    margin-bottom: 24px;
}

.charging-step .text .title h3 {
    font-weight: 600;
    margin-bottom: 0;
}

.charging-step .text p {
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .charging-step .box {
        width: 350px;
        padding: 30px;
    }
    .charging-step .box.box1,
    .charging-step .box.box3 {
        top: 120px;
    }
}

@media (max-width: 1199px) {
    .charging-step .box {
        width: 300px;
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .charging-step {
        padding-top: 0;
    }

    .charging-step .box {
        position: unset;
        width: auto;
        margin-bottom: 30px;
    }

    .charging-step .box.box2 {
        transform: none;
    }

    .charging-step .box .arrow {
        display: none;
    }
}

/*--------------------------------------------------------------
# Join us
--------------------------------------------------------------*/
.join-us .image {
    border-radius: 30px;
}

.join-us .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 30px;
    background-color: #23AA4A;
    padding: 20px;
    min-height: 315px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.join-us .content img {
    width: 142px;
    height: 142px;
}

.join-des .box {
    position: relative;
    background-color: #005132;
    color: #fff;
    text-align: center;
    height: 100%;
    border-radius: 100px 0;
    padding: 100px 20px 60px;
}

.join-des .box img{
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
}

.bg-with-text h2 {
    color: #005132;
    margin-bottom: 1rem;
}

.bg-with-text p {
    font-size: 24px;
}

.bg-with-text p:last-child {
    margin-bottom: 0;
}

.tracking .box {
    height: 100%;
    min-height: 300px;
    border-radius: 30px;
}

.tracking .box.box1 {
    padding: 50px 50px 50px 164px;
    background-color: #fff;
    position: relative;
    margin-right: -50px;
    z-index: 1;
}

.tracking .box.box2 {
    padding: 50px 50px 50px 100px;
    background-color: #23AA4A;
    position: relative;
    margin-right: -105px;
}

.tracking .box.box3 {
    padding: 50px 164px 50px 150px;
    background-color: #005132;
    border-radius: 30px 0 30px;
}

.tracking .box .text {
    color: #fff;
}

.tracking .box .title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tracking .box .title h4 {
    margin-bottom: 0;
}

.tracking .box.box1 .title {
    color: #005132;
}
.tracking .box.box1 .text {
    color: #005132;
}

.tracking .box .title .number {
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    margin-right: 20px;
}

.tracking .box.box1 .title .number {
    background: -webkit-linear-gradient(#231F20, #23AA4A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tracking .box.box2 .title .number {
    color: #005132;
}

.tracking .box.box3 .title .number {
    color: #23AA4A;
}

.joinus-swiper .swiper-slide {
    text-align: start;
    align-items: start;
}

.joinus-nav {
    display: grid;
    justify-content: center;
}

.joinus-nav .content {
    display: flex;
    margin-bottom: 60px;
    border-radius: 22px 0;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.40);
}

.joinus-nav .item {
    padding: 10px 60px;
    font-size: 24px;
    font-weight: 700;
    color: #005132;
    border-radius: 22px 0;
}

.joinus-nav .item.active {
    background-color: #23AA4A;
    border-radius: inherit;
    color: #fff;
}

/* Franchise */

.franchise-requirement .box {
    background-color: #fff;
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 3px 5px 2px #00000040;
}

.franchise-requirement .box h4 {
    margin-bottom: 36px;
}

.franchise-requirement .box p:last-child {
    margin-bottom: 0;
}

/* Home Charger */
.home-charger .box {
    min-height: 200px;
    position: relative;
    height: 100%;
    border: 6px solid #23AA4A;
    border-radius: 30px;
    padding: 60px 20px 20px;
    text-align: center;
    box-shadow: 0 3px 5px 2px #00000040;
}

.home-charger .box .number {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%);
    background-color: #23AA4A;
    color: #D9D9D9;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: grid;
    align-items: center;
    box-shadow: -5px 4px 4px #00000040;
}

.home-charger .box h4 {
    margin-bottom: 0;
    line-height: 1.5
}

@media (min-width: 1700px) {
    .tracking .box.box1 {
        padding-left: calc(200px * 1.5);
    }

    .tracking .box.box3 {
        padding-right: calc(200px * 1.5);
    }
}

@media (max-width: 1440px) {
    .tracking .box.box1 {
        padding-left: 72px;
    }

    .tracking .box.box3 {
        padding-right: 72px;
    }
}

@media (max-width: 1399px) {
    .join-us .content img {
        width: 122px;
        height: 122px;
    }

    .tracking .box.box1 {
        padding-left: 141.5px;
    }

    .tracking .box.box3 {
        padding-right: 141.5px;
    }
}

@media (max-width: 1199px) {
    .tracking .box.box1 {
        padding-left: 12px;
        margin-right: -30px;
    }

    .tracking .box.box2 {
        margin-left: -20px;
    }

    .tracking .box.box3 {
        padding-right: 12px;
    }
}

@media (max-width: 991px) {
    .joinus-nav .item {
        font-size: 20px;
    }

    .tracking .box .title .number {
        font-size:80px;
    }

    .tracking .box.box1 {
        padding: 50px;
        margin-right: 0;
    }

    .tracking .box.box2 {
        padding: 50px;
        margin-right: 0;
        margin-left: 0;
    }

    .tracking .box.box3 {
        padding: 50px;
        border-radius: 30px;
    }
}

@media (max-width: 767px) {
    .join-us .content img {
        width: 102px;
        height: 102px;
    }

    .joinus-nav .item {
        padding: 10px 30px;
        font-size: 18px;
    }

    .tracking .box .title .number {
        font-size: 70px;
    }
}

@media (max-width: 575px) {
    .joinus-nav .item {
        padding: 10px 20px;
        text-align: center;
    }

    .joinus-nav {
        justify-content: unset;
    }

    .joinus-nav .content {
        flex-direction: column;
    }
}

/*--------------------------------------------------------------
# Partner
--------------------------------------------------------------*/
.partner-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    height: calc((100% - 30px) / 2) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*--------------------------------------------------------------
# Charger
--------------------------------------------------------------*/
.charger .btn-main {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-wrap: nowrap;
    padding: 8px 20px;
}

.charger ul {
    list-style: none;
    padding-left: 4rem;
}

.charger .detail p {
    padding-left: 4rem;
}

.charger ul>li {
    padding: .5rem 0 0;
}

.charger ul>li:before {
    content: "";
    display: block;
    float: left;
    margin-left: -4rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.charger ul>li:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='13 13 24 24'%3E%3Ccircle cx='25' cy='25' r='12' fill='%23505155'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    padding: .15rem;
}

.charger-footer p {
    font-size: 24px;
}

.charger-footer p span {
    color: #23AA4A;
}

@media (max-width: 575px) {
    .charger .btn-main {
        position: relative;
        bottom: 0;
        text-wrap: inherit;
        margin-top: 20px;
    }
    .btn-main.inner {
        position: relative;
        bottom: 0;
        text-wrap: inherit;
        margin-top: 20px;
    }
    .joinus-swiper .swiper-wrapper {
        padding-bottom: 130px;
    }
}

/*--------------------------------------------------------------
# Managent System
--------------------------------------------------------------*/
.dashboard .swiper-container {
    position: relative;
    padding: 0 150px;
}

.dashboard-swiper {
    position: unset;
}

.gallery-thumbs .swiper-slide {
    border: 8px solid #fff;
}

.gallery-thumbs .swiper-slide-thumb-active {
    border: 8px solid #9F9FA3;
}

.dashboard-swiper .swiper-button-prev,
.dashboard-swiper .swiper-button-next {
    width: 50px;
    height: 50px;
}

.management .content {
    background-color: #23AA4A;
    padding: 40px 80px;
    color: #fff;
    height: 100%;
}

.management .content h4 {
    font-weight: 600;
}

.management .content .icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.management .content.left {
    text-align: right;
}

.management .content.right {
    text-align: left;
}

.management .content.right.top,
.management .content.left.bottom {
    border-radius: 70px 0;
}

.management .content.left.top,
.management .content.right.bottom {
    border-radius: 0 70px;
}

.management .content.left .title {
    display: flex;
    justify-content: space-between;
}

.management .content.right .title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.management .content .detail {
    max-width: 350px;
}

.management .content.left .detail {
    margin-left: auto;
}

.management .content.right .detail {
    margin-right: auto;
}

.management .logo {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -62%);
    background-color: #fff;
    border-radius: 50%;
    align-content: center;
    justify-content: center;
}

.management .logo img {
    max-width: 134px;
}

@media (max-width: 1199px) {
    .management .content .icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 991px) {
    .dashboard .swiper-container {
        padding: 0 100px;
    }

    .management .content {
        min-height: 330px;
    }

    .management .content .icon {
        width: 50px;
        height: 50px;
    }

    .management .logo {
        width: 110px;
        height: 110px;
        padding: 16px;
    }
}

@media (max-width: 767px) {
    .dashboard .swiper-container {
        padding: 0;
    }

    .management .content {
        text-align: left !important;
        border-radius: 70px 0 !important;
        padding: 40px 60px;
    }

    .management .content .title {
        justify-content: flex-start !important;
    }

    .management .content.right .title {
        flex-direction: row;
    }

    .management .content .detail {
        margin-left: unset !important;
        margin-right: unset !important;
        margin-top: 30px;
    }
    .gallery-thumbs {
        padding-bottom: 30px;
    }

}

/*--------------------------------------------------------------
# About us
--------------------------------------------------------------*/
.about .swiper-container {
    position: relative;
    padding: 0 100px;
}

.about .swiper-wrapper {
    padding: 54px 0 80px;
}

.about-swiper {
    position: unset;
}

.about-swiper .swiper-button-prev svg {
    transform: rotate(90deg);
}

.about-swiper .swiper-button-next svg {
    transform: rotate(-90deg);
}

.about-swiper .content {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.goal .box {
    margin-bottom: 135px;
}

.goal .content {
    position: relative;
}

.goal .content .text {
    width: 100%;
    height: 205px;
    overflow-y: auto;
    position: absolute;
    top: 80%;
    background-color: #005132;
    border-radius: 50px 0;
    display: grid;
    align-items: center;
    padding: 10px 30px;
}
.goal .content .text p {
    color: #fff;
    font-weight: 300;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about .swiper-container {
        padding: 0;
    }
}


/*--------------------------------------------------------------
# Contact us
--------------------------------------------------------------*/
.contact .media {
    margin-bottom: 10px;
}

.contact .media-body {
    padding-left: 14px;
    font-size: 24px;
}

.container-iframe {
    width: 100%;
    height: 480px;
}

.container-iframe iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .contact .media-body {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-label {
    font-size: 24px;
    font-weight: 700;
    color: #005132;
    margin-bottom: 24px;
}

.form-control {
    font-size: 18px;
    padding: 10px 40px;
    border-radius: 45px;
    color: #505155;
    border: 1px solid #939192;
}

.form-control::placeholder {
    color: #939192;
}

.form-control:focus {
    color: #505155;
    border-color: #23AA4A;
    box-shadow: 0 0 0 0.25rem rgb(35 170 74 / 25%);
}

.form-select {
    font-size: 18px;
    padding: 10px 40px;
    border-radius: 45px;
    color: #939192;
    border: 1px solid #939192;
}

.form-select:focus {
    color: #939192;
    border-color: #23AA4A;
    box-shadow: 0 0 0 0.25rem rgb(35 170 74 / 25%);
}

select option {
    color: #505155;
}

select option:first-child {
    color: #939192;
}

/* .input-group */
.input-group {
    flex-wrap: unset;
}
.input-group-text {
    background-color: #23AA4A;
    color: #fff;
    border-color: #D9D9D9;
    border-radius: 30px 0 0 30px;
    font-size: 18px;
    padding: 0.375rem 1.5rem;
}

.input-group .form-control {
    padding: 10px 20px;
    background-color: #D9D9D9;
    border-color: #D9D9D9;
}

.input-group .form-select {
    padding: 10px 32px 10px 20px;
    background-color: #D9D9D9;
    border-color: #D9D9D9;
}

.input-group option {
    background-color: #fff;
}

@media (max-width: 991px) {
    .form-label {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .input-group .btn,
    .input-group .btn:active,
    .input-group .btn.show {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img,
.swiper-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: #005132;
    opacity: 1;
    margin: 0 16px !important;
}

.swiper-horizontal>.swiper-pagination-bullets {
    bottom: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0);
}

.swiper-pagination-bullet-active {
    background: #23AA4A;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
}

.swiper-button-prev,
.swiper-button-next {
    width: 60px;
    height: 60px;
    transform: translateY(-50%);
}

@media (max-width: 575px) {
    .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 330px) {
    .swiper-pagination{
        width: auto !important;
    }
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

.pagination {
    display: inline-block;
}

.pagination a {
    color: #fff;
    background-color: #23AA4A;
    border-radius: 10px;
    font-size: 18px;
    margin-top: 10px;
    margin-right: 14px;
    float: left;
    padding: 10px 20px;
    text-decoration: none;
}

.pagination a:last-child {
    margin-right: 0;
}

.pagination a.active {
    background-color: #005132;
}

.pagination .page-btn {
    padding: 10px 14px;
}

.pagination .page-btn.disabled {
    display: none;
}

.pagination a.punctuate {
    pointer-events: none;
    color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    background: #6D6E70;
}

#footer .footer-top {
    padding: 70px 0 50px;
}

#footer .footer-top .footer-logo {
    width: 130px;
    height: auto;
}

#footer .footer-top ul {
    margin-bottom: 0;
}

#footer .footer-top ul li {
    margin-bottom: 15px;
}

#footer .footer-top ul li:last-child {
    margin-bottom: 0;
}

#footer .footer-top ul li>a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    transition: 0.5s;
}

#footer .footer-top ul li:hover>a,
#footer .footer-top ul li a.active {
    color: #23AA4A;
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 5px;
}

.media svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.media-body {
    -ms-flex: 1;
    flex: 1;
    margin: auto;
    padding-left: 5px;
    font-size: 18px;
    font-weight: 300;
}

.media-body a {
    color: #fff;
}

#footer .footer-icon {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 300;
}

#footer .footer-icon a {
    color: #fff;
    margin-left: 15px;
}

#footer .footer-icon img {
    width: 40px;
    height: 40px;
}

#footer .copyright {
    padding: 20px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
}

@media (max-width: 991px) {
    #footer .footer-top .footer-logo {
        width: 100px;
    }
}

@media (max-width: 767px) {
    .media svg {
        width: 30px;
        height: 30px;
    }

    .media-body a {
        word-break: break-all;
    }
}
