.b-hero {
    width: 100%;
    background: linear-gradient(
            338deg,
            #006246 -22.5%,
            #01b27f 27.02%,
            #00d799 40.75%,
            #00a273 63.51%,
            #004531 95.96%
        ),
        linear-gradient(180deg, #00996d 0%, #008860 100%), #003828;
    margin-top: -174px;
    padding-top: 193px;
    padding-bottom: 133px;
}

.b-hero .width-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

.b-hero .width-wrapper h1 {
    font-size: clamp(2rem, 1.2571428571428571rem + 3.0476190476190474vw, 4rem);
    color: white;
}

.b-hero .width-wrapper .image {
    width: 40%;
}

.b-hero .width-wrapper .image img {
    width: 100%;
    height: auto;
}

/* Media Query: max-width 1024px */
@media screen and (max-width: 1024px) {
    .b-hero .width-wrapper {
        padding: 40px 40px 60px 40px;
        gap: 40px;
    }
}

/* Media Query: max-width 768px */
@media screen and (max-width: 768px) {
    .b-hero .width-wrapper {
        flex-direction: column-reverse;
        padding: 24px;
    }

    .b-hero .width-wrapper .image {
        width: 100%;
    }
}

.b-hero {
    position: relative;
    display: flex;
    justify-content: center;
}
.b-hero .hero-img {
    position: absolute;
    width: 250px;
    height: 187px;
}
.b-hero .hero-img-mobile {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    object-fit: cover;
    z-index: 0;
}
@media screen and (max-width: 768px) {
    .b-hero .hero-img-mobile {
        display: block;
    }
}
@media screen and (min-width: 769px) {
    .b-hero .hero-img-mobile {
        display: none;
    }
}
.b-hero .right-img {
    top: 226px;
    right: 0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.b-hero .left-img {
    bottom: 190px;
    left: 0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
@media screen and (max-width: 768px) {
    .b-hero .right-img {
        display: none;
    }
    .b-hero .left-img {
        display: none;
    }
}
@media screen and (max-width: 1336px) {
    .b-hero .right-img {
        display: none;
    }
    .b-hero .left-img {
        display: none;
    }
}
.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 60px;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .wrapper {
        margin-right: 0;
    }
}
.wrapper h1,
.wrapper .sub-text {
    text-align: center;
    letter-spacing: -2%;
}
.wrapper h1 span {
    color: #d9f2a1;
}
.wrapper .sub-text {
    color: white;
    font-size: 20px;
    margin-top: 32px;
    width: 100%;
    max-width: 537px;
}
.wrapper .zip-box {
    font-size: 20px;
    font-weight: 600;
    margin-top: 73px;
    padding: 32px;
    width: 60%;
    height: fit-content;
    background-color: #cfece3;
    border-radius: 16px;
    z-index: 1;
}
@media (width <= 971px) {
    .wrapper .zip-box {
        width: 100%;
    }
}
.wrapper .zip-box p {
    color: black;
    font-size: 20px;
}
.wrapper .zip-box .flex {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (width <= 971px) {
    .wrapper .zip-box .flex {
        flex-direction: column;
    }
}
.wrapper .zip-box .flex .v-input-wrapper {
    width: 100%;
}

@media (width <= 971px) {
    .wrapper .zip-box .flex .v-input-wrapper .v-input {
        margin-bottom: 0;
    }
}
.wrapper .zip-box .flex .local-btn {
    width: 30%;
    cursor: pointer;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.32px;
    padding: 12px 18px;
    border-radius: 9px;
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(0deg, #0a7858 0%, #02a878 100%);
    box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.25) inset,
        0px 2px 4px 0px rgba(33, 50, 42, 0.2);
}
@media (width <= 1213px) {
    .wrapper .zip-box .flex .local-btn {
        width: 40%;
    }
}
@media (width <= 1025px) {
    .wrapper .zip-box .flex .local-btn {
        width: 50%;
    }
}
@media (width <= 971px) {
    .wrapper .zip-box .flex .local-btn {
        width: 100%;
    }
}
.services {
    width: 100%;
    background-color: white;
    padding: 80px 0 80px 0;
}
.services h1 {
    text-align: center;
    font-size: 48px;
}
.services .service-description {
    margin-block: 24px 58px;
    text-align: center;
    font-size: 20px;
    color: rgba(34, 37, 36, 0.6980392157);
}
.vr-track{
    display: none;
}
.marquee-wrapper{
	width: 100%;
    overflow: hidden;
}
.marquee-track {
    display: flex;
	animation: moveSlideshow 30s linear infinite;
}
a.marquee-box {
    text-decoration: none;
    color: inherit;
    display: block;
}
a.marquee-box h3,
a.marquee-box p {
    text-decoration: none !important;
    color: inherit;
}
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes moveSlideshow {
    100% {
        transform: translateX(-50%);
    }
}

.services .marquee-box {
    display: flex;
    flex-direction: column;
    gap: 33px;
    justify-content: start;
    padding-right: 24px;
    margin: 0;
}
.services .marquee-box .img-card {
    width: 350px;
    height: 350px;
    border-radius: 15px;
}
.services .marquee-box .text-box {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.services .marquee-box h3 {
    font-size: 28px;
}
.services .marquee-box .label {
    color: #333;
    width: 353px;
    text-align: left;
}
.improvement-box {
    display: flex;
    justify-content: center;
}
.improvement-box .width-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 80px 157px 80px 80px;
    gap: 82px;
}
.improvement-box span {
    color: #00996d;
}
.improvement-box h2 {
    font-size: 48px;
}
.improvement-box p {
    text-align: left;
    font-size: 18px;
    color: rgba(34, 37, 36, 0.6980392157);
    margin-top: 25px;
}
.improvement-box-image-wrapper{
    max-width: 514px;
    width: 80%;
}
.improvement-box-text-wrapper{
    width: 80%;
}
.improvement-box .image {
    border-radius: 16px;
}
.improvement-box .improvement-partner {
    padding-top: 52px;
}
.improvement-box .improvement-partner h3 {
    display: flex;
    align-items: center;
    margin-left: 13px;
}
.improvement-box .improvement-partner .hr-line {
    height: 1px;
    background-color: rgba(0, 56, 40, 0.1215686275);
    border: none;
    margin: 24px 0;
    width: 100%;
}
.improvement-box .improvement-partner .icon {
    width: 40px;
    height: 40px;
}
.improvement-box .improvement-partner .icon-text {
    display: flex;
    margin-bottom: -10px;
}
@media screen and (min-width: 1084px) {
    .image-mobile {
        display: none;
    }
}
@media screen and (max-width: 1084px) {
    .improvement-box .width-wrapper {
        flex-direction: column-reverse;
        padding: 40px 24px;
        gap: 40px;
        align-items: center;
    }
    .improvement-box-text-wrapper{
    width: 100%;
    }
    .improvement-box h2 {
        font-size: 32px;
        text-align: start;
    }
    .improvement-box p {
        font-size: 16px;
        text-align: start;
    }
}
@media screen and (max-width: 768px) {
    .improvement-box h2 {
        letter-spacing: -1px;
    }
    .improvement-box .improvement-partner {
        padding-top: 32px;
    }
    .improvement-box .improvement-partner h3 {
        font-size: 18px;
        margin-left: 8px;
        justify-content: center;
    }
    .improvement-box .improvement-partner .icon {
        width: 28px;
        height: 28px;
    }
    .improvement-box .improvement-partner .icon-text {
        justify-content: start;
        align-items: center;
        gap: 0px;
    }
    .improvement-box .improvement-partner p {
        text-align: start;
        font-size: 14px;
        margin-top: 8px;
    }
    .services{
        padding: 40px 0 20px;
    }
    .vr-track{
        display: flex;
        flex-direction: column;
        gap: 35px;
        align-items: center;
    }
    .marquee-wrapper{
        display: none;
    }
    .services .marquee-box {
        gap: 20px;
        padding-right: 0;
    }
    .services .marquee-box .img-card {
        width: 300px;
        height: 300px;
    }
    .services .marquee-box .text-box {
        gap: 10px;
    }
    .services .marquee-box .label {
        width: 303px;
    }
}
