/* Fold */

.fold {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;

    margin-top: 120px;

    position: relative;

    overflow: hidden;
}

.fold-bg-container {
    width: 100%;
    height: 100%;

    position: absolute;

    left: 0;

    z-index: -1;
}

.fold-bg-container::before {
    content: "";

    height: 100%;
    width: 100%;

    background-color: var(--overlay-color);

    opacity: 0.6;

    position: absolute;

    top: 0;
    left: 0;
}

.fold-bg-container > img {
    height: 100%;
    width: 100%;

    display: block;

    object-fit: cover;
    -o-object-fit: cover;

    object-position: center center;
    -o-object-position: center center;
}

.fold-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;

    padding: var(--section-padding);
}

.fold-heading-tip {
    color: #FFFFFF;
}

.fold-heading {
    color: #FFFFFF;
}

/* disease-description */

.disease-description {
    padding: var(--section-padding);
}

/* Appointment booking CTA */

.appointment-booking-cta-container {
    padding: var(--section-padding);
}

.appointment-booking-cta {
    background-color: var(--primary-light-color);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: var(--block-extended-padding);
}

.appointment-booking-cta-heading {
    color: #FFFFFF;

    font-size: 36px;
    font-weight: 800;
}

/* Video */

.video {
    background-color: var(--bg-color);

    padding: var(--section-padding);
}

.video-thumbnail {
    height: 400px;

    display: flex;

    position: relative;
}

.video-thumbnail::before {
    content: "";

    height: 100%;
    width: 100%;

    background-color: var(--overlay-color);

    opacity: 0.6;

    position: absolute;

    top: 0;
    left: 0;
}

.video-play-btn {
    width: 60px;
    height: 60px;

    border-radius: 50%;

    background-color: var(--primary-dark-color);

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    position: absolute;

    top: 50%;
    left: 50%;

    animation: pulse 1s infinite;
    -o-animation: pulse 1s infinite;
    -moz-animation: pulse 1s infinite;
    -webkit-animation: pulse 1s infinite;
}

.video-play-btn > span {
    color: #FFFFFF;

    font-size: 20px;
}

.video-thumbnail > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    -o-object-fit: cover;

    object-position: center center;
    -o-object-position: center center;
}

/* Share buttons */

.share-btns {
    padding: var(--section-padding);
}

.share-btns-list {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 20px;
}

.share-btn {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 10px;
}

@media only screen and (max-width: 1000px) {
    .appointment-booking-cta-heading {
        font-size: 32px;
    }
}

@media only screen and (max-width: 800px) {
    .appointment-booking-cta-heading {
        font-size: 28px;
    }
}

@media only screen and (max-width: 600px) {
    .appointment-booking-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .appointment-booking-cta-heading {
        font-size: 24px;
    }

    .appointment-booking-cta > .c-primary-btn {
        width: 100%;
    }

    .share-btns-list {
        flex-direction: column;
    }
}

@media only screen and (max-width: 400px) {
    
}