.home-banner {
    height: clamp(400px, 45vw, 600px);
    display: flex;
    align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.home-banner-wrapper {
    display: flex;
    justify-content: flex-end;
}

.home-banner-wrapper>fieldset {
    max-width: 530px;
    border: 2px solid #fff;
    margin-top: -10%;
}

.home-banner-wrapper>fieldset>legend {
    text-align: center;
    padding: 0 2rem;
    font-size: 1.75rem;
    font-weight: bold;
}

.home-banner-content {
    padding: 2rem 1rem;
    text-align: center;
}


/* Home About */
.home-about-section {
    position: relative;
    padding-top: 120px;
}

.home-about-section:before {
    content: "";
    position: absolute;
    top: -250px;
    left: 0;
    width: 100%;
    height: 700px;
    background: url(/media/qvtc3phm/home-img-1.png) center center no-repeat;
    background-size: 1440px 100%;
    z-index: 1;
}

.home-about-section>* {
    position: relative;
    z-index: 2;
}

@media screen and (min-width:1400px) {
    .home-about-section:before {
        background-size: 100% 100%;
    }

    .home-about-wrapper .container {
        max-width: 1200px;
    }
}

.home-about-wrapper .block-grid-row {
    height: 100%;
    grid-auto-rows: unset;
    background: #D0AF58;
    color: #fff;
    box-shadow: 0 10px 20px 2px hsla(0, 0%, 0%, 0.3);
    gap: 0;
}

.home-about-wrapper .block-grid-col:nth-child(2) {
    padding: 3rem;
}


.home-about-title {
    font-size: 1.25rem;
    width: 144px;
    border-top: 2px solid #fff;
    padding-top: 0.75rem;
    font-weight: bold;
}

.home-about-title2 {
    font-size: 1.75rem;
}

.home-about-content {
    margin: 2rem 0;
    line-height: 1.2;
}


/* Home Services */
.home-services-section {
    padding: 6rem 0 8rem;
}

.home-services-section>.container {
    padding: 5rem 2rem 1rem 0;
    border-right: 8px solid var(--second-color);
}

.home-services-section .row {
    row-gap: 2rem;
}

.home-services-heading {
    font-size: 3.5rem;
    line-height: 1.2;
    border-left: 8px solid var(--second-color);
    padding-left: 2rem;
}

.home-services-heading>p {
    margin: 0;
}

.home-service-company-name {
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 0.5rem !important;
}

.home-services-content {
    margin: 3rem 0;
    margin-left: calc(2rem + 8px);
}

.home-services-button {
    margin-left: calc(2rem + 8px);
}

.home-services-features {
    padding-left: 2rem;
    display: grid;
    row-gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
}

.home-services-features .feature-item:nth-child(2n-1) {
    margin-top: -3rem;
}


.home-services-features .feature-item-img>img {
    width: 100%;
    object-fit: cover;
}

.home-services-features .feature-item-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0.75rem 0;
}


@media screen and (max-width:1200px) {
    .home-services-features {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 0;
    }

    .home-services-content,
    .home-services-button {
        margin-left: calc(1rem + 8px);
    }

    .home-services-features .feature-item-img>img {
        height: 200px
    }

    .home-services-features .feature-item:nth-child(2n-1) {
        margin-top: 0;
    }

    .home-services-heading {
        font-size: 2.5rem;
        padding-left: 1rem;
    }

    .home-services-section>.container {
        padding: 3rem 0 1rem;
        border-right: 0;
    }
}

/* Home Investment */
.home-investment-section {
    position: relative;
    padding: 5rem 0;
}

.home-investment-section:before,
.home-investment-section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 70%;

}

.home-investment-section:before {
    background-color: var(--primary-color);
    z-index: 1;
}

.home-investment-section:after {
    opacity: 0.3;
    mix-blend-mode: multiply;
    background-image: url(/media/ywkphqpv/home-section-3-bg.png);
    background-position: center;
    background-size: cover;
    z-index: 2;
}

.home-investment-section>* {
    position: relative;
    z-index: 3;
}

.home-invest-heading,
.home-invest-subheading {
    text-align: center;
    color: #fff;
}

.home-invest-heading {
    font-size: 2rem;
    font-weight: bold;
}

.home-invest-subheading {
    font-size: 1.25rem;
}

.home-invest-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    margin-bottom: 2rem;
}

.home-invest-features .feature-item {
    width: 266px;
    background: #C4C4C4;
}

.home-invest-features .feature-item .feature-item-img {
    width: 100%;
    height: 266px;
}

.home-invest-features .feature-item .feature-item-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-invest-features .feature-item .feature-item-text {
    text-align: center;
    padding: 1rem 0.5rem;
}

.home-invest-features .feature-item .feature-item-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.home-invest-features .feature-item .feature-item-content {
    font-size: 0.9rem;
}

.home-invest-button {
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width:1200px) {
    .home-invest-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .home-invest-features .feature-item {
        width: 100%;
    }
}

@media screen and (max-width:576px) {
    .home-invest-features {
        grid-template-columns: 1fr;
    }
}