
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", system-ui;
    /* overflow: hidden; */
}

header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #191919;
    padding: 0 50px;
}

.mobile-menu{
    display: none;
}
.mobile-logo{
    display: none;
}
.mobile-logo > a > img{
    height: 15vh;
}

.logo > a > img{
    height: 15vh;
}

.nav{
    display: flex;
    align-items: center;
}

.search-field{
    display: flex;
    align-items: center;
    background-color: white;
    width: 100%;
    border-radius: 50px;
    gap: 10px;
    padding: 10px 10px 10px 15px;
}
.search-field > input{
    border: none;
    outline: none;
    width: 100%;
    padding: 5px 10px;
}

.search-field > input::placeholder{
    color: gray;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.search-icons{
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-icons > img{
    height: 3vh;
    cursor: pointer;
}
.search-icons > i{
    font-size: 16px;
    padding: 6px 18px;
    color: white;
    border-radius: 50px;
    background-color: #FD2A53;
    cursor: pointer;
}


.nav2{
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

.qr-code {
    display: flex;
    align-items: center;
    gap: 10px;
}
.qr-code > img{
    height: 3vh;
}
.download-the > p{
    font-size: 12px;
    font-weight: 500;
}

.country {
    display: flex;
    align-items: center;
    gap: 10px;
}
.country > p{
    font-size: 12px;
    font-weight: 500;
}
.country > img{
    height: 4vh;
}
.main-country {
    display: flex;
    align-items: center;
    gap: 5px;
}
.main-count > p{
    font-size: 12px;
    font-weight: 500;
}
.main-country > p{
    font-size: 12px;
    font-weight: 500;
}

.user-profile{
    display: flex;
    align-items: center;
    gap: 10px;
}
.main-profile{
    font-size: 12px;
    font-weight: 500;
}
.main-user{
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-user > p{
    font-size: 12px;
    font-weight: 500;
}

.user-cart {
    display: flex;
    align-items: center;
    gap: 10px;
}
.user-cart > img{
    height: 4vh;
}

.main-cart{
    font-size: 12px;
    font-weight: 500;
}

.mobile-nav2{
    display: none;
}
.mobile-nav2 > i{
    font-size: 30px;
}

.mobile-searchfield{
    display: none;
    padding: 0 20px 10px 20px;
}

.msearch-field{
    display: flex;
    align-items: center;
    background-color: gainsboro;
    width: 100%;
    border-radius: 50px;
    gap: 10px;
    padding: 10px 20px 10px 20px;
}
.msearch-field > input{
    border: none;
    outline: none;
    background-color: gainsboro;
    width: 100%;
    padding: 5px 0px;
}

.msearch-field > input::placeholder{
    color: gray;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
}
.msearch-icons > i{
    font-size: 20px;
    color: black;
    cursor: pointer;
}

@media (max-width:1240px) {
    header {
        display: flex;
        align-items: center;
        justify-content: space-around;
        background-color: #191919;
        padding: 0 20px;
    }
}
@media (max-width:1040px) {
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: white;
        padding: 0 30px;
    }
    .logo {
        display: none;
    }
    .mobile-menu{
        display: flex;
        align-items: center;
    }
    .mobile-menu > i{
        font-size: 30px;
    }
    .mobile-logo{
        display: flex;

    }
    .mobile-logo > a > img{
        height: 11vh;
    }
    .nav{
        display: none;
    }
    .nav2{
        display: none;
    }
    .mobile-nav2{
        display: flex;
        align-items: center;
        gap: 30px;
    }
    .mobile-searchfield{
        display: flex;
    }

}

@media (max-width:768px) {
    .mobile-logo > a > img {
       height: 10vh;
    }
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: white;
        padding: 10px 30px;
    }
}
@media (max-width:480px) {
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: white;
        padding: 10px 10px;
    }
    .mobile-logo > a > img {
        height: 6vh;
     }
     .mobile-menu > i{
        font-size: 26px;
    }
    .mobile-nav2{
        gap: 20px;
    }
    .mobile-nav2 > i{
        font-size: 26px;
    }
    .mobile-searchfield{
        padding: 0 10px 10px 10px;
    }
}

    
main {
    background:linear-gradient(
        rgba(0, 0, 0, 0.116), 
        rgba(0, 0, 0, 0.178)
    ),  url(https://ik.imagekit.io/3tz03jgwm/bgimage.jpg);
    background-position: center;
    background-size: cover;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maincontent{
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    align-items: center;
    flex-direction: column;
}


footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F8;
    margin-top: 58px;
    padding: 20px 0;
    border-top: 1px solid #E9E9E9;
    width: 100%;
    position: fixed; /* Fix the footer to the bottom */
    bottom: 0; /* Position it at the bottom */
    left: 0;
    z-index: 0;
}
footer > p{
    font-size: 12px;
    color: #999;
}

@media (max-width:480px) {
    .nav > a > img{
        height: 45px;
    }
    .nav > h3{
        font-weight: 400;
        font-size: 18px;
        color: #E62E04;
    }
}





