* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.main_section {
    background-image: url(images/zomato1.avif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 20px;
    height: 450px;
    color: white;
}

nav {
    margin: 5px 50px;
}

.nav-item a {
    text-decoration: none;
    color: white;
    font-size: 20px;
}

.nav-item a:hover {
    color: white;

}

.main_section h1 {
    font-size: 74px;
    font-weight: 300;
    font-style: italic;
}

.main_section h3 {
    font-size: 30px;
}

.search {
    margin-top: 40px;
}

.search input::placeholder {
    font-size: 12px;
}

.search input {
    border: none;
    padding: 5px;
}

.search {
    background-color: white;
    border-radius: 10px;
    padding: 5px;
    margin: 2% 30%;
    width: 40%;
}

.container, .section_content, .collections, .localities {
    padding: 20px;
}

.container {
    margin-top: 30px;
}

.card {
    border: solid rgb(217, 212, 212) 1px;
    border-radius: 15px;
    padding: 10px;
    margin: 5% 4%;
}

.card:hover {
    transform: scale(1.05);
    transition: transform .4s;
}

.card a {
    text-decoration: none;
    color: black;
}

.card-title {
    font-weight: 300;
}

.collection_link {
    color: rgb(255, 126, 139);
    text-decoration: none;
}

.collection_link:hover {
    color: rgb(255, 126, 139);
}

.localities .col-lg-3 {
    border: solid rgb(217, 212, 212) 1px;
    border-radius: 10px;
    padding: 20px;
    margin: 2%;
    box-shadow: 1px 2px rgb(192, 191, 191);
}

.localities .col-lg-3:hover {
    cursor: pointer;
    box-shadow: 1px 2px rgb(115, 114, 114);
}

.localities h3 {
    margin-bottom: 40px;
}

.zomato_band {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: rgb(255, 251, 247);
}

.about_app {
    padding: 25px;
}

.zomato_mobile img {
    width: 250px;
    margin-top: 50px;
}

.play_store img {
    width: 150px;
}

.radio input, .about_app h1, .about_app h6, .about_app_search input {
    margin: 15px 5px;
}

.about_app_search input {
    border-radius: 10px;
    border: 1px solid rgb(211, 210, 210);
    padding: 5px;
}

.zomato_band h1 {
    font-weight: 700;
}

.accordion {
    margin-top: 40px;
}

.accordion-header button {
    font-size: 20px;
}

.accordion-item {
    border: none;
}

.accordion-header {
    margin: 20px;
    border: 1px solid rgb(224, 223, 223);
    border-radius: 10px;
    padding: 10px;
}

.accordion-body {
    border: 1px solid rgb(224, 223, 223);
    padding: 20px;
}

@media screen and (max-width:677px) {
    .zomato_band {
        flex-direction: column;
    }

    nav ul {
        display: flex;
        flex-direction: column;
    }

    .card {
        margin: 5% 1%;
    }
}

@media screen and (max-width:725px) {
    .card {
        margin-bottom: 20px;
    }
}

@media screen and (max-width:680px) {
    .main_section {
        height: 600px;
    }

    .search {
        margin: 2% 4%;
        width: 92%;
    }
}

@media screen and (max-width:420px) {
    .accordion-header {
        padding: 2px;
    }

    .accordion-header button {
        font-size: 10px;
    }
}

@media screen and (max-width:375px) {
    .play_store img {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 2% 25%;
    }
}

footer {
    background: rgb(248, 248, 248);
}

.top-footer {
    display: flex;
    justify-content: space-between;
    padding-left: 100px;
    margin-top: 10px;
}

.foottitle h1 {
    font-weight: 300;
    font-style: italic;

}
footer h6{
    font-weight: 700;
}
.bottom-footer {
    display: flex;
    justify-content: space-evenly;
}
footer li a{
    text-decoration: none;
    color: rgb(105, 105, 105);
    font-size: 15px;
}
footer li a:hover{
    color: black;
}
footer li{
    list-style: none;
    text-align: left;
}
.social_footer{
    cursor: pointer;
}
.social_footer .play_store img {
    display: flex;
    flex-direction: column;
    padding: 5px;
    align-items: center;
}
@media screen and (max-width:800px){
    .top-footer{
    flex-direction: column;
    }
    .bottom-footer{
        flex-wrap: wrap;
        margin-top: 40px;

    }
    .bottom-footer div{
        width: 30%;

    }
    
   
}
@media screen and (max-width:550px){
    .social_footer{
        display: none;
    }
    .bottom-footer div{
        width: 50%;
        

    }
    .bottom-footer h6{
        font-size: 15px;
    }
}
