/* --------------------------First View-------------------------- */
.first_view {
    width: 100%;
    max-width: 3840px;
    height: 100vh;
    margin: 0 auto;

    box-sizing: border-box;
}

.main_img_wrapper {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    
    display: flex;
    justify-content: center;
    
    box-sizing: border-box;
    
    z-index: 1;
}

.ad_copies {
    width: 80vw;
    height: 276px;
    margin: 0 auto;

    position: relative;
    top: calc(-1 * (100vh/2 + 276px/2));
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    box-sizing: border-box;

    z-index: 3;
}

.main_copy {
    margin: 0;
    margin-bottom: 32px;

    font-size: 54.44px;

    color: white;
}

.sub_copy {
    margin: 0;
    margin-bottom: 50px;
    
    font-size: 20px;
    line-height: 1.5em;
    letter-spacing: 0.1em;

    color: white;
}

.subscribe_button {
    padding: 0 20px;
    height: 48px;
    margin: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;

    border-radius: 8px;

    background-color: white;

    box-sizing: border-box;
}

@media screen and (max-width: 960px) {
    .ad_copies {
        width: 100%;
        max-width: calc(1280px + 40px + 40px);
        padding-left: 40px;
        padding-right: 40px;
    }
}


@media screen and (max-width: 585px) {
    .first_view {
        height: 100svh;
    }

    .main_img_wrapper {
        height: 100svh;    
    }

    .ad_copies {
        max-width: calc(1280px + 24px + 24px);
        padding-left: 24px;
        padding-right: 24px;

        top: calc(-1 *  ( 100svh - 50vh) );
    }

    .main_copy {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .sub_copy {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}