.content {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.top-img {
    margin: 1.1rem 0 2.2rem;
    object-fit: cover;
    height: 35%;
    width: 50%;
}
.info {
    width: 60%;
    margin: 4.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.event-wrapper {
    width: -webkit-fill-available;
    display: flex;
    padding: 4.4rem;
    align-items: center;
    flex-direction: column;
    background-color: #f0f5fa;
}
.contact-wrapper {
    width: -webkit-fill-available;
    background-color: #958D86;
    padding: 4.4rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.tel {
    font-size: 2rem;
    font-family: Arial;
    text-decoration: underline;
    margin: 1.1rem;
}


@media screen and (max-width: 768px) {
    .info {
        flex-direction: column;
        gap: 20px;
    }
}
@media screen and (max-width: 580px) {
    .contact-wrapper {
        padding: 2.2rem;
    }
    .tel {
        font-size: 1.6rem!important;
    }
}