.wrapper {
    width: 100%;
    margin: 0 auto;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
}

.wrapper .imageOverlay {
    max-width: unset;
}

.wrapper .containerDescription {
    padding-left: 4%;
    padding-bottom: 1rem;
}

.wrapper .loading-black-screen {
    position: static;
    background: unset;
    margin: 0 auto;
}

.wrapper .errorHandler h2 {
    font-size: 1rem;
    letter-spacing: var(--letter-spacing-base);
}

.wrapper .calendly {
    margin-top: 2rem;
}

.image {
    display: flex;
    align-items: center;
}

.image,
.containerDescription {
    width: 48%;
}

.paragraph {
    font-weight: 300;
    font-size: 1.3rem;
    padding-top: 0.5rem;
    color: #fff;
}

.description p {
    font-size: 1.3rem;
    font-weight: 300;
    padding-bottom: 0.5rem;
}

.description h2 {
    font-family: var(--ff-main);
    font-size: 2rem;
    text-transform: capitalize;
    letter-spacing: var(--letter-spacing-base);
    font-weight: 300;
    padding-bottom: 1rem;
}

.description a {
    font-size: 1.3rem;
    margin: 0.5rem 0;
    text-decoration: underline;
    font-family: var(--ff-main);
    color: var(--green-strong);
    font-weight: 300;
    cursor: pointer;
    display: block;
}

@media(max-width: 968px) {
    .wrapper .containerDescription {
        padding-left: 0%;

    }

    .wrapper {
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 10%;
    }

    .image,
    .containerDescription {
        width: 90%;
        max-width: 680px;
    }

    .image .imageOverlay {
        min-height: unset;
        height: 600px;
        margin-bottom: 2rem;
    }

    .containerDescription .imageOverlay {
        height: 600px;
        min-height: unset;
        margin-bottom: 2rem;
    }

    .wrapper .calendly {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    .description p,
    .description h2,
    .description a {
        text-align: center;
    }

}

@media(max-width: 750px) {
    .wrapper .gallery-cards-container {
        flex-wrap: wrap;
        transform: translate3d(0, --noneContentPosition, 0);
        transform: translate3d(0, --initialContentPosition, 0);
        height: var(--cards-container-height);
    }

    .image {
        width: 100%;
    }

    .image .imageOverlay {
        margin-bottom: 0;
    }
}

@media (max-width:500px) {
    .containerDescription {
        margin-top: 1.5rem;
    }
}