/* ////FOOTER CSS BELOW */

/* //FOOTER  CSS Part BELOW */
.fas .fa {
    padding: 20px;
    font-size: 30px;
    width: 70px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    margin: 20px;
}

.fa:hover {
    color: black;
    text-decoration: none;
}

.fa-facebook {
    background: #3B5998;
    color: white;
    border-radius: 26px;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
    border-radius: 26px;
}

.fa-google {
    background: red;
    color: white;
    border-radius: 26px;
}

.fa-youtube {
    background: #bb0000;
    /* /* background: brown; */
    color: white;
    border-radius: 26px;
}

.fa-instagram {
    background: #125688;
    color: white;
    border-radius: 26px;
}



#footer_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    margin-top: 20px;

}

#sub_footer_1 {
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 5px;

}
#sub_footer_1 h2{
    font-size: 25px;;
}

#sub_footer_2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d4dbf5;
    padding-top: 10px;
    padding-bottom: 5px;
}

#social_media_h2 {
    font-weight: 900;
    font-size: 20px;
}



#email_inside {
    width: 100%;
    height: 35px;
    outline: none;
    background-color: beige;
    text-align: center;
    font-weight: 500;
    border-radius: 14px;

}

#email {
    width: 55%;
    margin-bottom: 10px;
    font-size: 15px;

}

#sign_up_btn {
    width: 300px;
    height: 35px;
    font-weight: 600;
    background-color: black;
    color: white;
    border: 1px solid beige;
    border-radius: 17px;
}

#sign_up_btn a {
    text-decoration: none;
    color: white;
}

#sign_up_btn a:hover {
    color: red;
}

#sub_footer_1_h2 {
    color: white;
    font-weight: 600;
    padding-bottom: 15px;
    cursor: default;
}

#sub_footer_1_p {
    color: white;
    padding-bottom: 18px;
    font-size: 14px;
}

#social_media_h2 {
    cursor: default;
}

@media screen and (min-width:300px) and (max-width:900px) {
    #footer_section {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        text-align: center;
    }

    #sub_footer_1_h2 {
        text-align: center;
    }

    #sub_footer_1_p {
        text-align: center;
    }

    #social_media_h2 {
        text-align: center;
    }
}

#help_section {
    background-color: rgb(244, 240, 240);
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    padding-top: 30px;
    padding-bottom: 10px;
}

.sub_help_section>h5>a {
    color: black;
    font-weight: 500;
    text-decoration: none;

}

.sub_help_section>h5>a:hover {

    color: red
}

#end_div {
    background-color: rgb(239, 232, 225);
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0px;
}

@media screen and (min-width:301px) and (max-width:800px) {
    #help_section {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
    }
}