*{
    margin: 0;
    box-sizing: border-box;
    font-family: ubuntu;
    scroll-behavior: smooth;
}

.navbar{
    height: 60px;
    background-color: #0f1111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.nav-logo {
    height: 50px;
    width: 100px;
}

.logo {
    background-image: url('Images/amazon_logo.png');
    background-size: cover;
    height: 50px;
    width: 100%;   
}

.add-icon {
    display: flex;
    align-items: center;
}

.address-f {
    color: #cccccc;
    font-size: 0.85rem;
    margin-left: 15px;
}

.address-s {
    margin-left: 3px;
}

.nav-search {
    display: flex;
    justify-content: space-evenly;
    width: 620px;
    height: 40px;
    border-radius: 5px;
}

.nav-search:hover{
    border: 3.5px solid rgb(255, 191, 0);
    border-radius: 5px;
}

.search-select {
    background-color: #f3f3f3;
    width: 50px;
    text-align: center;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border: none;
}

.search-input {
    width: 100%;
    font-size: 1rem;
    border: none;
}

.search-icon{
    background-color: rgb(255, 191, 0);;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-size: 1.2rem;
    color: #0f1111;
}

span {
    font-size: 0.8rem;
}

.nav-acc {
    font-weight: 700;
}

.nav-cart i {
    font-size: 25px;
}

.nav-cart {
    font-weight: 700;
}

.nav-lang i {
    font-size: 25px;
}

.nav-lang {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-in {
    margin-left: 3px;
}

.panel {
    height: 40px;
    background-color: #222f3d;
    display: flex;
    color: white;
    align-items: center;
    justify-content: space-evenly;
}

.panel-ops {
    width: 70%;
}

.panel-ops p{
    display: inline;
    margin-left: 15px;
}

.panel-deals {
    font-weight: 500;
}

.hero-section {
    background-image: url('Images/hero_image.jpg');
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-content {
    background-color: white;
    color: black;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin-bottom: 25px;
}

.hero-content a,
.shop-content p{
    color: #007185;
}

.shop-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #e2e7e6;
}

.shop {
    height: 450px;
    width: 23%;
    background-color: white;
    padding: 20px 0px 15px;
    margin-top: 15px;
}

.shop-img {
    height: 300px;
    margin: 1rem 0 1rem 0;
    background-size: cover;
}

.shop-content {
    margin: 0 1rem 0 1rem;
}

footer{
    margin-top: 15px;
}

.foot-1 {
    background-color: #37475a;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-link {
    color: white;
    text-decoration: none;
}

.foot-2 {
    background-color: #222f3d;
    color: white;
    height: 300px;
    display: flex;
    justify-content: space-evenly;
}

.foot-2 ul li{
    margin-top: 10px;
    color: #DDDDDD;
    font-size: 0.95rem
}

#foot-2-main{
    font-size: 22px;
    font-weight: 500;
    color: White;
}

.foot-3 {
    background-color: #222f3d;
    color: white;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot-3-logo {
    background-image: url('Images/amazon_logo.png');
    background-size: cover;
    height: 50px;
    width: 100px; 
}

.foot-4 {
    background-color: #0f1111;
    color: white;
    height: 70px;
    text-align: center;
}

.foot-ops {
    padding-top: 15px;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.foot-copy {
    padding-top: 5px;
}

.foot-copy p {
    font-size: 0.85rem;
}

.mobile-data {
    height: 100vh;
    display: none;
}


@media only screen and (max-width: 850px) {
    header,
    footer,
    .hero-section,
    .shop-section{
        display: none;
    }

    .mobile-data {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    }
}
