.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1vw 3vw 0;
    gap: 10px;
}

.content-header {
    padding: 0 5vw;
}

.header-image {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 300px;
    padding: 3vw 0;
}

.header-image img {
    height: 100%;
}

.cs-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
.description {
    display: grid;
    align-items: start;
    justify-content: space-around;
    grid-template-columns: 0.5fr 1.1fr;
    padding: 5vw 5vw;
}
.description-title {
    width: 50%;
    text-wrap: wrap;
}
.description-title h1 {
    font-size: 44px;
}
.description-small {
    font-family: 'museo-300', 'sans-serif';
    font-size: 17px;
    display: flex;
    flex-direction: column;
    line-height: 2em;
}
.description-small strong {
    font-family: 'museo-700', 'sans-serif';
}

.dark-bg .description-small p {
    color: white;
}
.light-bg {
    background-color: rgb(135, 135, 135);
    color: white;
}
.dark-bg {
    background-color: rgb(87, 87, 86);
    color: white;
}

.ch-title {
    font-size: 28px;
    color: rgb(87, 87, 86);
    width: 75%;
}

.ch-images {
    display: grid;
    grid-template-columns: 1.3fr 0.5fr;
}

.ch-images img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.ch-images img.bordered {
    border: 3px solid #E30613;
    border-radius: 0 10px 10px 0;
    height: 99%;
}

.ch-description {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 5vw 0;
}

.ch-description p {
    width: 80%;
    margin: 20px 0;
}

.ch-desc-header {
    font-size: 17px;
    line-height: 1.9em;
}
.ch-desc-p {
    font-family: 'museo-300', 'sans-serif';
    font-size: 17px;
    line-height: 1.9em;
}
.ch-image {
    display: flex;
    justify-content: flex-start;
    width: 80%;
}

.description-title h4 {
    color: white;
    font-size: 38px;
    position: relative;
    line-height:normal;

}
.description-title h4::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80%;
    height: 3px;
    background: red;
}

.description-small p {
    line-height: 2em;
    font-size: 17px;
    color: white;
    display:flex;
    flex-direction: column;
}

.description-small a {
    color: rgb(78, 78, 77);
    background: white;
    padding: 15px;
    border-radius: 30px;
    text-decoration: none;
    margin-left: 10px;
}
.description-small a:hover {
    background-color: #E30613;
    color: white;
    cursor: pointer;
}

.hyperlink {
    background: transparent;
    padding: 0;
    color: white;
    text-decoration: underline;
    margin: 0;
}
.hyperlink:hover {
    background: transparent;
}

.quote {
    display: flex;
    width: 100%;
    justify-content: center;
    font-style: italic;
}

.quote span {
    width: 50%;
    text-align: center;
}

.description ol {
    font-family: 'museo-500', 'sans-serif';
}

.ch-description2 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 3vw 0;
}

.ch-description2 p {
    margin: 20px 0;
}
.ch-desc-p2 {
    font-family: 'museo-300', 'sans-serif';
    font-size: 17px;
    line-height: 1.9em;
}

.ch-d2-left {
    width: 35%;
    font-size: 38px;
    color: rgb(135, 135, 135);
}
.ch-d2-left h3 {
    max-width: 80%;
}
.ch-d2-right {
    margin-top: 60px;
    max-width: 65%;
}
.ch-desc-image {
    display: grid;
    grid-template-columns: 1fr 2fr;
}
.ch-desc-image img {
    max-width: min(100%, 450px);
}

.w80 {
    width: 80%;
}

.w90 {
    width: 90%;
}

@media (max-width: 1300px) {
    .ch-desc-image {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1020px) {
    .ch-description2 {
        flex-direction: column;
    }
    .ch-d2-left, .ch-d2-left h3, .ch-d2-right {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 880px) {
    .description {
        grid-template-columns: 1fr;
    }
    .description-title, .description-title h1 {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .header-image {
        height: 150px;
    }
    .description-title h1 {
        font-size: 35px;
    }
}

@media (max-width: 910px) {
    .ch-title, .w80 {
        font-size: 17px;
        width: 100%;
    }
    .ch-d2-left h3 {
        font-size: 20px;
    }
    .ch-description p {
        width: 100%;
        font-size: 14px;
    }
    .description-small, .description-small p, .ch-desc-p2, .ch-desc-header {
        font-size: 14px;
    }
    .ch-d2-right {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .ch-images .bordered {
        display: none;
    }
    .ch-images {
        display: flex;
    }
    .description-small a {
        padding: 0;
        background: transparent;
        color: white;
        text-decoration: underline;
    }
    .description-small a:hover {
        color: #E30613;
    }
}
