
/* base style */
body, html {
    height: calc(100% - 2em);
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    Height: 100%;
    background: #ECEBF5;
    font-family: "Poppins";
}

html {
    background-color: #000;
}

a {
    text-decoration: none;
}

.d-grid {
    display: grid;
}

.container-main {
    max-width: 160rem;
    margin: 0 auto;
    /* padding: 0 1.5rem; */
}

/* loading */
.loading-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    height: 100vh;
    width: 100vw;
    overflow-y: hidden;
    z-index: 10000000;
}

.loading-screen h1 {
    display: flex;
    flex-direction: row;
    font-family: snap itc;
    color: #4B477E;
}

.v {
    color:#4B477E;
    animation: v .5s 1 linear;
}

@keyframes v {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-20px);
    }

    75% {
        transform: translateY(-10px);
    }
    
    100% {
        transform: translateY(0px);
    }
    
}

.i1 {
    color:#4B477E;
    animation: i1 .5s 1 linear;
    animation-delay: .1s;
}

@keyframes i1 {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-20px);
    }

    75% {
        transform: translateY(-10px);
    }
    
    100% {
        transform: translateY(0px);
    }
    
}

.z {
    color:#4B477E;
    animation: z .5s 1 linear;
    animation-delay: .2s;
}

@keyframes z {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-20px);
    }

    75% {
        transform: translateY(-10px);
    }
    
    100% {
        transform: translateY(0px);
    }
    
}

.i2 {
    color:#4B477E;
    animation: i2 .5s 1 linear;
    animation-delay: .3s;
}

@keyframes i2 {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-20px);
    }

    75% {
        transform: translateY(-10px);
    }
    
    100% {
        transform: translateY(0px);
    }
    
}

.o {
    color:#4B477E;
    animation: o .5s 1 linear;
    animation-delay: .4s;
}

@keyframes o {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-20px);
    }

    75% {
        transform: translateY(-10px);
    }
    
    100% {
        transform: translateY(0px);
    }
    
}

.n {
    color:#4B477E;
    animation: n .5s 1 linear;
    animation-delay: .5s;
}

@keyframes n {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-20px);
    }

    75% {
        transform: translateY(-10px);
    }
    
    100% {
        transform: translateY(0px);
    }
    
}





/* aside */
aside {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    overflow-Y: hidden;
    bottom: 0;
    padding: 1em 0;
    position: fixed;
    background: #4B477E;
    justify-content: space-around;
    align-items: center;
    width: 100% !important;
    height: 25px;
    border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    z-index: 100000;
        
}
aside img {
    cursor: pointer;
} 
aside embed {
    cursor: pointer;
}

nav {
    background: none;
    width: 0;
    flex-shrink: 1px;
    padding: 0;
    margin-right: 0;
    top: 0;

}
.navBar {
    margin-left: auto;
    display: flex;
    padding-left: 0;
    justify-content: right;
}



.aside-icon {
    color: #ECEBF5;
    font-size: 1.5em;
}

.cart-hide {
    display: none;
}
.active {
    position: absolute;
    display: block;
    background: transparent;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    margin-top: 4.5em;

}

.menu-box {
    height: 100vh;
    margin-top: -6em;
}

.menu-link {
    z-index: 10002;
}

ul {
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-top: 1.5em;
    z-index: 1000;
}

ul li {
    display: flex;
    margin-top: -1em;
    height: 15.5vh;
}
ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: .8em;
    display: block;
    padding: 3em 0 1em 1em;
    background: #3F4040;
    color: #F7F7F8;
    width: 100%;
    Text-align: left;
}
ul .signup li a {
    color: white;
    text-transform: none;
}
.nav-menu {
    display: flex;
}

/* main */
main {
    display: none;
}

/* Favourites */

.fav-box {
    position: absolute;
    background-color: #F7F7F8;
    width: 80vw;
    height: 100vh;
    right: 0;
    z-index: 1000000;
    opacity: 0;
    transform: scale(0);
    overflow-y: scroll;
    overflow-x: hidden;
}

.fav-box.activated {
    opacity: 1;
    transform: scale(1);
}

.fav-click {
    background-color: #3F4040;
    width: 100%;
    border: none;
    text-align: left;
    padding-left: 1em;
    text-transform: uppercase;
    font-size: .8em;
    color: #fff;
}

.fav-click-lg {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 1em;
}

.fav-header {
    margin-top: 1em;
    padding-left: 1em;
    color: #4B477E;
}

.close-fav-icon {
    border: none;
    background-color: transparent;
}

.exit-fav {
    font-size: 2em;
}

.fav-note {
    text-align: center;
}

.fav-content {
    display: flex;
    flex-direction: column;
}

.empty-fav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30vh;
    color: #4B477E;
    opacity: 0.6;
}

.fav-content-box {
    position: absolute;
    margin-left: 1em;
    margin-bottom: 1em;
}

.fav-content-details {
    margin-left: 1em;
    margin-top: 7vh;
    color: rgb(221, 109, 109);
}

.fav-content-name {
    font-weight: bold;
    color: #4B477E;
}

/* cart */
.cart-box {
    position: absolute;
    background-color: #3F4040;
    width: 90vw;
    height: 50vh;
    bottom: 55px;
    z-index: 10000;
    right: 1vw;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    overflow-y: hidden;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    transition: opacity .25s ease-out;
}
.cart-box.activated {
    opacity: 1;
    transform: scale(1);
}
.cart-header {
    display: block;
    background-color: grey;
    padding-block: .01rem;
    
}

.cart-content .empty {
    position: absolute;
    text-align: center;
    margin-block: 25%;
    margin-left: 20%;
    opacity: .7;
}

.cart-icon .items-length-btn {
    position: absolute;
    background-color: red;
    border: none;
    outline: none;
    border-radius: 50px;
    padding: .5em auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -5vh;
    margin-bottom: 30vh;
    margin-left: 3vw;
    display: block;
    position: absolute;
    background-color: red;
    border: 1px solid red;
    border: none;
    border-radius: 50px;
    margin-top: -30px;
    margin-bottom: 30vh;
    margin-left: 3vw;
    display: block;
}

.cart-icon .items-length-btn .hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
}

.cart-note {
    text-align: center;
}
.close-cart-icon {
    display: flex;
    height: 20px;
    width: 30px;
    float: right;
    margin-top: -40px;
    margin-right: 10px;
    background-color: #4B477E;
    border: 2px solid #4B477E;
    cursor: pointer;
}
.close-cart-icon i {
    color: #fff;
}

.cart-content-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4B477E;
    padding-top: 2em;
    padding-bottom: 2em;
    margin-left: 2rem;
    margin-right: 2rem;
    
}

.image-box .cart-image{
    width: 100px;
    height: 100px;
}

.cart-content {
     display: block;
     overflow-y: scroll;
}

.cart-content-details {
    display: flex;
    flex-direction: column;
    margin-left: 2rem;
    gap: 1rem;
}

.cart-incr-decr {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    padding-bottom: 2rem;
}

.cart-incr {
    background-color: #4B477E;
    border: none;
    color: #fff;
    width: 20px;
    margin-left: 10px;
    cursor: pointer;
}

.cart-decr {
    background-color: #4B477E;
    border: none;
    color: #fff;
    width: 20px;
    margin-right: 10px;
    cursor: pointer;
}


.checkout {
    display: flex;
    bottom: 0;
    margin-bottom: 1em;
    margin-left: 7.5em;
    justify-content: center;
    background-color: #4B477E;
    color: #fff;
    border: none;
    padding: 1em 2em;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.checkout.hidden {
    opacity: 0;
    transform: scale(0);
    display: none;
    visibility: hidden;
}

.checkout-title {
    margin-right: .3rem;
}

/* header */

.screen-sm-hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
}

main header {
        display: flex;
        flex-direction: column;
        position: inherit;
        width: 100%;
        /* background-image: url('shoe\ gif.gif'); */
        background-color: #9d99ca;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100vh;
        margin-top: -7em;
}
main header .name {
    width: 100%;
    padding-top: 7em;
    color: #F7F7F8;
    padding-left: 2rem;
    padding-bottom: 6em;
    font-family: "Sofia";
}
main header .name .hub {
    width: fit-content;
    font-size: 3em;
    font-weight: bold;
    color: rgba(75, 71, 126, .8);
    animation: hub 2000ms 1 ease-out;
}

@keyframes hub {
    from {
        transform: translateX(-50vw);
    }

    to {
        transform: translateX(0);
    }
}

.header-image-box {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    gap: 1em;
    margin-inline: auto;
    margin-top: -2em;
    width: 90vw;
}

.header-image {
    height: 30vh;
    width: 110px;
}

.header-image-1 {
    animation: h-i 2000ms 1  ease-in-out;
}

.header-image-2 {
    margin-top: 5em;
    animation: h-i 2000ms 1 300ms ease-in-out;
}

.header-image-3 {
    margin-top: -3em;
    animation: h-i 2000ms 1  600ms ease-in-out;
}

@keyframes h-i {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* explore */
.explore {
    color: #F7F7F8;
    background: #4B477E;
    padding: 1em;
    margin-left: 10%;
    justify-content: center;
    border-radius: 15px;
    border: none;
    font-family: "Sofia";
    animation: xplore 3000ms 1 ease;
}

@keyframes xplore {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.explore:hover {
    color: #4B477E;
    background: #F7F7F8;
}

/* site-note */

.site-notes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin-top: 3em;
    padding-bottom: 3em;
    margin-inline: auto;
    width: 90vw;
}

.site-note fieldset{
    border-radius: 10px;
    color: #4B477E;
    border: 3px solid #4B477E;
}

.site-note fieldset i {
    font-size: 4em;
    border: 3px;
}

.site-note2 {
    margin-top: 4em;
}

.site-note2:hover {
    margin-top: -1em;
}

.site-note1:hover {
    margin-top: 5em;
}

/* search */
.bar {
    width: 90%;
    margin-left: 5%;
    background: #F7F7F8;
    color: #000;
    border: none;
    padding: 1em;
    margin-top: -5em;
    opacity: 0;
    transform: scale(0);
}
.input {
    width: 0;
    height: 0;
    margin-left: -2em;

}
.bar.activated {
    position: absolute;
    margin-top: 2em;
    opacity: 1;
    transform: scale(1);
    transition: opacity .25s ease-in;
}



/* featured */


.featured h2 {
    text-align: center;
    color: #4B477E;
}

.featured h3 {
    margin-top: -0.3em;
}
    
.container {
    height: 380px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    background: gray;
    padding-top: 0.5em;
    border-radius: 5px;
}

.container a {
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    color: #fff;
}
.container h3 {
    color: #fff;
}
.container img {
    max-width: 100%;
    max-height: 512px;
    padding-top: 0.5em;
    padding-bottom: 0;
    padding: 1em;

}
.container img .casneak {
    padding-left: -1em;
}
.container a:hover {
    background: none;
    transform: translateY(-10px);
    background: #4B477E;
}

/* best buy */

.best-buy h2 {
    text-align: center;
    color: #4B477E;
}
.container-2 {
    height: 410px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    background: none;
    padding-top: 0.5em;
    border-radius: 5px;
    margin-left: 2vw;
    margin-right: 2vw;
}

.product {
    text-align: center;
    font-size: .7em;
}

.container-2 .product {
    text-transform: uppercase;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    color: #4B477E;
    height: 150px;
    width: 150px;
}
.container-2 img {
    height: 100%;
    max-width: 100%;
    max-height: 512px;
    padding-top: 1em;
    padding-bottom: 0;
    padding: 1em;
    background: gray;
}
.container-2 .product:hover {
    background: none;
    transform: translateY(-10px);
    color: #fff;
    background: #4B477E;
    padding: 1em 3em 11em 1em;
}
.product .on-hover {
    display: none;
    margin-top: -13em;
    margin-left: .6em;
    width: 130px;
    z-index: 500;
}
.product .on-hover .add-to-cart {
    color: #4B477E;
    margin-bottom: 2em;
    padding: .6em;
    border: 5px solid gray;
    border-radius: 20px;
    background: none;
    cursor: pointer;
    font-size: .6em;
}
.product .on-hover .view {
    color: #fff;
    margin-bottom: 2em;
    padding: .6em;
    border: 5px solid #fff;
    border-radius: 20px;
    background: #4B477E;
    cursor: pointer;
    font-size: .6em;
}
.product:hover .on-hover {
    display: block;
}
.product:hover .on-hover .add-to-cart:hover {
    color: #4B477E;
    margin-bottom: 2em;
    padding: .6em;
    border: 5px solid gray;
    border-radius: 20px;
    background: #fff;
}
.product:hover .on-hover .view:hover {
    color: #fff;
    margin-bottom: 2em;
    padding: .6em;
    border: 5px solid #4B477E;
    border-radius: 20px;
    background: gray;
}



.container-3 {
    height: 410px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    background: none;
    padding-top: 0.5em;
    border-radius: 5px;
    margin-left: 2vw;
    margin-right: 2vw;
}
.container-3 .product {
    text-transform: uppercase;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    color: #4B477E;
    height: 150px;
    width: 150px;
}
.container-3 img {
    height: 100%;
    max-width: 100%;
    max-height: 512px;
    padding-top: 1em;
    padding-bottom: 0;
    padding: 1em;
    background: gray;
}
.container-3 .product:hover {
    background: none;
    transform: translateY(-10px);
    color: #fff;
    background: #4B477E;
    padding: 1em 3em 9em 1em;
}

/* yitai */

.advert-1{
    position: relative;
    height: 400px;
    width: 100%;
}

.Yitai-advert {
    left: 0;
    height: 300px;
    width: 100vw;
}

.yitai-descrip {
    position: absolute;
    top: 0;
    width: 50vw;
    margin-top: 4em;
    margin-left: 45vw;
    z-index: 10;
}

.yitai-descrip-name h2 {
    font-weight: bolder;
    font-family: "Sofia";
    color: #4B477E;
}

.yitai-slash {
    margin-top: -2em;
    margin-left: 2em;
    transform: rotate(10deg);
    z-index: -10;
    width: 100vw;
}

.yitai-descrip-note {
    font-weight: lighter;
    font-size: .8em;
}

.slash-png {
    z-index: -11;
    animation: slash 2s 1 linear;
    animation-delay: 5s;
    top: 0;
}

@keyframes slash {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(360deg);
    }

    75% {
        transform: rotate(540deg);

    }

    100% {
        transform: rotate(720deg);
    }
}

/* Half Price Deals */


.half-price-deals h3{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #4B477E;
    color: #fff;
    text-align: left;
    padding-block: .1em;
    padding-left: 10px;
    padding-right: 10px;
}

.half-percent {
    font-size: .7em;
    color: #4B477E;
    background-color: #fff;
    padding-block: .5em;
    padding-inline: .2em;
    transform: rotate(-20deg);
}

.half-price-box {
    grid-template-columns: repeat(4, 1fr);
    gap: .5em;
    text-align: center;
}

.half-price-name {
    font-size: .6em;
    margin-top: 1em;
}

.half-image {
    width: 21vw;
    border-radius: 20px;
    border: 5px solid #4B477E;
}

.half-image:hover {
    transform: scale(1.05);
}

/* Vans Advert */

.vans-ads {
    margin-top: 2em;
}

.ri-emotion-fill {
    position: absolute;
    top: 0;
    font-size: 5em;
    color: yellow;
    right: 0;
    margin-left: 15em;
    transform: rotate(45deg);
    z-index: 10;
}

.advert-1:hover {
    transform: scale(1.05);
}

.advert-1:hover .ri-emotion-fill {
    transform: rotate(0deg) scale(1.5);
}

/* sponsors */

.sponsors {
    grid-template-columns: repeat(5, 1fr);
}

.sponsors-image {
    height: 100px;
    width: 10vw;
    background-color: rgb(248, 248, 248);
    padding: 1em;
    margin-top: 1em;
    border: 1px solid #3F4040;
    opacity: .7;
}

.sponsors-image:hover {
    opacity: 1;
    background-color: #4B477E;
}

.img-excep {
    border-right: 1px solid #3F4040
}


/* scroll bar styles */
::-webkit-scrollbar {
    width: .7rem
}

::-webkit-scrollbar-track {
    background-color: rgb(202, 202, 202);
}

::-webkit-scrollbar-thumb {
    background-color: rgba(75, 71, 126, .7);
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(75, 71, 126);
}


/* footer */
footer {
    display: none;
}

.footer {
    background: gray;
    color: white;
    font-family: Helvetica;
    margin-top: 1.3em;
    padding-top: 1.3em;
    text-align: left;
    width: 100%;
    margin-bottom: 40px;
}
.footer .app .logos {
    display: flex;
    flex-wrap: no-wrap;
    align-items: center;
    justify-content: space-around;
}

.footer-section {
    padding-left: 2rem;
    display: grid;
}

.footer .text-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: rgb(231, 231, 231);
}

.footer .text-list .text-links {
    width: 50rem;
}

.footer .text-list .text-links:hover {
    color: #fff;
    transform: rotateX(45deg);
}

.footer .logo {
    margin-block: 2rem;
    font-size: 3rem;
    font-family: snap itc;
}

.footer .logo .footwears {
    font-size: 1rem;
}


@media only screen and (min-width: 821px) {

.menu {
    display: block;
}
.nav-menu {
    display: flex;
}
.nav-menu ul li a {
    display: flex;
}

.fav-box {
    margin-top: -12vh;
}

.featured {
    display: grid;
    margin-left: 10%;
    margin-block: 12%;
    margin-left: 23vw;
    width: 60vw;
    size: cover;
    justify-content: center;
    left: 50%;
    right: 50%;
}

/* header */

main header {
    display: flex;
    flex-direction: row;
    position: inherit;
    width: 100%;
    /* background-image: url('shoe\ gif.gif'); */
    background-color: #9d99ca;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    margin-top: -7em;
}
main header .name {
width: 100%;
padding-top: 7em;
color: #F7F7F8;
padding-left: 2rem;
padding-bottom: 6em;
font-family: "Sofia";
}
main header .name .hub {
width: fit-content;
font-size: 3em;
font-weight: bold;
color: rgba(75, 71, 126, .8);
}

.header-image-box {
display: flex;
flex-direction: row;
align-items: center;
gap: 1em;
margin-right: 1em;
margin-top: 4em;
}

.header-image {
height: 60vh;
width: 150px;
}

.header-image-2 {
margin-top: 5em;
}

.header-image-3 {
margin-top: -3em;
}

/* explore */
.explore {
color: #F7F7F8;
background: #4B477E;
padding: 1em;
margin-left: 10%;
justify-content: center;
border-radius: 15px;
border: none;
font-family: "Sofia";
}

.explore:hover {
color: #4B477E;
background: #F7F7F8;
}

/* site-note */

.site-notes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3em;
    margin-top: 3em;
    padding-bottom: 3em;
    background-color: inherit;
}


.site-note fieldset{
    border-radius: 10px;
    color: #4B477E;
    border: 3px solid #4B477E;
}


.site-note fieldset i {
    font-size: 6em;
    border: 3px;
}

.site-note2 {
    margin-top: 4em;
}

.site-note2:hover {
    margin-top: -1em;
}

.site-note1:hover {
    margin-top: 5em;
}

header-2 .box {
    margin-top: -25%;
    padding: 3em;
    box-shadow: 2px 2px 2px #fff;
}   

.featured-box {
    position: relative;
    color: #fff;
}

.featured-box .icon-featured {
    position: absolute;
    display: flex;
    flex-direction: row;
    padding-block: 1em 0;
    top: 0;
    margin-left: 2em;
    margin-top: 2em;
    color: rgba(255, 255, 255, .8);
    background-color: rgba(75, 71, 126, .7);
    padding-inline: 1em;
    gap: 1em;
    font-size: .7em;
    width: 40%;
} 

.container {
    width: fit;
}
.container {
    height: 800px;
    width: 800px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    overflow-x: hidden;
    overflow-y: hidden;
    white-space: none;
    justify-content: center;
    align-items: center;
    background: none;
    padding-top: 0.5em;
    border-radius: 5px;
}
.container a h3 {
    color: #fff;
}
.container a:hover {
    background: none;
    transform: translateY(-10px);
    background: none;
}

.container a:hover .icon-featured {
    color: rgb(255, 255, 255);
    background-color: rgb(75, 71, 126);
}

.featured-container {
    margin-top: -15em
}
#sandal {
    margin-top: -300px;
}
#sandal img {
    
    width: 200px;
    height: 200px;
}
/* #shoe {
} */
#shoe img {
    width: 200px;
    height: 200px;
}
#crocs {
    margin-top: -300px;
}
#crocs img{
    width: 200px;
    height: 200px;
}
#casual {
    margin-left: -54px;
    margin-top: 250px;
    z-index: 500;
    margin-right: 1em;
}
#casual img {
    width: 400px;
    height: 450px;
}
/* #sneaker {
} */
#sneaker img {
    width: 200px;
    height: 200px;
}
.container a {
    display: grid;
    text-align: center;
    color: #fff;
}
.container h3 {
    color: #fff;
}
.container img {
    max-width: 100%;
    max-height: 512px;


}
.best-buy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70vw;
    size: cover;
    margin: auto;
    margin-top: -6em;
    /* margin-left: 20vw; */
}
/* .best-buy h2 {
    margin-left: -18vw;
} */
/* .container-2 {
    height: 350px;
    width: 1250px;
    justify-content: center;
} */
.container-2 .product {
    height: 300px;
    width: 250px;
}
.container-2 img {
    height: 150px;
    width: 200px;
}
/* .container-3 {
    height: 350px;
    width: 1250px;
    justify-content: center;
} */
.container-3 .product {
    height: 300px;
    width: 250px;
}
.container-3 img {
    height: 150px;
    width: 200px;
}
.container-2 .on-hover {
    margin-top: -15em;
    margin-left: 1em;
    width: 100px;
}
.container-2 button {
    width: 110px;
    padding: 0;
    font-size: .7rem;
}
.container-3 .on-hover {
    margin-top: -15em;
}
.container-3 button {
    width: 110px;
    padding: 0;
    font-size: .7rem;
}

.container-2 .product:hover {
    background: none;
    transform: translateY(-10px);
    color: #fff;
    background: #4B477E;
    padding: 1em;
}

.container-3 .product:hover {
    background: none;
    transform: translateY(-10px);
    color: #fff;
    background: #4B477E;
    padding: 1em;
}

.advert-1 {
    /* margin-left: -100vw; */
    width: 90vw;
    max-width: 160rem;
    margin: auto;
}

.half-price-deals {
    /* margin-left: 25vw; */
    width: 90vw;
    margin: auto;
    max-width: 160rem;
}

.half-image {
    height: 200px;
}

.half-price-name {
    font-size: 1em;
    color: #4B477E;
    font-weight: bold;
}

.sponsors {
    /* margin-left: -25vw; */
    width: 90vw;
    margin: auto;
    max-width: 160rem;
}

}

@media only screen and (min-width: 1024px) {

    /* aside {
        display:
    }

    .nav-menu {
        display: flex;
        color: #fff;
        z-index: 1000000;
    } */

    .screen-sm-hidden {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: scale(1);
    }

    a {
        color: #fff;
    }

    .menu-list {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        color: #fff;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

    .nav-2 {
        display: flex;
        flex-direction: row;
        align-content: center;
        margin-top: 1.5rem;
        justify-content: center;
    }

    .screen-lg-hidden {
        display: none;
    }

    .cart-icon-2 {
        position: absolute;
        right: 0;
        margin-right: 2rem;
    }
    

    .ri-search-2-line {
        position: absolute;
        right: 0;
        margin-top: -1px;
        margin-right: 4rem;
        color: #fff;
        font-size: 1.5em;
        z-index: 10000;
        cursor: pointer;
    }

    .ri-account-pin-circle-line {
        position: absolute;
        right: 0;
        margin-top: -1px;
        margin-right: 6.5rem;
        color: #fff;
        font-size: 1.5em;
        z-index: 10001;
        cursor: pointer;
    }


    .ri-shopping-cart-2-line {
        padding-left: 10px;
    }

    .cart-box {
        position: absolute;
        background-color: #3F4040;
        width: 25rem;
        top: 0;
        margin-top: 5.5em;
        height: 50vh;
        bottom: 55px;
        z-index: 10000;
        right: 1.5rem;
        color: #fff;
        opacity: 0;
        transform: scale(0);
        overflow-y: hidden;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
    }
    .cart-box.activated {
        opacity: 1;
        transform: scale(1);
    }

    .cart-icon-2 .items-length-btn {
        position: absolute;
        background-color: red;
        border: none;
        outline: none;
        padding: .5em auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        margin-top: -5vh;
        margin-bottom: 30vh;
        margin-left: 1vw;
        display: block;
    }
    
    .cart-icon-2 .items-length-btn .hidden {
        display: none;
        visibility: hidden;
        opacity: 0;
        transform: scale(0);
    }

    .bar.activated {
        position: absolute;
        top: 0;
        margin-top: 7em;
        opacity: 1;
        transform: scale(1);
    }

    .search-contain:before {
        content: "";
        border-radius: 50%;
        width: 14px;
        height: 15px;
        right: 0;
        margin-top: -.2px;
        margin-right: 4.25rem;
        border: 2px solid rgba(251, 251, 251, 0.7);
        position: absolute;
        animation: grow 1s 3;
    }

    @keyframes grow {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.5);
        }
    }
}

    .container-2,
    .container-3 {
        overflow: hidden;
    }
