* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    font-family: 'Roboto', 'Noto', sans-serif;
}

a:link,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;
}

#contentContainer {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    unicode-bidi: isolate;
    margin-top: 2%;
}

.logo {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
}

.menu-button {
    grid-column: 1 / 2;
    display: none;
}

.kart-button {
    grid-column: 3;
    outline: none;
    border: none;
    background-color: #FFF;

}

.logo a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-decoration: none;
    display: flex;
    pointer-events: auto;
    grid-column: 2 / 3;
    justify-content: center;
    color: rgb(15, 15, 15)
}

.shop-tabs {
    width: 50%;
    margin: auto;
    display: flex;
    margin-top: 3%;
}

.shop-tabs a {
    display: inline-block;
    outline: none;
    font-size: 13px;
    font-weight: 500;
    color: rgb(48, 48, 46);
    text-decoration: none;
    width: fit-content;
    margin: auto;
}

.container {
    display: grid;
    margin-top: 3%;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.container div img {
    height: 33vh;
    object-fit: cover;
}

.item {
    margin-bottom: 5.5%;
    display: flex;
    flex-direction: column;
}

.container>div:nth-child(1) {
    grid-row: 1 / 2;
    grid-column: span 2;
}

.container>div:nth-child(2) {
    grid-row: 2 / 3;
    grid-column: span 2;
}

.container>div:nth-child(3) {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
}

.container>div:nth-child(4) {
    grid-row: 3 / 4;
    grid-column: 2;
}

.item a {
    display: inline-block;
    box-sizing: border-box;
    border: 2px solid #000;
    background-color: #FFF;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 8px 44px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: none;
    width: 200px;
    align-self: center;
}

.container div h2 {
    font-size: 1em;
    font-weight: 50;
    margin: 32px 0;
    display: flex;
    justify-content: center;
}


@media (max-width: 500px) {

    .child a {
        width: 120px;
        padding: 8px 10px;
    }

    .child h2 {
        font-size: 0.9em;
    }

    .menu-button {
        display: inline-block;
    }

    .shop-tabs {
        display: none;
    }
}

@media (min-width: 1500px) {

    .container {
        height: 100vh;
        width: 100%;
    }

    .container div img {
        height: 33vh;
        width: 80%;
        display: block;
        margin: auto;
    }

    .shop-tabs {
        width: 30%;
        margin: auto;
        display: flex;
        margin-top: 3%;
    }

    .child img {
        width: 80% !important;
        margin: 0 !important;
    }
    
    .container>div:nth-child(3) {
        margin-bottom: 200px !important;
        margin-left: 20%;
        object-fit: cover;
    }

    .container>div:nth-child(4) {
        margin-right: 20%;
    }

}

@media (min-width: 700px) and (max-width: 1000px) {
    .shop-tabs{
        width: 70vw;
    }
}