.reasons-why-header {
    position: relative;
    padding-top: 50%;
}
.reasons-why-header-over {
    color: var(--white);
}
.reason-res-number {
    font-size: 125px;
    line-height: 1;
    opacity: 0.1;
    position: absolute;
    top: -0.1em;
    left: 0;
}
.reason-res-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}
.reason-res-description {
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.7;
}
.reason-res-column-title {
    color: rgba(50,73,158,0.5);
    font-size: 20px;
    margin-bottom: 25px;
}
.reason-res-column-description {
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 35px;
    line-height: 1.6;
}
.reason-res-column-image {
    position: relative;
    padding-top: 42%;
}
/*Responsive - Mobile First*/
/* md */
@media (min-width: 768px) {
    .reasons-why-header {
        padding-top: 33%;
    }
    .reason-res-number {
        font-size: 220px;
    }
    .reason-res-title {
        font-size: 25px;
    }
    .reason-res-column-title {
        font-size: 25px;
        margin-bottom: 15px;
    }
}
/* xl */
@media (min-width: 1350px) {
    .reason-res-title {
        font-size: 30px;
    }
    .reason-res-column-title {
        font-size: 30px;
    }
}
/*Responsive - Desktop First*/
/* xs */
@media (max-width: 575.98px) {
    .reason-res-toggle,
    .reason-res-column-toggle {
        cursor: pointer;
    }
    .reason-res-title {
        min-height: 2.66em;
    }
    .reason-res-title,
    .reason-res-column-title {
        padding-right: 1.5em;
        position: relative;
    }
    .reason-res-title::after,
    .reason-res-column-title::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 0;
        font-size: 35px;
        font-weight: 400;
        line-height: 1;
        bottom: 0;
        margin: auto;
        height: 1em;
    }
    .reason-res-item.active .reason-res-title::after,
    .reason-res-column-item.active .reason-res-column-title::after {
        content: "-";
    }
    .reason-res-item:not(.active) .reason-res-description,
    .reason-res-column-item:not(.active) .reason-res-column-description {
        display: none;
    }
}