/* Divider */
.divider {
    border: 1px solid var(--primary-lightest);
}

/* Header */
.page-header {
    padding-top: 8rem;
    padding-bottom: 3rem;
}

.header-img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    object-position: center;
}

/* Description */
.description {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 19.2px;
    line-height: 155%;
    color: #565656;
    margin-bottom: 16px;
    white-space: pre-line;
}

/* Others */
.others-img {
    width: 100%;
    height: 20vw;
    border-radius: 5px;
    border: 3px solid var(--primary-light);
    object-fit: cover;
}

.others-link {
    color: var(--black);
    transition: all 150ms ease;
    text-decoration: none !important;
}

.others-link:hover {
    color: var(--secondary-dark);
}

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

    .page-header {
        padding-top: 15rem;
    }

    .header-img {
        height: 75vw;
    }

    .others-img {
        height: 70vw;
    }

}

@media only screen and (min-width: 767.98px) and (max-width: 997.98px) {

    .page-header {
        padding-top: 6rem;
    }

    .header-img {
        height: 40vw;
    }

    .others-img {
        height: 30vw;
    }

}
