:root {
    --marquee-gap: 60px;
}

#hero .text {
    max-width: 600px;
    margin-left: auto;
}

.full-width-img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
}

#marquee {
    display: flex;
    overflow: hidden;
    gap: var(--marquee-gap);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: var(--marquee-gap);
    animation: scroll 20s linear infinite;
}

.marquee-content img {
    width: 50px;
}


@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(calc(-100% - 30px));
    }
}



.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.service-cards .card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.15);

    transition: background-color 0.3s ease;
}

.service-cards .card:hover {
    background-color: var(--sand-lighter);
}

.card-number {
    opacity: 33%;
    font-size: 16px;
}

#method {
    background-color: var(--dark-green);
}


.method-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.method-cards .card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);

    transition: background-color 0.3s ease;
}

#logo-section {
    background-color: var(--sand-lighter);
}

.square-logo {
    width: 150px;
}



#cta .right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    width: 100%;
    max-width: 500px;
}

#cta .right .btn {
    width: 100%;
}

@media screen and (max-width: 991px) {

    #hero .text {
        max-width: none;
        margin-left: 0;

    }

    #hero .large-heading {
        margin-bottom: 15px !important;
    }

    .service-cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .method-cards {
        grid-template-columns: repeat(1, 1fr);
    }

    :root {
        --marquee-gap: 30px;
    }

    #cta .flex-row {
        gap: 60px;
    }

    #marquee {
        padding-block: 40px;
    }

}