.focus-slide {
    display: flex;
    flex-direction: column;
    padding: 2em;
}

.focus-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75%;
    width: 100%;
    margin: auto;
}

.focus-card {
    background: #2b2b2b;
    margin: 0 2em;
    width: 480px;
    height: 80vh;
    padding: 0.5em;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.focus-image {
    object-fit: cover;
    width: 100%;
    height: 30%;
}

.focus-text {
    text-align: justify;
    margin-top: 1rem;
}

.focus-button-desktop {
    margin-top: -0.5em;
    font-weight: 700;
    font-size: 24px;
    padding: 0.3em !important;
    width: 66%;
}

.focus-space {
    flex-grow: 1;
}

.focus-svg {
    margin: 1em;
}

.focus-button-mobile {
    display: none;
}

/* Modal Start */

.focus-modal-main {
    max-width: 1024px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.focus-modal-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.focus-modal-subheader {
    font-weight: 300;
    color: #ff9917;
}

.focus-modal-text {
    width: 45%;
    margin: 2rem 0.5rem;
}

.focus-modal-image {
    width: 45%;
    margin: 2rem 0.5rem;
    box-shadow: 0 0 25px rgba(33, 33, 33, 0.8);
    border-radius: 0.5rem;
    height: fit-content;
}

.reverse > img {
    transform: translate(-120%);
    left: 0;
}

.reverse > div {
    transform: translate(120%);
    right: 0;
}


@media screen and (max-width: 1024px) {
    .focus-slide {
        padding: 0;
    }

    .focus-header {
        position: absolute;
        top: 0.5rem;
        width: 100%;
        text-align: center;
        z-index: 1;
    }

    .focus-main {
        flex-direction: column;
        height: 100%;
        width: 100%;
    }

    .focus-card {
        height: 100%;
        width: 100%;
        padding: 0;
        position: relative;
    }

    .focus-image {
        height: 100%;
        width: 100%;
    }

    .focus-button-mobile {
        position: absolute;
        bottom: 0.5rem;
        left: 1rem;
        z-index: 0;
        padding: 0 !important;
        height: 3rem;
        font-size: 1.4rem;
    }

    .focus-button-mobile {
        display: block;
    }

    .focus-modal-section {
        justify-content: space-between;
        flex-direction: column;
        margin: 2rem auto;
    }

    .reverse > img,
    .reverse > div,
    .focus-modal-image,
    .focus-modal-text {
        margin: 0.5rem auto;
        width: 100%;
        transform: none;
    }


    .focus-svg,
    .focus-space,
    .focus-button-desktop,
    .focus-text {
        display: none;
    }

}