#subscribe {
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 5rem;

    background-color: #EDF0F2;
}

#subscribe .section_content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.left_side_contents {
    width: 420px;
    margin-right: 3rem;

    display: flex;
    flex-direction: column;
}

.left_side_contents h1, p {
    margin: 0;

    color: #121518;
}

.left_side_contents h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.left_side_contents p {
    font-size: 20px;
    margin-bottom: 3rem;
}

.subscribe_buttons {
    display: flex;

    align-content: flex-start
}

.new_subscribe_button {
    width: 144px;
    height: 48px;
    padding: 0;
    margin-right: 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    border-radius: 8px;
    color: white;
    background-color: #121518;
}

.subscribe_contact_button {
    width: 144px;
    height: 48px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 1rem;
    
    border-radius: 8px;
    color: #121518;
    background-color: white;
    

    text-decoration: none;
}
 
.padding_img {
    width: 100%;
    max-width: 560px;
    height: 378px;
}

.padding_img .img_content {
    border-radius: 1.5rem;
}

@media screen and (max-width: 1189px) {
    #subscribe .section_content {
        flex-direction: column;
        align-items: flex-start;
    }

    .left_side_contents {
        margin-right: 0;
        margin-bottom: 2.5rem;
    }

    .padding_img {
        width: 100%;
        max-width: none;
        height: 320px;
    }

    .padding_img .img_content {
        width: 100%;
        border-radius: 1.5rem;
    }
}

@media screen and (max-width: 585px) {
    .left_side_contents {
        width: 100%;
    }

    .left_side_contents h1 {
        font-size: 2rem;
    }

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

    .subscribe_buttons,.new_subscribe_button,.subscribe_contact_button {
        width: 100%;
    }
    

    .padding_img {
        height: 212px;
    }
}