.home .banner {
    margin-bottom: 0;
    height: calc(100vh - 146px);
}
.ctaSection {
    background: var(--grey-input2);
    padding: 70px 0;
}

.ctaSection .text {
    max-width: 770px;
    margin: 20px auto 30px auto;
}

.ctaSection .button {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

.cardsSection {
    background: var(--grey-input2);
}

.cardsSection,
.videoSection{
    padding: 70px 0;
}

.quoteSection, .row-block {
    padding: 70px 0 0 0;
}

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

.cardsSection .cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cardsSection .cards .card img {
    height: 100%;
}

.cardsSection .cards .card .title {
    margin: 15px 15px 0px 15px;
}

.cardsSection .cards .card .subtitle {
    margin: 15px 15px 20px 15px;
}

.videoSection .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.videoSection video {
    width: 60%;
    margin-bottom: 20px;
}

.quoteSection .wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.quoteSection .wrapper>* {
    width: calc(50% - 20px);
}

.quoteSection .wrapper h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    color: #CBA46C;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-family: 'Brandon Grotesque';
}

.quoteSection .wrapper h4 {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 34px;
    font-style: italic;
    text-align: center;
    color: #051028;
    margin-bottom: 20px;
}

.subtext {
    text-align: center;
    color: var(--primary);
    font-style: italic;
}

.quoteSection .wrapper p {
    font-family: 'Brandon Grotesque';
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #CBA46C;
    text-transform: capitalize;
    margin-bottom: 0;
    text-align: center;
}

.quoteSection .wrapper .image {
    display: flex;
    justify-content: center;
}

.quoteSection .wrapper img {
    width: 70%;
    height: auto;
}

.cardsSection .cards .card .subtitle {
    text-align: center;
}


@media(max-width: 1024px) {
    .cardsSection .cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media(max-width: 769px) {
    .ctaSection,
    .cardsSection,
    .videoSection {
        padding: 30px 0;
    }
    .quoteSection .wrapper h2 {
        font-size: 16px;
        font-weight: 500;
    }
    .quoteSection, .row-block {
        padding: 30px 0 0 0;
    }
    .quoteSection .wrapper h4 {
        font-size: 16px;
        line-height: 1.2;
    }
    .cardsSection .cards {
        margin-top: 20px;
        gap: 20px;
    }
    .cardsSection .cards .card .subtitle {
        margin: 15px;
    }
    .quoteSection .wrapper {
        flex-direction: column;
    }
    .quoteSection .wrapper>* {
        width: 100%;
    }
    .ctaSection .text {
        margin: 15px auto;
    }
    .cardsSection .wrapper {
        padding: 0 0 0 20px;
    }
    .cardsSection .title, 
    .cardsSection .subtitle {
        margin-right: 20px;
    }
    .cardsSection .slick-list {
        margin-right: 30px;
        overflow: visible;
        position: relative;
    }
    .cardsSection .cards {
        display: block;
    }
    .cardsSection .cards .card {
        margin: 0 30px 0 0;
    }
    .cardsSection .cards .card .title {
        margin: 15px 0 0 0;
        font-size: 18px;
    }

    .row-block .borderline-bottom {
        padding-bottom: 30px;
    }
    .row-block .borderline-bottom:after {
        display: none;
    }
    .videoSection video {
        width: 100%;
    }
}