*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
ul{
    list-style: none;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
.container{
    max-width: 1200px;
    margin: auto;
}
header{
    background-color: #1C2A40;
    text-align: center;
    height: 122px;
}
/*-----------------------------------------------------*/
nav{
    background-color: black;
}
nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul li, a{
    color: white;
    font-size: 15px;
    font-weight: bold;
}
nav ul li:nth-child(2) a{
    color: #4382e7;
}
nav ul li:nth-child(2) i{
    color: #4382e7;
    font-size: 15px;
    margin-left: 5px;
}
nav ul li:nth-child(3){
    position: relative;
}
nav ul li:nth-child(3) input{
    height: 25px;
    width: 200px;
    border-radius: 5px;
    border: none;
    padding-left: 5px;
    outline: none;
}
nav ul li:nth-child(3) i{
    position: absolute;
    font-size: 15px;
    right: 10px;
    color: #333;
    line-height: 26px;
    cursor: pointer;
}
nav ul li:nth-child(4) button{
    height: 30px;
    padding: 0 12px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    border: 1px solid rgb(123, 118, 118);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
}
nav ul li:nth-child(4) button i{
    margin-right: 5px;
}
nav ul li:nth-child(4) button:hover{
    background-color: rgb(113, 107, 107);
}
nav ul li:nth-child(5) button{
    height: 30px;
    padding: 0 12px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    border: 1px solid rgb(123, 118, 118);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
}
nav ul li:nth-child(5) button i{
    margin-right: 5px;
}
nav ul li:nth-child(5) button:hover{
    background-color: rgb(113, 107, 107);
}
nav ul li:nth-child(6) a:hover{
    color: #4382e7;
}
nav ul li:nth-child(7) a:hover{
    color: #4382e7;
}
nav ul li:nth-child(8) a:hover{
    color: #4382e7;
}
nav ul li:nth-child(9) a:hover{
    color: #4382e7;
}
nav ul li:nth-child(10) a:hover{
    color: #4382e7;
}
/*-----------------------------------------------------*/
.menu{
    background-color: #1C2A40;
}
.menu ul{
    display: flex;
    justify-content: space-between;
}
.menu-container > ul > li {
    padding: 12px 6px;
    transition: all 0.3s ease;
}
.menu ul li a{
    color: rgb(0, 0, 0);
    font-size: 15px;
}
.menu ul li:hover{
    background-color: rgb(184, 239, 239);
}
.menu ul li a:nth-child(1) {
    color: #4382e7;
}
/*-----------------------------------------------------*/
.adress-form{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    top: 50px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    display: none;
    z-index: 999;
}
.adress-form-content{
    width: 450px;
    height: 450px;
    background-color: #fff;
    border-radius: 5px;
}
.adress-form-content form{
    padding: 0 40px;
}
.adress-form-content h2{
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.adress-form-content h2 span{
    display: block;
    position: absolute;
    height: 30px;
    padding: 0 6px;
    border: 1px solid #ddd;
    right: 12px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    line-height: 30px;
    color: #333;
    border-radius: 5px;
}
.adress-form-content form p{
    font-size: 15px;
}
.adress-form-content form input,select{
    height: 40px;
    display: block;
    width: 100%;
    margin-top: 20px;
    border: 1px solid #ddd;
    padding: 6px;
    border-radius: 5px;
}
.adress-form-content form button{
    margin-top: 20px;
    height: 40px;
    width: 80%;
    cursor: pointer;
    background-color: #f97e0e;
    outline: none;
    border: none;
    color: #fff;
}
/*-----------------------------------------------------*/
.menu-container ul li{
    position: relative;
}
.menu-nike{
    position: absolute;
    background-color: #ddd;
    width: 300px;
    height: auto;
    left: 0;
    top: 100%;
    padding: 12px;
    display: none;
    z-index: 10;
}
.menu-nike ul{
    display: flex;
    flex-direction: column;
}
.menu-nike ul li{
    padding: 6px 0;
}
.menu-nike ul li:hover a{
    color: #00ff44;
}
.menu-nike ul li:hover{
    background-color: none;
}
.menu-container ul li:hover .menu-nike{
    display: block;
}
/*-----------------------------------------------------*/
.menu-adidas{
    position: absolute;
    background-color: #ddd;
    width: 300px;
    height: auto;
    left: 0;
    top: 100%;
    padding: 12px;
    display: none;
    z-index: 10;
}
.menu-adidas ul{
    display: flex;
    flex-direction: column;
}
.menu-adidas ul li{
    padding: 6px 0;
}
.menu-adidas ul li:hover a{
    color: #00ff44;
}
.menu-adidas ul li:hover{
    background-color: none;
}
.menu-container ul li:hover .menu-adidas{
    display: block;
}
/*-----------------------------------------------------*/
.slider{
    padding: 20px 0;
    height: 350px;
}
.slider-content{
    display: flex;
    justify-content: space-between;
}
.slider-content-left{
    width: 65%
}
.slider-content-left-top{
    width: 100%;
    height: 500px;
    position: relative;
}
.slider-content-left-top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-content-left-bottom{
    display: flex;
    justify-content: space-between;
    border: 2px solid #ddd;
    border-top: none;
    height: 120px;
}
.slider-content-left-bottom li{
    width: 20%;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    padding: 2px 0;
    height: 100%;
    line-height: 38px;
    position: relative;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
    border-radius: 5px;
}
.slider-content-left-bottom li::before{
    display: block;
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #ddd;
    right: 0;
}
.slider-content-left-bottom li.active{
    border-top: 4px solid #4382e7;
    font-weight: bold;
}
.slider-content-right{
    width: 35%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    justify-content: space-around;
}
.slider-content-right li{
    width: 50%;
    height: 25%;
    text-align: center;
    margin-bottom: 3px;
}
.slider-content-right li img{
    height: 190px;
    width: 190px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.slider-content-right li:hover img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.slider-content-left-top-btn{
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.slider-content-left-top-btn i{
    color: #333;
    font-size: 32px;
    height: 50px;
    width: 25px;
    background-color: rgb(253, 242, 242);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    border-radius: 5px;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
/*-----------------------------------------------------*/
.slider-content-left-top img{
    position: absolute;
}
.slider-content-left-top a:nth-child(2) img{
    transform: translateX(100%);
}
.slider-content-left-top a:nth-child(3) img{
    transform: translateX(200%);
}
.slider-content-left-top a:nth-child(4) img{
    transform: translateX(300%);
}
.slider-content-left-top a:nth-child(5) img{
    transform: translateX(400%);
}
.slider-content-left-top-container{
    position: relative;
    overflow: hidden;
}
.slider-content-left-top-container:hover i{
    opacity: 1;
}
.slider-content-left-top{
    transition: all 0.3s ease;
}
/*-----------------------------------------------------*/
.baner-one{
    margin-top: 300px;
}
/*-----------------------------------------------------*/
.slider-product-one-content{
    background-color: #1C2A40;
    padding: 12px;
}
.slider-product-one-content-title h2{
    font-style: italic;
    color: #4382e7;
    margin-top: 10px;
    margin-bottom: 20px;
}
.slider-product-one-content-items{
    display: flex;
    justify-content: space-evenly;
}
.slider-product-one-content-item:hover>img{
    transform: translateY(-20px);
}
.slider-product-one-content-item{
    width: 20%;
    background-color: #fff;
    padding: 50px 12px 50px;
    border-radius: 5px;
    cursor: pointer;
}
.slider-product-one-content-item>image{
    width: 100%;
    transition: all 0.3s ease;
}
.slider-product-one-content-item-text{
    padding-top: 20px;
}
.slider-product-one-content-item-text li{
    margin-bottom: 6px;
}
.slider-product-one-content-item-text li:first-child{
    height: 30px;
    width: 70%;
    background-color: #201386;
    display: inline-block;
    margin-bottom: 20px;
    align-items: center;
    line-height: 30px;
    border-radius: 40px;
}
.slider-product-one-content-item-text li:first-child p{
    color: #fff;
    font-size: 13px;
}
.slider-product-one-content-item-text li:first-child img{
    width: 30px;
    float: left;
    margin-right: 6px;
}
.slider-product-one-content-item-text li:nth-child(2):hover{
    color: #4382e7;
}
.slider-product-one-content-item-text li:nth-child(4){
    text-decoration: line-through;
    color: #333;
}
.slider-product-one-content-item-text li:nth-child(5){
    font-weight: bold;
}
.slider-product-one-content-item-text li:last-child i{
    color: #fb6e2e;
}
/*-----------------------------------------------------*/
.slider-product-one-content-container{
    position: relative;
    overflow: hidden;
}
.slider-product-one-content-btn{
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.slider-product-one-content-btn i{
    color: #333;
    font-size: 32px;
    height: 50px;
    width: 25px;
    background-color: rgb(253, 242, 242);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.slider-product-one-content-items-content{
    position: relative;
    height: 590px;
    transition: all 0.3s ease;
}
.slider-product-one-content-items{
    position: absolute;
}
.slider-product-one-content-items:nth-child(2)
{
    transform: translateX(100%);
}
/*-----------------------------------------------------*/
footer{
      display: block;
      background-image: linear-gradient(rgb(22, 22, 22),rgb(10, 145, 223));
      max-width: 100%;
      clear: both;
      padding-bottom: 20px;
      padding-top: 20px;
}
.row-footer{
      color: white;
      text-align: center;
      margin: auto;
}
.row-footer ul li{
    padding: 4px 0px;
}
.row-footer1{
    color: white;
    text-align: left;
}
.copy-right{
    text-align: center;
    margin: auto;
    color: black;
    font-weight: bold;
}
/*-----------------------------------------------------*/
#wrapper{
    max-width: 1200px;  
    margin: auto;
}
.headline{
    text-align: center; 
    margin: 20px 0px;
}
h3{
    font-size: 18px; 
    color: #111; 
    padding: 10px 20px; 
    text-transform: uppercase; 
    border: 1px solid #bebebe; 
    display: inline-block; 
    color: #555; 
    font-weight: bold;
}
ul.products{
    list-style: none; 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between;
}
ul.products li{
    flex-basis: 25%; 
    padding-left: 10px; 
    padding-right: 10px; 
    box-sizing: border-box; 
    margin-bottom: 30px;
}
ul.products li img{
    max-width: 100%; 
    height: auto; 
    display: block;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
ul.products li:hover img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
ul.products li .product-top{
    position: relative; 
    overflow: hidden;
}
ul.products li .product-top .product-thumb{
    display: block;
}
ul.products li:hover .product-top .product-thumb img{
    filter: opacity(80%);
}
ul.products li .product-top .product-thumb img{
    display: block;
}
ul.products li .product-top a.detail{
    text-transform: uppercase; 
    text-decoration: none; 
    text-align: center; 
    display: block; 
    background-color: #446084; 
    color: #fff; 
    padding: 10px 0px; 
    position: absolute; 
    bottom: -38px; 
    width: 100%;
    transition: all 0.2s ease;
    opacity: 0.85;
}
ul.products li:hover a.detail{
    bottom: 0px;
}
ul.products li .product-info{
    padding: 10px 0px;
}
ul.products li .product-info a{
    display: block;
    text-decoration: none;
}
ul.products li .product-info a.product-name{
    color: #334862;
    padding: 3px 0px;
    font-weight: bold;
}
ul.products li .product-info a.product-price{
    color: #111;
    padding: 3px 0px;
    font-weight: 500;
}
ul.products li .product-item button{
    margin-top: 5px;
    width: 280px;
    height: 30px;
    padding: 0 20px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;    
    font-size: 14px;
    background-color: #bebebe;
    
}
ul.products li .product-item .bt1:hover{
    background-color: #5597F0;
    font-weight: bold;
}
ul.products li .product-item .bt2:hover{
    background-color: #FB6E2E;
    font-weight: bold;
}
/*-----------------------------------------------------*/
.cart{
    width: 800px;
    margin: auto;
    text-align: center;
    padding-top: 30px;
}
.cart h2{
    margin-bottom: 20px;
}
.cart table{
    width: 100%;
}
.cart table thead tr th:first-child{
    text-align: left;
}
.cart table tr td{
    border-bottom: 1px solid #ddd;
    padding: 12px 0px;
}
.cart table thead tr th:last-child{
    text-align: right;
}
.cart table tbody tr td:last-child{
    text-align: right;
}
.cart table tbody tr td:last-child:hover{
    color: blue;
    font-weight: bold;
}
/*-----------------------------------------------------*/
.related-products{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.1em;
    border-bottom: 1px dotted gray;
    font-weight: bold;
}
.product-detail-info{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1em;
    padding: 10px;
    margin-left: 20px;
    list-style: none;
}
.product-detail-header{
    font-size: 1.4em;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: 1px dotted gray;
}
.product-brief{
    border-top: 5px solid lightgray;
    margin-top: 7px;
}
/*-----------------------------------------------------*/
.bill{
    width: 500px;
    margin: auto;
    font-size: 16px; 
    text-align: left;   
}
.bill p{
    padding: 10px 0px;
    font-weight: bold;
}
.bill input{
    padding: 10px 20px;
    border-radius: 3px;
    width: 500px;
}
.bill textarea{
    padding: 10px 20px;
    border-radius: 3px;
    width: 500px;
}
/*-----------------------------------------------------*/
.col a img{
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.col a:hover img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}