.landing-cut {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%
}

.landing-wrapper {
    height: 250px;
}

    .landing-wrapper .image {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 50%;
    }

        .landing-wrapper .image img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

    .landing-wrapper .landing {
        position: relative;
        z-index: 5;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

        .landing-wrapper .landing h1 {
            font-size: 3em;
            font-weight: bold;
            line-height: 1;
            width: 75%;
        }

.side-menu {
    position: sticky;
    top: 2rem;
    background-color: var(--bg);
    padding: 2rem;
    border-radius: 10px;
}

.side-menu h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.side-menu ul li a {
    color: var(--black);
    text-decoration: none;
}

    .side-menu ul li a:hover {
        text-decoration: underline;
    }

.side-menu #top {
    background-color: var(--blue);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color .3s ease-in-out;
    font-size: .9rem;
}

    .side-menu #top:hover {
        background-color: var(--black);
    }

.content img {
    height: 350px;
    border-radius: 15px;
}

.content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.content iframe {
    border-radius: 15px;
}

.contact-form {
    background-color: var(--bg);
    padding: 2em;
    margin-top: 2em;
    border-radius: 10px;
}

    .contact-form input, .contact-form textarea {
        width: 100%;
        margin-bottom: 1rem;
    }

    .contact-form textarea {
        height: 200px;
    }