#join {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    overflow: hidden;
}

#join > .img {
    width: 100%;
    height: 100vw;
    object-fit: cover;
}

#join > .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #005565;
    color: white;
    height: 100vw;
}

#join > .content > .title {
    font-size: 3rem;
    font-weight: bold;
}

#join > .content > .summary {
    font-size: 1rem;
}

#join > .content > .btn {
    color: black;
    background-color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 0;
    margin-top: 5rem;
}

@media (min-width: 1024px) {
    #join {
        grid-template-columns: repeat(2, 1fr);
        height: 890px;
    }

    #join > .img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #join > .content {
        height: 100%;
    }

    #join > .content > .title {
        font-size: 5rem;
    }

    #join > .content > .summary {
        font-size: 1.2rem;
    }

    #join > .content > .btn {
        padding: 1rem 2rem;
        margin-top: 10rem;
    }

}