/* -- HEADER -- */
.head-icon{
    font-size: 2rem;
}
.head-icon-txt{
    font-size: 1.3rem;
}
.container{
    padding: 2.5rem 0 2,5rem;
}
.header_container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #064B66;
    height: fit-content;
}
.header_container a {
    color: #ffffff;
    text-decoration: none;
}
.header{
    width: 100%;
    min-height: 8.3rem;
    background: #064B66;
    color: #ffffff;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.logo{
    min-width: 15%;
    height: 5rem;
    padding: 0 1rem;
    cursor: pointer;
    display: block;
}
.logo img{
    width: auto;
    height: 100%;
}
.menu-btn{
    width: 10%;
    cursor: pointer;
}
.search{
    min-width: 35%;
    display: block;
}
.search-box{
    min-width: 70%;
    margin: 0;
    color: #353535;
    background: white;
    border-top-left-radius: .8rem;
    border-bottom-left-radius: .8rem;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
}
.search-button{
    margin: 0 0 0 -1rem;
    color: #ffffff;
    background: goldenrod;
    border-top-right-radius: .8rem;
    border-bottom-right-radius: .8rem;
    padding: 0.8rem 1.5rem 0.8rem 1.5rem;
}
.search-button:hover{
    box-shadow: 0 0 .4rem #ffffff;
    transition: .3s ease;
}
.cart{
    min-width: 10%;
    cursor: pointer;
}
.cart-icon{
    position: relative;
}
.cart_count{
    position: absolute;
    top: -.5rem;
    right: -.5rem;
    width: 1.8rem;
    height: 1.8rem;
    background: white;
    color: black;
    border-radius: 50%;
    box-shadow: 0 0 .4rem #064B66;
    text-align: center;
    font-size: 1.1rem;
    padding: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
}
.user{
    min-width:10%;
    cursor: pointer;
}
.user img{
    height: 4.5rem;
    width: 4.5rem;
    border-radius:50%;
    box-shadow: 0 0 .5rem #fff;
    transition: all .2s ease;
}
.user img:hover{
    box-shadow: 0 0 .8rem #fff;
    transition: all .2s ease;
}
.user-dropdown{
    box-shadow: 0 0 1.2rem #064B66;
    border-radius: 2rem;
    background: #064B66;
    position: absolute;
    width:24rem;
    min-height: 30rem;
    text-align: center;
    top:7rem;
    right: 2rem;
    z-index: 111;
    font-size: 1.7rem;
    padding: 0 0 1.5rem 0;
}   
.user-dropdown img{
    border-radius: 2rem;
    width:100%;
    height:24rem;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}
.user-dropdown p{
    color: white;
    font-size: 2rem;
    padding: 1rem 0 0 0;

}
.menu{
    min-height: max-content;
    max-height:100vh;
    max-width: 100vw;
    width: 100%;
    z-index: 15;
    background: #353535;
    position:fixed;
    top: 8rem;
    padding: 4rem 2rem;
    box-shadow:  0 0 .7rem #353535;
    overflow-y: auto;
}
.menu_container{
    display: flex;
    flex-wrap: wrap;
}
.nav{
    width: 100%;
    text-align: center;
}
.nav ul{
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    text-align: center;
    padding: 0;
}
.nav ul li{
    padding: 1rem;
    border-bottom: .15rem solid transparent;
}
.nav ul li a img{
    height: 3rem;
    width: 3rem;
}
.nav ul li:hover,
.menu-category ul li a span:hover{
    box-shadow: white;
    border-bottom: .15rem solid goldenrod;
    transition: .3s ease;
}
.menu-category{
    min-width: 21rem;
    margin: 0 2rem;
    max-height: fit-content;
}
.menu-category span a{
    text-decoration: none;
    color: goldenrod;
    font-size: 1.7rem;
}
.menu-category ul{
    padding: 0;
}
.menu-category ul li{
    list-style-type: none;
}
.menu-category ul li a span{
    font-weight: 100;
    padding: .5rem 0;
    border-bottom: .15rem solid transparent;
}
.menu-category ul li a img{
    height: 2.5rem;
    width: 2.5rem;
}
.menu-close-btn{
    position: fixed;
    top: 10rem;
    right: 3rem;
    color: crimson;
    background: none;
    font-size: 3rem;
    font-weight: 500;
    text-shadow: 0 0 .2rem #fff;
}
main{
    position: relative;
    top:8rem;
    width: 100%;
}
/*slider section*/
.hero_area {
    position: relative;
    min-height: 40rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 4.5rem;
    margin: 0 0 4rem 0;
    background: goldenrod;
}
.hero_area .hero_social {
    position: absolute;
    top: 45%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 4.5rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.hero_area .hero_social a {
    color: #064B66;
    margin: .5rem 0;
    text-shadow: 0 0 .2rem #fff;
    transition: all .2s ease;
}
.hero_area .hero_social a:hover {
    text-shadow: 0 0 .5rem #fff;
    transition: all .2s ease;
    transform: rotate(-10deg);
}
.hero_area .hero_social a i,
.info_section .info_form .social_box a i{
    font-family: 'FontAwesome';
    font-size: 2.5rem;
    padding: .5rem;
}
.hero_area .container-fluid {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.slider_section {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            margin: 4.5rem 0 0 0;
    border-radius: 20rem 0 0 20rem;
    background: #064B66;
}
.slider_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.slider_section #customCarousel1{
    display: flex;
}
.slider_section #myCarousel {
    width: 100%;
    position: unset;
}
.slider_section .detail-box {
    padding: 0 5rem;
    color: #ffffff;
}
.slider_section .detail-box h1 {
    font-weight: bold;
    margin-bottom: 2rem;
}
.slider_section .detail-box .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5rem;
    margin-top: 1.5rem;
}
.slider_section .detail-box .btn-box a {
    margin: .5rem;
    text-align: center;
    width: 17rem;
}
.slider_section .detail-box .btn-box .btn1 {
    display: inline-block;
    padding: .5rem .5rem;
    background-color: goldenrod;
    color: #ffffff;
    border-radius: .5rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: .1rem solid goldenrod;
    text-decoration: none;
}
.slider_section .detail-box .btn-box .btn1:hover {
    color: #ffffff;
    -webkit-transform: translateY(-0.3rem);
            transform: translateY(-0.3rem);
}
.slider_section .img-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}
.slider_section .img-box img {
    width: 100%;
    
}
.slider_section .carousel-indicators {
    position: unset;
    margin: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            flex-direction: column;
            margin-right: 2.5rem;
}
.slider_section .carousel-indicators li {
    background-color: #ffffff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    opacity: 1;
    margin: 0 .4rem;
}
.slider_section .carousel-indicators li.active {
    width: 23px;
    height: 23px;
    background-color: goldenrod;
}
/* end of slider */

.box{
    min-height: 20rem;
    margin: 0 0 5rem 0;
}
.box-header{
    font-size: 2.4rem;
    font-weight: bold;
    color: #064B66;
    padding: 0 0 1rem 1rem;
}
.box-header img{
    width:3.5rem;
    height: 3.5rem;
    background: goldenrod;
    border-radius: 50%;
}
.box-header span{
    padding: 0 1.5rem;
    background: goldenrod;
    border-radius: 50%;
    margin: 0 1rem 0 0;
    vertical-align: middle;
}
.box-header i{
    color: #064B66;
}
.box-body{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.product-container a{
    color: #ffffff;
}
.product-container{
    width: 20rem;
    justify-content: center;
    text-align: center;
    background: #064B66;
    box-shadow: 0 0 .2rem #121212;
    border-radius: 1rem;
    padding: 1rem;
    margin: 1rem;
    position: relative;
    overflow: hidden;
}
.product-container:hover{
    box-shadow: 0 0 .7rem #121212;
    transition: .2s ease;
}
.product-container a{
    text-decoration: none;
}
.product-img{
    width: 100%;
    height: 18rem;
    background:#fff;
    border-radius: 1rem;
}
.product-img img{
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}
.product-detail-img img{
    width: 100%;
    border-radius: 1.5rem;
}
.product-description{
    width: 100%;
    min-height: 4.8rem;
    padding: .3rem 0 .3rem 0;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.6rem;
}
.product-ratings{
    display: inline-flex;
    justify-content: center;
    font-size: 1.6rem;
}
.product-ratings i{
    margin: 0 .25rem;
}
.product-prices{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    text-align: left;
    padding: .5rem 0 .5rem 0;
}
.initial-price{
    text-decoration: line-through;
    width: 30%;
    font-size: 1.2rem;
}
.discount-price{
    width: 70%;
    text-align: right;
    color: goldenrod;
    font-size: 2rem;
    font-weight: bold;
}
.product-discount{
    background: goldenrod/*rgb(201 152 30/.85)*/;
    box-shadow: 0 0 0.7rem #353535;
    color: #064B66;
    position: absolute;
    min-width: 6.5rem;
    height: 5.5rem;
    line-height: 5rem;
    top: 0;
    right: 0;
    text-align: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: -.5rem -.5rem 0 0;
    border-radius: 0 0 0 75%;
}
.product-container-details{
    display: flex;
}
.product-container-details table tr td{
    padding: 1rem;
}
.product-detail-img{
    width: 35%;
    margin: 2rem;
}
.box-detail-img{
    width: 35%;
    margin: 2rem;
    display: flex;
    align-items: center;
}
.product-images{
    display: flex;
}
.product-image{
    width: 7rem;
    height: 7rem;
    margin: .5rem;
    padding: .2rem;
    border-radius: .5rem;
    box-shadow: 0 0 .2rem #064B66;
    cursor: pointer;
}
.product-image:hover{
    box-shadow: 0 0 .5rem #064B66;
    transition: .2s ease;
}
.product-detail-info{
    width: 65%;
    margin: 2rem;
}
.product-detail-add-to-cart-btn{
    padding: .8rem 1.5rem;
    border: .1rem solid #064B66;
    border-radius: .8rem;
    background: #064B66;
    color: #ffffff;
    width: 47%;
    margin: .5rem;
    font-weight: bold;
}
.product-detail-add-to-cart-btn:hover{
    background: transparent;
    color: #064B66;
    transition: .25s ease;
}
.product-detail-buy-now{
    padding: .8rem 1.5rem;
    border: .1rem solid goldenrod;
    border-radius: .8rem;
    background: goldenrod;
    color: white;
    width: 47%;
    font-weight: bold;
}
.product-detail-buy-now:hover{
    background: white;
    color: goldenrod;
    transition: .25s ease;
}
#productForm{
    display: inline;
}
.brand-container{
    width: 10rem;
    height: 4rem;
    border-radius: .4rem;
    box-shadow: 0 0 .15rem #121212;
    margin: .5rem;
    position: relative;
}
.brand-container:hover,
.brand-container:hover .brand-img img{
    cursor: pointer;
    transition: all .3s ease;
    filter: grayscale(0);
}
.brand-img img{
    width: 10rem;
    height: 4rem;
    border-radius: .4rem;
    transition: all .3s ease;
    filter: grayscale(1);
}
.table-responsive{
    width: 100%;
    overflow-x: auto;
    margin: 0 0 2rem 0;
}
.table-responsive h2,
.table-responsive th,
.table-responsive td,
.table-responsive tr{
    color: black;
    padding: 0 0 0 2rem;
}
.table-header{
    margin: 1rem 0 3rem 0;
}
.table-responsive td button{
    margin: .5rem;
}
.table-responsive td{
    vertical-align: middle;
}
.table-responsive td img{
    border-radius: .5rem;
    height: 6rem ;
    width: 6rem;
}
/* Forms modal*/
.form-modal{ 
    background: transparent;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.form{
    background: #064B66;
    box-shadow: 0 0 .3rem #121212;
    border-radius: 1rem;
    padding: 2.5rem;
    min-width: 38rem;
    height: fit-content;
    z-index: 101;
    position: relative;
    margin: 10rem 1rem;
}
.form:hover,
.form input:focus{
    box-shadow: 0 0 .7rem #121212;
}
.form a:hover{
    color: #ffffff;
}
.form-header{
    margin: 0 0 2rem 0;
}
.form-header img{
   height: 3.5rem;
   width: auto;
}
.form_name{
    color: #ffffff;
    font-size: 2.5rem;
}
.form-body p{
    color: #ffffff;
}
.form-input{
    width: 100%;
    height: 4rem;
    position: relative;
    margin: 1.5rem 0;
}
.form-input input{
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    border: none;
    outline: none;
    padding: 1rem 1rem 1rem 5rem;
}
.form-input i{
    position: absolute;
    left: 1.5rem;
    top: .75rem;
    font-size: 2.5rem;
    color: #5a5a5a;
}
.form-input .eye{
    position: absolute;
    left: unset;
    right: 1rem;
    top: 1.25rem;
    font-size: 1.8rem;
    color: #5a5a5a;
    background: #fff;
    width: 3rem;
}
.pass-rules{
    font-size: 1.3rem;
    text-align: left;
    color: #ffffff;
}
.forgot-pass{
    float: right;
    text-decoration: none;
    color: goldenrod;
}
.forgot-pass i{
    margin: 0 .5rem ;
}
.btn-signin{
    width: 100%;
    background: goldenrod;
    border: .1rem solid goldenrod;
    color: #064B66;
    font-size: 2rem;
    outline: none;
    border-radius: .5rem;
    padding: .7rem 0;
    margin: 2rem 0 0 0;
}
.btn-signin:hover{
    background: transparent;
    color: goldenrod;
    transition: .25s ease;
}
.signup{
    float: left;
    text-decoration: none;
    color: goldenrod;
}
.home{
    text-decoration: none;
    color: white;
}
.checkout{
    background: #064B66;
    padding: .6rem 2rem;
    border-radius: .8rem;
    border: .2rem solid #064B66;
    color: white;
}
.checkout:hover{
    background: transparent;
    color: #064B66;
}
/* Billing and payment */
.billing_form{
    width: 100%;
}
.billing_form .tuple{
    width: 100%;
    display: flex;
    margin: 0 0 1.5rem 0;
}
.tuple{
    width: 100%;
    margin: 0 0 1rem 0;
}
.tuple .cell:nth-child(1){
    margin: 0 1rem 0 0;
}
.tuple .cell:nth-child(2){
    margin: 0 0 0 1rem;
}
.tuple .cell{
    width: 50%;
}
.tuple input,
.tuple select,
.tuple textarea,
.billing_form input{
    width: 100%;
    border: .1rem solid #5a5a5a;
    outline: none;
    border-radius: .4rem;
    padding: .5rem 1rem;
}
.tuple textarea{
    max-width: 100%;
    height: 11rem;
    overflow-y: auto;
}
.tuple input:focus{
    border: .1rem solid goldenrod;
}
.billing_form .billing-order{
    box-shadow: 0 0 .4rem slategrey;
    padding:2rem;
    border-radius:.7rem;
}
.billing_form .billing-order table{
    width: 100%;
}
.coupon{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}
.coupon input{
    max-width: 65%;
    margin: 1rem 0;
}
.coupon button{
    max-width: 35%;
}
.verifybtn{
    background: goldenrod;
    padding: .5rem 1rem;
    border-radius: 4rem;
    cursor: pointer;
}
.stars{
    font-size: 2rem;
    display: flex;
    flex-wrap: nowrap;
}
.star{
    padding: 0 .2rem;
    color: #353535;
    cursor: pointer;
}
.rate{
    color: goldenrod;
}
/**  save section **/
.banner {
    margin: 0rem 0 4rem 0;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    max-height: 20rem;
    min-height: 20rem;
}
.banner_txt_box {
	background: #064B66;
	width: 40%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 3.5rem ;
    position: relative;
    border-radius: 1.5rem;
}

.banner_txt_box h3 {
	font-size: 4rem;
    line-height: 5rem;
	color: #fff;
	font-weight: 500;
}

.banner_txt_box a {
    max-width: 14rem;
    width: 100%;
    padding: 1.2rem 0;
    font-size: 1.7rem;
    line-height: 1.7rem;
    font-weight: 500;
    background: goldenrod;
    color: white;
    text-align: center;
    text-decoration: none;
    margin-top: 3rem;
    border-radius: 1rem;
    transition: all .2s ease-in;
    display: inline-block;
}

.banner_txt_box a:hover {
    margin-top: 2.5rem;
    transition: all .2s ease-in;
}
.banner_img_box{
    width: 33%;
    overflow-x: hidden;
    display: flex;
}
.banner_img_box img{
    height: 65%;
    padding: 1.5rem;
}
/* Why Us */
.why_us_section .heading_container {
    margin-bottom: 2rem;
  }
  
  .why_us_section .box {
    margin-top: 2.5rem;
    text-align: center;
    -webkit-box-shadow: 0 0 .5rem 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 .5rem 0 rgba(0, 0, 0, 0.15);
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
  }
  .why_us_section .box:hover{
    -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
  }
  .why_us_section .box .img-box {
    height: 4.5rem;
  }
  
  .why_us_section .box .img-box img {
    height: 100%;
    -webkit-filter: brightness(0);
            filter: brightness(0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  .why_us_section .box .detail-box {
    margin-top: 1.5rem;
  }
  
  .why_us_section .box .detail-box h5 {
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .why_us_section .box .detail-box a {
    color: #3a4468;
    font-weight: 600;
  }
  
  .why_us_section .box .detail-box a:hover {
    color: #f3c93e;
  }
  
  .why_us_section .box:hover .img-box img {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
/* footer */  
footer{
    background: #064B66;
    box-shadow: 0 0 .4rem #353535;
    width: 100%;
    min-height: 20rem;
    z-index: 5;
    padding:2rem 0;
}
.info_section {
    color: #ffffff;
    padding: 0px 0 4.5rem 0;
}
.info_section h5 {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
}
.info_section .info_links ul {
    padding: 0;
}

.info_section .info_links ul li {
    list-style-type: none;
}
.info_section .info_links ul li a {
    display: inline-block;
    color: #ffffff;
    margin-bottom: .5rem;
}
.info_section .info_form form input {
    outline: none;
    width: 100%;
    padding: .7rem 1rem;
}
.info_section .info_form form button {
    padding: .8rem 3.5rem;
    outline: none;
    border: none;
    color: #ffffff;
    background: goldenrod;
    margin-top: 1.5rem;
    text-transform: uppercase;
}
.info_section .info_form .social_box {
    margin-top: 3rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.info_section .info_form .social_box a {
    margin-right: 2.5rem;
    color: #ffffff;
    font-size: 2.4rem ;
}
/* feedback */
.feedback{
    max-width: 95%;
    width: 95%;
    margin: 1rem 1.5rem;
    padding: 1rem;
    border: 0.1rem solid #353535;
    outline: none;
    min-height: 7.6rem;
}
/* vendor */
.vendor_terms_btn{
    color: #f3c93e;
    text-decoration: underline;
    cursor: pointer;
}
.terms_btn{
    cursor: pointer;
}
/* Contact Us */
.contact-us-form{
    margin: 1rem 2rem;
}
.social{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    vertical-align: middle;
    margin: 0 0 4rem 0;
    width: 100%;
  }
  .social .handle{
    width: 20%;
    margin: .5rem;
    padding: .5rem;
    text-align: center;
  }
  .social .handle a{
    text-decoration: none;
  }
  .social .handle a img{
    width: 100%;
    cursor: pointer;
    transition: all .2s ease;
  }
.social .handle a img:hover{
    transform: rotate(-5deg);
    transition: all .2s ease;
    
  }
/* footer section*/
.footer_section {
    position: relative;
    text-align: center;
  }
  
  .footer_section .copyright,
  .footer_section .developed{
    color: #ffffff;
    padding: 2rem 0;
    margin: 0;
  }
  .footer_section .copyright{
      padding: 1rem 0;
      min-width: 60%;
    text-align: left;
  }
  .footer_section .developed{
      padding: 1rem 0;
      min-width: 40%;
      text-align: right;
  }
  .footer_section .copyright a,
  .footer_section .developed a {
    color: goldenrod;
  }
  