.guests-section {}

.guests-section__header {
    position: relative;
    padding-left: 29px;
    margin-bottom: 135px;
}

.guests-section__header:before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    width: 50vw;
    border-bottom: 1px solid var(--grey-border);
    margin-top: 2px;
}

.guests-section__header .dot {
    position: absolute;
    left: -9px;
    top: 50%;
    margin-top: -7px;
}

.guests__title {
    margin: 0;
    line-height: 46px;
    text-align: center;
}

.guests {
    margin-top: 160px;
    max-width: 1084px;
    margin-inline: auto;
}

.guests__item {
    display: flex;
}

.guests__item:nth-child(even) {
    margin-bottom: 180px;
    justify-content: end;
}

.guests__item:last-child {
    margin-bottom: 0;
}

.guest-item {
    --skew: -9.4deg;
    display: inline-flex;
    vertical-align: top;
    font-size: 10px;
}

.guest-item__image {
    flex-shrink: 0;
    width: 31.9em;
    height: 25.8em;
    position: relative;
    margin-right: 3em;
}

.guest-item__image-bg {
    width: 100%;
    height: 100%;
}

.guest-item__image-bg svg {
    display: block;
    width: 100%;
    height: 100%;
    color: #333333;
    transition: 0.15s ease-in-out;
}

.guest-item:hover .guest-item__image-bg svg {
    color: var(--violet-color);
    filter: drop-shadow(0px 0px 4.4em #A45CEC);
}

.guests__item:nth-child(even) .guest-item:hover .guest-item__image-bg svg {
    color: var(--green-color);
    filter: drop-shadow(0px 0px 4.4em rgba(0, 192, 169, 0.80));
}

.guest-item__image-content {
    position: absolute;
    left: 0;
    bottom: -.3em;
    width: 100%;
    transform: skewY(var(--skew));
    transform-origin: left bottom;
    overflow: hidden;
    border-radius: .9em;
}

.guest-item__image-content img {
    transform: skewY(calc(-1 * var(--skew)));
    display: block;
    width: 100%;
    height: auto;
    transform-origin: left bottom;
}

.guest-item__title {
    font-size: 6.4em;
    line-height: 1.09375em;
    font-weight: 800;
    transform: skewY(-10deg);
    transform-origin: left bottom;
    margin: -1em 0 -0.04688em -1.375em;
}

.guest-item__title em {
    display: block;
    font-style: normal;
    font-family: 'Ambidexter', sans-serif;
    font-weight: normal;
    font-size: 1.1875em;
}

.guest-item__text {
    color: #6F6F6F;
    font-size: 1.9em;
    line-height: 1.57895;
    transform: skewY(-10deg);
    transform-origin: left bottom;
    max-width: 14.2em;
}

.guests-footer {
    text-align: center;
    margin: 76px 0 60px;
}

@media (max-width: 767.98px) {
    .guests {
        margin-top: 72px;
    }

    .guest-item {
        font-size: 5px;
    }

    .guest-item__text {
       font-size: 2.3em;
    }

    .guests__item:nth-child(2n) {
        margin-bottom: 72px;
        justify-content: start;
    }

    .guests__item {
        margin-bottom: 72px;
    }
}
