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

.examples {
    margin-top: 100px;
}

.examples .title {
    justify-content: center;
    margin-bottom: 70px;
}

.faq {
    margin-top: 100px;
}

.faq .title {
    margin-bottom: 70px;
}

.faq  .faq-wrap .faq-title::before {
    background: var(--primary);
}

.faq .faq-cta p {
    margin-top: 50px;
    text-align: center;
    font-family: 'Brandon Grotesque';
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--black);
}

.faq .faq-cta p a  {
    color: var(--primary);
    text-decoration: underline;
}

.cta {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta .wrapper {
    width: 468px;
    height: 378px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('../img/svg/background.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

.cta .title {
    margin-bottom: 30px;
    color: var(--primary);
}

.shop-slider-section .product {
    cursor: pointer;
}

.overlay {
    top: 0;
    left: 0;
    z-index: 9999999;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay .wrapper {
    width: 80%;
    height: 80%;
    max-height: unset !important;
    max-width: unset !important;
}

.overlay .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.overlay .content .title-image {
    height: 70%;
}

.overlay .content .nav-images {
    height: 25%;
}

.overlay .content .slick-list,
.overlay .content .slick-track,
.overlay .content .image {
    height: 100%;
}

.overlay .content .title-image .slick-list img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.overlay .content .image img {
    height: 100%;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.overlay div.slick-arrow.slick-next {
    right: -50px;
}

.overlay div.slick-arrow.slick-prev {
    left: -50px
}

.overlay .content .nav-images.notransform .slick-track {
    transform: unset !important;
}

@media(max-width: 1024px) {
    .how_it_works .cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .overlay .content .title-image {
        height: 75%;
    }
    .overlay .content .nav-images {
        height: 20%;
    }
}

@media(max-width: 769px) {
    .how_it_works .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .examples, .faq, .cta {
        margin-top: 30px;
    }
    .examples .title, 
    .faq .title {
        margin-bottom: 30px;
    }

    .cta .wrapper {
        height: 226px;
        padding: 0;
    }
    .faq .faq-cta p { 
        margin-top: 20px;
    }
    .overlay div.slick-arrow.slick-next {
        right: -20px;
    }
    .overlay div.slick-arrow.slick-prev {
        left: -20px;
    }

}

@media(max-width: 480px) {
    .faq .faq-cta p { 
        display: flex;
        flex-direction: column;
    }
    .how_it_works .cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .overlay .wrapper {
        height: 60%;
    }
}