/*------- Test HomePage --------*/
.top_head{
    position: fixed;
    z-index: 100;
}
.nav_bar{
    position: fixed;
    z-index: 10;
    margin-top: 30px;
}
.jersey{
    margin-top: 180px;
}
#home{
    color: #fff;
    font-weight: bold;
}
.home{
    margin-top: 100px;
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(backgroundImg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.btnShop button{
    background-color: #47DE44;
    border: none ;
    color: #ffff;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: adidas regular;
    text-align: center;
}
.btnShop button:hover{
    background-color: black;
}
.text_box{
    width: 90%;
    color: #fff;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text_box h1{
    font-size: 68pt;
    font-weight: bold;
}

/* CART  */
.cart{
    position: fixed;
    top: 0;
    right: -100%;
    width: 360px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    background-color: #fff;
    box-shadow: -2px solid 4px hsl(0 4% 15% / 10%);
    border: 1px solid red;
    transition: 1.5s;
    z-index: 1000;
}
.cart.active{
    right: 0;
    transition: .5s;
}
.cart-title{
    text-align: center;
    font-size: 14pt;
    font-weight: bold;
    margin-top: 2rem;
    font-family: adidas bold;
    color: #47DE44;
}
.cart-box{
    display: grid;
    grid-template-columns: 32% 50% 18%;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}
.cart-img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    padding: 10px;
}
.detail-box{
    display: grid;
    row-gap: .5rem;
}
.cart-product-title{
    font-size: 1rem;
    text-transform: uppercase;
}
.cart-price{
    font-weight: 500;
}
.cart-quantity{
    border: 1px solid black;
    outline-color: #47DE44;
    width: 4.5rem;
    text-align: center;
    font-size: 1rem;
}
.cart-remove{
    font-size: 24px;
    color: red;
    cursor: pointer;
}
.total{
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    border-top: 1px solid black;
}
.total-title{
    font-size: 12pt;
    font-weight: 600;
    font-family: adidas bold;
}
.total-price{
    margin-left: .5rem;
    font-size: 12pt;
    font-family: adidas bold;
}
.btn-buy{
    display: flex;
    margin: 1.5rem auto 0 auto;
    padding: 12px 20px;
    border: none;
    background-color: #47DE44;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
}
.btn-buy:hover{
    background-color: black;
}
#cart-close{
    position: absolute;
    top: 1rem;
    right: .8rem;
    font-size: 2rem;
    color: red;
    cursor: pointer;
}
.top_head ul{
    text-align: right;
}
ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
ul li{
    display: inline;
}
.top_head{
    width: 100%;
    background-color: black;
    padding: 5px;
}
li i{
    margin: 5px;
    color: #47DE44;
    font-size: 14pt;
}
li i:hover{
    color: gray;
    cursor: pointer;
    transition: 0.5s;
}
/*----- list ---*/
/* .nav_bar{
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #47DE44;
    height: 50px;
    padding: 7px 14px 16px 14px;
}
.list ul li{
    margin-left: 20px;
    font-size: 20pt;

}
.list ul li a{
    color: black;
    text-decoration: none;
    margin: 30px;
}
.logo img{
    width: 100px;
    padding: 7px 14px 16px 14px;
} */

nav{
     display: flex;
     width: 100%;
     height: 70px;
     background-color: #47DE44;
     justify-content: space-between;
     align-items: center;

}
nav img{
    width: 150px;
}
.list{
    flex: 1;
    text-align: right;
}
.list ul li{
    list-style: none;
    display: inline-block;
    padding: 14px 20px;
    position: relative;
}
.list ul li a{
    color: black;
    text-decoration: none;
    font-size: 13pt;
    font-family: adidas bold;

}
#jersey{
    color: #fff;
    font-weight: bold;
}
.list ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: red;
    display: block;
    margin: auto;
    transition: 0.5s;
    z-index: 100;


}
.list ul li:hover::after{
    width: 100%;
}

nav .fa{
    display: none;
}

@media (max-width: 768px) {
    .list ul li{
        display: block;
    }
    .list{
        position: absolute;
        background-color: red;
        height: 100vh;
        width: 200px;
        top: 0px;
        right:-200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }
    nav .fa{
        display: block;
        color: black;
        margin: 10px;
        cursor: pointer;
        font-size: 20pt;
    }
    .list ul{
        padding: 20px;
    }

}

/* --- Banner -----*/

/* .banner_box{
    width: 100%;
    height: 100px;
    position: fixed;
    margin-top: 100px;
    z-index: 10;
}
.banner_box_home,.banner_box_shoes{

        width: 100%;
        height: 100px;
        position: fixed;
        margin-top: 80px;
        z-index: 1;

} */
    .mySlides {display:none;}


    .logoTeam{
        background-color: #47DE44;
        width: 100%;
        height: 100px;
    }
    @media (max-width: 768px){
        .logoTeam{
            background-color: #47DE44;
            width: 100%;
            height: 100px;
        }
        .sub_box > img{
            width: 10px;
            height: auto;
        }
    }
    .sub_box{
        width: 50px;
        height: 50px;
        /* background-color: red; */
        margin-left:200px;
        text-align: center;
        margin-top: 15px;
    }
    .sub_box img{
        width: 50px;
        height: 70px;
    }
    img.barca{
        height: 50px;
        margin-top: 10px;
    }



/* ---- Shirt ------- */

.sub_shirt{
    width: 95%;
    height: 300px;
    border: 1px;
    margin: 50px 0 0 0;
    border-radius: 10px;
    background-color: #fff;
    text-align: center;
    margin-left: 20px;
    position: relative;
}
.sub_shirt:hover{
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
    transition: 1s;
}
.sub_shirt img{
    width: 200px;
    height: auto;
    justify-content: space-between;
    position: relative;
    float: left;
    margin-top: 20px;
}
  #cc {
    width: 100px;
}
#add
{
    width: 70px;
}
.sub_shirt > .realAway{
    height: 210px;
    width: 190px;
}
.sub_shirt > .thirt_barca{
    position: relative;
    height: 220px;
}
.information{
    position: absolute;
    left: 200px;
    text-align: left;
    padding: 20px;
    margin-top: 10px;
}
._title-shirt{
    font-weight: bold;
    font-size: 12pt;
    font-family: adidas bold;
}
.stock{
    color: red;
    font-weight: bold;

}
.type_jersey,.color{
    color: gray;
}
.price{
    font-weight: bold;
    font-size: 12pt
}
.add-cart{
    padding: 10px 20px;
    border-radius: 14px;
    border: none;
    background-color: #FF0C0C;
    font-family:  adidas bold;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 50px;
    right: 50px;
}
.qty input{
    width: 50px;
    position: relative;
}
.qty input:hover{
    border: 1px solid #47DE44;

}

._btn{
    margin-top: 10px;
    margin-bottom: 10px;
}
._btn_shop,.addToCart{
    padding: 10px;
    margin-top: 10px;
    margin-left: 90px;
    margin-right: 50px;
    width: 60%;
    position: relative;
    border-radius: 20px;
}
._btn_shop a,.addToCart a{
    color: #fff;
    text-decoration: none;
}
._btn_shop{
    background-color: gray;
}
.addToCart{
    background-color: #f90000;
}

._btn_shop:hover{
    background-color: black;
    transition: 0.5s;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.4);
}
.addToCart:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.4);
    transition: 0.5s;
}


/* ---- Footer -----*/
.footer_web{
    width: 100%;
    height: 250px;
    background-color:black;
    margin-top: 0px;
    margin-bottom: 0%;

}

i{
    color: #fff;
}
.footer_web{
    justify-content: space-between;
}
.left{
    position: absolute;
    float: left;
    margin-left: 50px;
    margin-right: 0;
    padding: 20px;
    font-size: 10pt;
    color: #fff;
}
.left i{
    font-size: 15pt;
    margin-right: 10px;
}
.contact a,.email a{
    color: #fff;
    text-decoration: none;
}
.right{
    position: relative;
    float: right;
    margin-right: 50px;
    margin-left: 0;
    padding: 20px;
    color: #fff;
}

.right img{
    margin-bottom:0px;
    width: 150px;
    margin-top: -50px;
}
.right p{
    position: relative;
    width: 500px;
    text-align: justify;
    margin-top: -25px;
}
@media (max-width: 768px){
    .footer_web{

            display: block;
            align-items: center;
            width: 100%;
            border-radius: 0;
            padding: 5px;
            height: 400px;
            background: #000;

    }

    .left{
        position: absolute;
        padding: 20px;
        font-size: 10pt;
        color: #fff;
    }
    .left i{
        font-size: 10pt;
        margin-right: 10px;
    }
    .contact a,.email a{
        color: #fff;
        text-decoration: none;
    }
    .right{
        position: absolute;
        float: right;
        text-align: center;
        padding: 10px;
        color: #fff;
    }

    .right img{
        right: 40px;
        width: 100px;
        margin-top: 15px;
        position: absolute;
    }
    .right p{

        position: relative;
        width:auto;
        text-align: justify;
        margin-top: 200px;
        right: 20px;
        left: 20px;
    }
}

/*------- font --------*/
@font-face{
    font-family: adidas bold;
    src: url(texgyreadventor-bold.otf);
}
@font-face{
    font-family: adidas regular;
    src: url(texgyreadventor-regular.otf);
}
p{
    font-family: adidas regular;
}
h1{
    font-family: adidas bold;
}

/* ---- add to cart ----- */

#add{
    color: #fff;
    font-weight: bold;
}
/* ---- login and Sign up ------- */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');


 /* !-------Log in and Sign up-------- */
#user{
    color:#fff;
}
.Login,.Sign_up{
    background-size: cover;
    backdrop-filter: blur(10px);
    background-image: url(2.jpeg);
    position: relative;
    top: 50px;
    margin-bottom: 50px;
}

.Login, .Sign_up {
    position: relative;
    margin-top: 0px;
    display: grid;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;

}
.wrapper-login{
    position: relative;
    width: 400px;
    height: 420px;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.wrapper-sign-up{
    position: relative;
    width: 400px;
    height: 560px;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
}
.form-box h2{
    font-size: 2em;
    color: #162938;
    text-align: center;
}
.input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}
.input-box label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #162938;
    font-weight: 500;
    pointer-events: none;
    transition: .5s;
}
.input-box input:focus~label,
.input-box input:valid~label {
    top: 0 !important;
    font-size: 1em !important;
    background: #fff;
}
.input-box input {
    width: 300px;
    height: 100%;
    background: #fff;
    border: 2px solid #162938;
    outline: none;
    border-radius: 20px;
    font-size: 1em;
    color: #162938;
    padding: 0 35px 0 15px;
}
.input-box .icon {
    transition: .5s;
    position: absolute;
    right: 15px;
    font-size: 1.2em;
    color: #162938;
    line-height: 57px;
}
.remember-forgot {
    font-size: 1em;
    color: #162938;
    font-weight: 500;
    margin: -15px 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.remember-forgot label input {
    accent-color: #162938;
    margin-right: 3px;
}
.remember-forgot a {
    color: #162938;
    text-decoration: none;
}
.remember-forgot a:hover {
    text-decoration: underline;
}
.btn {
    width: 100%;
    height: 45px;
    background: #162938;
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    color: #fff;
    font-weight: 500;
    transition: 0.5s;
}
.btn:hover {
    background-color: gray;
    color: #fff;
}
.login-sign_up {
    font-size: .9em;
    color: #162938;
    text-align: center;
    font-weight: 500;
    margin: 25px 0 10px;
}
.login-sign_up p a{
    color: #162938;
    text-decoration: none;
    font-weight: 600;
}
.login-sign_up p a:hover {
    text-decoration: underline;

}
@media (max-width: 768px) {
    .wrapper-sign-up {
        width: 350px;
        text-align: center;
    }
    .wrapper-login {
        width: 350px;
        text-align: center;
    }
    .input-box input {
        width: 250px;
        padding: 0 25px 0 15px;
    }
    .input-box {
        margin-bottom: 30px;
    }
    .input-box .icon {
        right: 10px;
    }
    .input-box label {
        left: 15px;
        font-size: .8em;
    }
    .remember-forgot {
        font-size: 0.8em;
    }
    .login-sign_up {
        font-size: .8em
    }
}
html,
    body {
      position: relative;
      height: 100%;
    }

    body {
      background: #eee;
      font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 14px;
      color: #000;
      margin: 0;
      padding: 0;
    }

    .swiper {
      width: 100%;
      height: 400px;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide {
      display: block;
      border: 1px solid rgb(252, 251, 251)(255, 255, 255);
      max-width: 500px;

      /* width: 200px;
      height: 200px; */
      object-fit: cover;
      position: relative;

    }
    .txt{
        position: absolute;
        left: 100px;
        font-size: 12px;
        text-align: left;
    }
    .btn-cart{
        position: absolute;
        bottom: 50px;
        right: 100px;
    }

    .j1
    {
        height: 340px;
    }

    .s1 .text_box{
        font-size: 50px;
        text-align: left;
    }

    .s1 >.ch2 img
    {
        width: 2000px;
    }
    .swiper-slide:hover{
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
        transition: 1s;
    }

    .s2>img{
        width: 45%;
        position: relative;
    }
    #_resize1,#_resize2,#_resize3{
        width: 40%;

    }

    /* ABOUT US */
    .About{
        position: relative;
        margin-top: 80px;
    }

