@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

}

body {
    width: 100vw;
    height: 100vh;
    background: rgb(252 252 252);
}

/*<<<<<<<<<<<<<<<<<<<<<<<< header start >>>>>>>>>>>>>>>>>>>>>>>>*/

header {
    background-image: url(images/bg-banner1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 420px;


}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    height: 70px;
    margin: 0 auto;
    color: #ffffff;
    /* border: 1px solid red; */
}

.nav_left_item a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    /* border: 1px solid red; */
}

nav .nav_right_item ul {
    display: flex;
    align-items: center;
    list-style: none;
    /* border: 1px  solid red; */


}

.nav_right_item ul li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0 20px;
    font-weight: lighter;
}

.logo {
    color: #ffffff;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.logo img {
    width: 300px;
    height: 60px;
}

.logo h1 {
    font-size: 2.2rem;
    font-weight: 100;
    margin: 30px 0;
    letter-spacing: 2px;
}

.logo h1 span {
    font-weight: 600;
}

.search_bar {
    display: flex;
    align-items: center;
    background: #ffffff;
    height: 3.4rem;
    width: 55%;
    border-radius: 7px;
}

.search_bar .left_search_bar {
    display: inline-flex;
    padding: 0 1rem;
    width: 30%;
    border-right: 2px solid rgb(189, 188, 188);
    /* border: 1px solid red; */
}

.search_bar .right_search_bar {
    display: inline-flex;
    padding: 0 1rem;
    width: 70%;
}

.search_bar input {
    border: 0;
    outline: none;
    font-size: 1rem;
    background: transparent;
    color: gray;
    width: 100%;
    margin-left: 6px;
}

.search_bar .left_search_bar i {
    color: rgb(236, 83, 83);
    font-size: 20px;
}

.search_bar .right_search_bar i {
    color: rgb(73, 72, 72);
    font-size: 20px;
}


/*<<<<<<<<<<<<<<<<<<<<<< Order start >>>>>>>>>>>>>>>>>>>>>>>*/

.order_section {
    width: 85%;
    margin: 0 auto;
    text-align: center;
}

.order_section .order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 3%;
    margin-bottom: 40px;

}

.order .card {
    width: 30%;
    margin: 12px;
    border-radius: 8px;
    border: 1px solid gray;
    transition: 0.5s;
    position: relative;

}

.order .card a img {
    width: 100%;
    height: 200px;
    border-radius: 7px;
    top: 0;
    left: 0;

}

.order .card:hover {
    transform: scale(1.1);
}

.order .card .information {
    text-align: left;
    width: 100%;
    padding: 0 17px;
    position: absolute;
    bottom: 0;
    background: #ffffff;
    border-radius: 8px;
}

.order .card .information .heading {
    font-size: 1rem;
    margin: 10px 0;
}

.order .card .information .text {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.menu_icon {
    color: #ffffff;
    font-size: 30px;
    display: none;
}

/* -------------- collection ------------ */

.collections{
    /* border: 2px solid black; */
    width: 85%;
    margin: 90px auto;
    /* text-align: center; */
    /* border: 1px solid rgb(55, 211, 16); */
}

.collections h1{
    text-align: left;
    font-size: 2.1rem;
    font-weight: lighter;
    margin-bottom: 20px;
    /* border: 1px solid red; */
}

.collections p{
    text-align: left;
    font-size: 1rem;
    font-weight: lighter;
    margin-bottom: 20px;
    /* border: 1px solid red; */
}

.collection-card{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
    /* background-size: cover; */
    /* gap: 20px; */
    /* border: 1px solid red; */
}

.collection-card .card{
    width: 280px;
    overflow: hidden;
    position: relative;
    margin: 12px 0;
    /* background: linear-gradient(from bottom, #000, #ccc); */
    /* border: 1px solid red; */
}

.collection-card .card img{
    width: 100%;
    height: 300px;
    background: linear-gradient(from bottom, #070606, #353536);
    border-radius: 8px;
    /* border: 1px solid red; */
}

.collection-card .card .content{
    position: absolute;
    bottom: 0;
    width: 100%;
    /* border: 1px solid red; */
}

.collection-card .card .content p{
    color: rgb(224,224,225);
    font-weight: 500;
    font-size: 1.1rem;
    margin: 5px 9px;
}


/*<<<<<<<<<<<<<<<<<<<< Popular Location part >>>>>>>>>>>>>>>>>>*/


.popular{
    width: 85%;
    margin: 90px auto;
} 

.popular h1 span{
    color: #6b6a6a;
    font-weight: lighter;
}

.popular-location{
    width: 100%;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
}

.popular-location .box{
    width: 30%;
    background: #ffffff;
    border: 1px solid rgb(168, 164, 164);
    margin: 10px 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 7px;
}

.popular-location .box:hover{
    box-shadow: 0px 2px 4px rgba(0,0,0, 0.3);
}

.popular-location .box a{
    text-decoration: none;
    color: #1b1b1b;
    font-weight: 0;
}

.popular-location .box p{
    margin: 0;
}

.popular-location .box .city-name{
    font-size: 20px;
    letter-spacing: 1px;
}

.popular-location .box .nummber-of-place{
    font-size: 16px;
    padding: 8px 0;
}

.popular-location .box i{
    color: rgb(34, 33, 33);
}

/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< About App Section >>>>>>>>>>>>>>>>>>>*/

.about-app{
    width: 100%;
    background: rgb(255,251,247);
    padding: 60px 0;
}
.app{
    display: flex;
    width: 70%;
    margin: 0 auto;
    justify-content: space-around;
}

.app .app-image{
    width: 30%;
    padding-top: 50px;
}

.app .app-image img{
    width: 100%;

}
.app .get-app{
    width: 60%;
    padding: 0 20px;
}

.app .get-app h2{
    font-size: 2rem;
    font-weight: lighter;
    margin-bottom: 25px;
}

.app .get-app  p{
    font-size: 1rem;
    font-weight: lighter;
    margin-bottom: 30px;
}

.app .get-app .email-phone{
    margin-bottom: 30px;
}

.app .get-app .email-phone input[type=radio]{
    accent-color: rgb(235, 31, 65);
}

.submit input{
    width: 60%; 
    padding: 15px 8px;
    border: 0;
    outline: none;
    border: 1px solid rgb(173, 161, 161);
    border-radius: 7px;
    font-size: 1rem;
}

.submit button{
    padding: 15px 8px;
    background: rgb(239,79,95);
    border: 0;
    outline: none;
    border-radius: 7px;
    font-size: 1.1rem;
    color: #ffffff;
    margin-left: 12px;
}

.app-store{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}
.app-store img{
    width: 150px;
}

/*------------------- Explore part ----------------*/

.Explore{
    width: 85%;
    margin: 90px auto;
}

.options{
    background: #ffffff;
    width: 100%;
    border: 0;
    outline: none;
    border: 1px solid gray;
    text-align: left;
    padding: 22px 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: rgb(177, 175, 172);
    cursor: pointer;
}

.options button{
    background: 0;
    border: 0;
    font-size: 1.1rem;
    cursor: pointer;
}

/*------------------ FOOTER SECTION------------- */

.footer{
    width: 100%;
    background: rgb(248,248,248);
}

.footer .container{
    width: 90%;
    margin: 0 auto;
    padding: 50px 20px;
}

.footer-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-top img{
    width: 140px;
}

.footer-top .footer-btn button{
    padding: 10px 30px;
    border: 0;
    outline: none;
    border: 1px solid gray;
    font-size: 16px;
    margin: 0 6px;
    border-radius: 8px;
}

.footer-links{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links .column{
    margin: 50px 12px ;
}

.footer-links ,.column .column-links{
    list-style: none;
    margin-top: 16px;
    
}
.footer-links ,.column .column-links li{
    margin: 10px 0;
}

.footer-links ,.column .column-links li a{
    text-decoration: none;
    color: rgb(102, 103, 104);
    font-size: 15px;
}

.footer-links ,.column .column-links li a:hover{
    color: black;
}

.footer-links .column div{
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    font-size: 16px;
    color: #070606;
}

.column-links a i{
    padding: 6px;
    color: #ffffff;
    background: #353536;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 15px;
}

.column-links li img{
    width: 150px;
}

.footer-bottom{
   font-size: 14px; 
   margin-top: 20px;
   text-align: left;
   color: #6b6a6a;
}


/* --------------media queria-------------- */

@media only screen and (max-width:768px) {
    .menu_icon {
        display: block;
    }

    nav .nav_left_item a, nav .nav_right_item ul {
        display: none;
    }

    .logo h1{
        font-size: 1.5rem;
    }
    .logo img {
   width: 250px;
    }
    .collection-card .card{
        width: 100%;
        margin: 20px;
    }

    .popular-location .box{
        width: 100%;
        
    }
    .app{
        flex-direction: column;
    }
    .app .app-image, .app .get-app{
        width: 100%;
    }
    .app .submit input{
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }
    .app-store{
         flex-direction: column;
         width: 100%;
         margin-top: 20px;
    }
    .app-store img{
        width: 100px;
    }
}