.slide-show {
    width: 100%;
    aspect-ratio: 14 / 9;
    background-size: auto 100%;
    background-image: url("../../images/babulia.webp");
    background-position: 50% center;
    background-repeat: no-repeat;
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.slide-show__content {
    font-family: Rubik, sans-serif;
    font-size: 3.5vw;
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
    justify-content: space-between;
    align-items: flex-start;
}

.slide-show__item {
    font-family: Rubik, sans-serif;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
}

.slide-show__item--1 {
    font-size: 1.2em;
}

.slide-show__item--2 {
    font-size: 2.5em;
    position: relative;
    font-weight: 500;
}

.slide-show__item--2::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.4vw;
    background: #fff;
    bottom: 0;
}

.slide-show__item--3 {
    font-size: 1em;
}