.guest-experience {
    background: linear-gradient(0deg, rgba(255,255,255,1) 50%, rgba(229,229,229,1) 100%);
}

.guest-content h2 {
    font-size: 70px;
    line-height: 69px;
    color: var(--color-primary-blue);
    font-weight: 700;
}
.guest-content h3 {
    font-size: 40px;
    line-height: 44px;
    color: var(--color-primary-blue);
    font-weight: 300;
}
.guest-content p {
    font-size: 16px;
    line-height: 24px;
}

.ceo__name{
    color: #12284C;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    /*margin-top: 10px;*/
    text-wrap: balance;
}

@media(max-width:550px) {
    .guest-content h2 {
        font-size: 66px;
        line-height: 64px;
    }

    .guest-content h3 {
        font-size: 35px;
    }
}


.guest-content-grid{
    display: grid;
    grid-template-columns: 1fr 0.94fr;
    gap: 50px 96.50px;
    /* align-items: center; */
}

@media(max-width:992px){
    .guest-content-grid{
        grid-template-columns: 1fr;
    }
}