:root {
    --primary-color: #ea3337
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: normal;
    color: black;
    font-weight: 600;
}


/* Landing Page */
#health-section>div:not(:nth-child(3n)) {
    border-right: 1px solid var(--primary-color);
}

#health-section>div:nth-child(n+4) {
    border-top: 1px solid var(--primary-color);
}

.slick-list {
    overflow: hidden;
}

.slick-slide {
    float: left;
}

.testimonial-slider ul {
    margin-top: 10px;
}

.testimonial-slider ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.testimonial-slider ul button {
    width: 18px;
    height: 18px;
    background-color: #d9d9d9;
    font-size: 0;
    color: transparent;
    border-radius: 50%;
}

.testimonial-slider ul li.slick-active button {
    background-color: #ea3337;
}

.testimonial-box {
    max-width: 700px;
}

.testimonial-box p {
    font-weight: 600;
}

@media screen and (min-width: 280px) and (max-width: 600px) {
    #health-section {
        gap: 20px
    }

    #health-section>div {
        border: 2px solid var(--primary-color);
        border-radius: 1rem;
    }
}

.select-icon {
    background-position: center right;
    background-repeat: no-repeat;
    appearance: none;
    background-image: url('../images/select.png');
    background-size: contain;
    cursor: pointer;
}

.contact-modal {
    right: -400px;
    transition: all 0.5s;
}

.contact-modal.active {
    right: 0;
}