*{
    padding: 0;
    margin: 0;
}
.first_nav{
    background-color: rgb(52, 51, 51);
    color: white;
    display: flex;
    justify-content: space-between;
    padding: .5rem;
    padding-left: 1rem;
    padding-right: 1.5rem;
}
.nav_location{
    color: rgb(190, 190, 190);
}
.first_nav_items:hover{
    color: #F2CB1F;
}
.second_nav{
    background-color: #F2CB1F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1.5rem;
    height: 5erm;
}
.second_nav a{
    text-decoration: none;
    color: rgb(46, 45, 45);
}
.second_nav_items{
    font-weight: bold;
}
.second_nav_items:hover{
    color: white;
}
.second_nav_icons{
    font-size: 1.5rem;
}
.second_nav_icons:hover{
    color: white;
}
.third_nav{
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: .5rem;
    background-color: rgb(239, 236, 236);
    font-weight: bold;
    align-items: center;
}
.third_nav i{
    color: #F2CB1F;
}
@media (min-width: 360px) and (max-width: 767px) {
    .first_nav{
        display: none;
    }
    .second_nav_items{
        font-size: .7rem;
    }
    .second_nav_icons{
        display: none;
    }
    .third_nav{
        font-size: .7rem;
    }
}

/* Main body */
.main_body{
    min-height: 60vh;
    padding-top: 2rem;
    padding-bottom: 3rem;
}
.contact_body h2{
    font-weight: bold;
    position: relative;
}
.contact_body h2::before{
    content: "";
    width: 8rem;
    background-color: #F2CB1F;
    position: absolute;
    top: 3rem;
    left: 50%;
    height: 7px;
    transform: translateX(-50%);
    border-radius: 3rem;
}
.contact_section{
    margin-top: 5rem;
}
.contact_form{
    text-align: left;
}
.contact_inp{
    border-bottom: 1px solid rgb(163, 163, 163);
    width: 90%;
}
.contact_inp input,textarea{
    border: 0;
    width: 100%;
    padding-top: 1rem;
}
.contact_inp input,textarea:focus{
    outline: none;
}
.contact_inp input{
    height: 3rem;
}
.contact_inp textarea{
    margin-top: 2rem;
}
.contact_send_btn button{
    border: 0;
    background-color: #F2CB1F;
    padding: 1rem 2rem 1rem 2rem;
    color: white;
    font-weight: bold;
    margin-top: 2rem;
}
.contact_map iframe{
    width: 100%;
    height: 20rem;
}


/* Footer */
.first_footer{
    padding: 1.5rem;
}
.footer_email{
    font-size: 1.1rem;
}
.second_footer{
    background-color: black;
    color: white;
    padding-top: 3rem;
    padding-bottom: 4rem;
}
.second_footer h5{
    font-size: .8rem;
    font-weight: bold;
}
.second_footer a{
    text-decoration: none;
    color: rgb(167, 162, 162);
}
.footer_subscribe input{
    width: 100%;
    border: 0;
    height: 2rem;
    padding-left: .5rem;
}
.footer_subscribe input:focus{
    outline: none;
}
.footer_subscribe button{
    padding: .5rem 1rem .5rem 1rem;
    background-color: #F2CB1F;
    border: 0;
    font-weight: bold;
    transition: all .3s;
    font-size: .8rem;
    margin-top: .5rem;
}
.footer_subscribe button:hover{
    background-color: black;
    color: white;
}

.third_footer{
    background-color: black;
}
.footer_copyright{
    border-top: 1px solid rgb(79, 74, 74);
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}
.third_footer h6{
    color: rgb(167, 162, 162);
}
.third_footer a{
    text-decoration: none;
    color: #F2CB1F;
}
@media (min-width: 360px) and (max-width: 1024px) {
    .footer_email{
        font-size: .7rem;
        font-weight: bold;
    }
    .second_footer{
        text-align: center;
    }
}