.vertical-text-section {
    width: var(--side-padding);
    display: flex;
    justify-content: end;
    height: 100%;
}

.vertical-text-sub-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 3vw;
}

/* Hide vertical text when width is lower than 1024 */
@media screen and (max-width: 1366px) {
    .vertical-text-sub-container {
        display: none !important;
    }
}

.vertical-text {
    writing-mode: vertical-lr;
}

.vertical-line-container {
    display: flex;
    justify-content: center;
}

.vertical-line {
    border-left: 1px solid var(--grey-100);
    height: 100px;
}