
* {
    margin: 0;
    padding: 0;
    box-sizing:border-box ;
    transition: all 0.2s linear;

}

/* General CSS */

body{
  /* height: 140vh; */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-size: cover;
  word-spacing: 3px;
  background-color:rgb(230, 230, 230) ;
  height: fit-content;
  

}

/* -----main colors----- */


a{
    text-decoration: none;
    display: inline-block;
}

li{
    list-style: none;
    display: inline-block;
}

.container{
    width: 86%;
    margin: auto;
}





/* --- TOP BAR --- */

.top-bar{
    background: #ffffff;
    height: 35px;
}

.top-bar-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap;
    height: 33px;
}

.top-bar a{
    position: relative;
    color: #0b2545;
    font-size: 14px;
    padding: 0 7px;
}

.top-bar a::before,
.top-bar a::after{
    content: "";
    background: #1b75bb;
    position: absolute;
    width: 2px;
    height: 0;
    transition: 1s;
}

.top-bar a::before{
    left: 0;
    bottom: 0;
}

.top-bar a::after{
    right: 0;
    top: 0;
}

.top-bar a:hover::before,
.top-bar a:hover::after{
    height: 100%;
}

.i-1:hover i{
    color: #1b75bb;
    transform: rotateY(180deg);
}





/* --- NAVBAR --- */

.navbar{
    background: white;
    height: 80px;
}

.nav-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    flex-flow: wrap;
}


.logo-box{
    display: flex;
    align-items: center;
}

.logo-box img{
    width: 60px;
    height: 60px;
}

.logo-box h2{
    margin-left: 5px;
    color: #0b2545;
}






/* ===== MENU ===== */

.menu li{
    /* margin-left: 7px; */
    position: relative;
}

.menu a{
    color: #0b2545;
    font-weight: 600;
    padding: 10px;
    position: relative;
}

.menu a:hover{
    color:  #1b75bb;
}




.menu a::before,
.menu a::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-color: #1b75bb;
    border-style: solid;
    visibility: hidden;
    opacity: 0;
}

.menu a::after{
    border-width: 2px 0;
    transition: 0.6s;
    transform: scale(0,1);
    transform-origin: left;
    height: 95%;    
    width: 97%;

}

.menu a::before{
    border-width: 0 2px;
    transition: 0.3s;
    transform: scale(1,0);
    transform-origin: bottom;
    width: 94%;
    height: 100%;
}


.menu > li > a:hover::after,
.menu > li > a:hover::before{
    visibility: visible;
    opacity: 1;
    transform: scale(1,1);
}


/* --- DROPDOWN --- */

.dropdown{
    position: relative;
    z-index: 10;
}

.dropdown .angle{
    padding-left: 5px;
    font-size: 14px;
}

.dropdown .dropdown-box{
    width: 230px;
    padding: 15px;

    display: flex;
    background: #fff;
    justify-content: space-between;
    position: absolute;
    top: 50px;
    left: -100%;
    border-radius: 10px;
    box-shadow: 1px 1px 2px #00000070, -1px -1px 2px #00000070;
    transition: 1s;
    visibility: hidden;
    opacity: 0;
    transform: scale(0,0);
    z-index: 5;
}

.dropdown:hover .dropdown-box{
    visibility: visible;
    opacity: 1;
    transform: scale(1,1);
}

.dropdown-box li{
    display: block;
    margin: 5px 0;
}

.dropdown-box .first-li{
    width: fit-content;
    height: 30px;
    margin-bottom: 12px;
    font-weight: 300;
    border-bottom: 1px dotted #0b2545;
    color: #0b2545;
}

.dropdown-box li a{
    padding: 2px 0;
}

.dropdown-box li .link-drop:hover{
    transform: scale(1.1,1.1);
}





/* --- ICONS --- */

.nav-icons a{
    color: #0b2545;
    margin-left: 15px;
    font-size: 20px;
}

.nav-icons a:hover{
    color: #1b75bb;
}






/* Cart */
.cart{
    position: relative;
}

.cart::after{
    content: "2";
    font-size: 16px;
    width: 20px;
    height: 20px;
    background: #1b75bb;
    color: white;

    border-radius: 50%;
    text-align: center;
    line-height: 20px;

    position: absolute;
    left: 3px;
    top: -18px;

    transition: 0.5s;
}

.cart:hover::after{
    top: -22px;
}





/* --- SALE BAR --- */

.sale-bar{
    background: #0b2545;
    height: 40px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.sale-bar p{
    color: white;
}

.sale-bar a{
    color: #b8b8b8;
    border-bottom: 2px solid #b8b8b8;
}

.sale-bar a:hover{
    letter-spacing: 2px;
}






/* --- hero area --- */

.hero-background{
    background: url(../images/hero.svg);
    position: relative;
    background-size: cover;
    width: 100%;
    height: 85vh;
}

.hero-background .text-center{
    width: 500px;
    top: 32%;
    left: 8%;
    text-align: center;
    position: absolute;
}


.hero-background span{
    font-size: 55px;
    color: #1b75bb; 
    font-family: 'Pacifico', cursive;
}

.hero-background h1{
    color: #0b2545;
    padding: 0 10px;
    font-size: 44px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;
}

.hero-background p{
    width: 450px;
    padding: 0 20px;
    font-size: 17px;
    color: #444444;
    margin: 15px auto 30px;
    line-height: 1.5;

}


.hero-background a{
    background: #0b2545;
    color: #fff;
    font-size: 20px;
    padding: 15px 30px;
    transition: 0.6s;
    text-transform: uppercase;
    
}

.hero-background a:hover{
    color: #0b2545;
    background: #fff;
    border: 1.3px solid #0b2545;
}







/*  watch categories section */

.watch-types{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}

.watch-section {
    background-color: #ffffff;
}

.watch-types div img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.watch-types > div{
    position: relative;
    width: 400px;
    height: 400px;
    overflow: hidden;
    margin: 40px 0;
}

.watch-types > div::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-image: linear-gradient(to top, #000000, #00000005);
    z-index: 1;
}

.watch-types div img{
    width: 100%;
    transition: 1.5s;
    height: 100%;
}



.watch-types div:hover img{
    transform: scale(1.1,1.1);
}

.watch-types div .watch-info{
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    z-index: 10;
    transform: translateY(50px);
    transition: 1.2s;
    width: 100%;
    height: 28%;
}

.watch-types div:hover .watch-info{
    transform: translateY(0px);
}

.watch-types div .watch-info a{
    color: #b8b8b8;
    font-weight: bold;
    font-size: 18px;
    border-bottom: 2.5px solid #b8b8b8;
    padding-bottom: 3px;
}

.watch-types div .watch-info h2{
    color: #fffffffe;
    margin: 14px 0 18px;
}


.watch-types div .watch-info a:hover{
    letter-spacing: 1.2px;
}











/* --- Trending section --- */

.trending-area{
    margin-top: 70px;
    position: relative;
}

.trending-area .trending{
    min-height: 50px;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #0b254570;
    display: flex;
}

.trending-area .trending h2{
    color: #0b2545;
    font-weight: 500;
    font-size: 35px;
}

.trending-area .trending a{
    color: #0b2545;
    font-size: 20px;
    height: 60px;
    margin-left: 25px;
}

.trending-area .trending .link-select{
    color: #1b75bb;
    border-bottom: 5px solid #1b75bb;
}

.trending-area .product-trend{
    justify-content: space-between;
    display: flex;
}

.trending-area .product-trend div{
    text-align: center;
    position: relative;
    width: 24%;
    height: 500px;
    margin-top: 40px;
    perspective: 1000px;
}

.trending-area .product-trend div img{
    object-fit: cover;
    width: 100%;
    height: 75%;
}

.trending-area .product-trend div a{
    padding: 10px 0;
    font-size: 22px;
    color: #0b2545;
}



.trending-area .product-trend div:hover > a{
    color: #1b75bb;
}



.trending-area .product-trend div p{
    color: #0b2545;
    font-size: 20px;
    opacity: 0.8;
}

.trending-area .product-trend div:hover p{
    opacity: 1;
}

.trending-area .product-trend div:hover p span{
    opacity: 0.5;
}

.trending-area .product-trend div p span{
    margin-left: 10px;
    text-decoration: line-through;
}

.trending-area .product-trend div .icon{
    display: flex;
    position: absolute;
    width: 60%;
    height: 10%;
    left: 20%;
    bottom: 30%;
    z-index: 10;
    
    background: #fffffff2;
    box-shadow: 0 0 10px #00000050;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20%);
    transition: 1s;

}

.trending-area .product-trend div .icon a{
    color: #0b2545;
    width: calc(100% / 3);
    background: transparent;  
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20%);
    transition: 0.4s;
}

.trending-area .product-trend div:hover .icon{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.trending-area .product-trend div:hover .icon a{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.trending-area .product-trend div .icon a:hover{
    background: #1b75bb;
    color: #fff;
}

.trending-area .product-trend > div::after{
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-size: cover;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}



/* card 1 */
.trending-area .product-trend > div:nth-child(1)::after{
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    background: url(../images/trend-1-hover.png);
    background-size: cover;

    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}

/* card 2 */
.trending-area .product-trend > div:nth-child(2)::after{
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    background: url(../images/trend-2-hover.png);
    background-size: cover;

    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}

/* card 3 */
.trending-area .product-trend > div:nth-child(3)::after{
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    background: url(../images/trend-3-hover.png);
    background-size: cover;

    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}

/* card 4 */
.trending-area .product-trend > div:nth-child(4)::after{
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    background: url(../images/trend-4-hover.png);
    background-size: cover;

    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}


.trending-area .product-trend > div:hover::after{
    transform: rotateY(0deg);
}

.trending-area > a{
    position: absolute;
    font-size: 30px;
    opacity: 0.7;
    color: #0b2545;
}

.trending-area > a:hover{
    opacity: 1;
    color: #4b87b4;
}

.trending-area .right-side{
    top: 50%;
    right: -35px;
}

.trending-area .left-side{
    top: 50%;
    left: -35px;
}








/* --customer section--- */

.customer{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 410px;
    margin-top: 60px;
    
    position: relative;
    background-color: #eef5fb;
    box-shadow: 1px 1px 2px #00000070, -1px -1px 2px #00000070;
}

.customer > h2{
    font-size: 30px;
    color: #0b2545;
}

.customer > p{
    font-size: 23px;
    line-height: 1.4;
    width: 50%;
    text-align: center;
    color: #0b254590;
}

.customer > div{
    display: flex;
    align-items: center;
}

.customer > div img{
    object-fit: cover;
    width: 80px;
    height: 80px;
    border-radius: 50%;

}

.customer .our-customer{
    margin-left: 15px;
}

.customer .our-customer h4{
    padding-bottom: 4px;
    color: #0b2545;
}

.customer .our-customer p{
    font-weight: bold;
    color: #0b254590;
}

.customer > a{
    position: absolute;
    font-size: 30px;
    opacity: 0.7;
    color: #0b2545;
}

.customer > a:hover{
    opacity: 1;
    color:  #4b87b4;
}

.customer .left-side{
    left: 10%;
    top: 50%;
}

.customer .right-side{
    right: 10%;
    top: 50%;
}





/* --- Like area section --- */

.like-area{
    margin-top: 70px;
    position: relative;
}

.like-area .may-like{
    justify-content: center;
    border-bottom: none;
    text-align: center;
}

.like-area .trending h2{
    color: #0b2545;
    font-weight: 500;
    font-size: 35px;
}

.like-area .product-trend{
    justify-content: space-between;
    display: flex;
}

.like-area .product-trend div{
    text-align: center;
    position: relative;
    width: 24%;
    height: 500px;
    margin-top: 40px;
    perspective: 1000px;
    overflow: hidden;
}

.like-area .product-trend div img{
    object-fit: cover;
    width: 100%;
    height: 75%;
}

.like-area .product-trend div a{
    padding: 10px 0;
    font-size: 22px;
    color: #0b2545;
}

.like-area .product-trend div:hover > a{
    color: #1b75bb;
}

.like-area .product-trend div p{
    color: #0b2545;
    font-size: 20px;
    opacity: 0.8;
}

.like-area .product-trend div:hover p{
    opacity: 1;
}

.like-area .product-trend div:hover p span{
    opacity: 0.5;
}

.like-area .product-trend div p span{
    margin-left: 10px;
    text-decoration: line-through;
}



.like-area .product-trend div .icon{
    display: flex;
    position: absolute;
    width: 60%;
    height: 10%;
    left: 20%;
    bottom: 30%;
    z-index: 10;
    background: #fffffff2;
    box-shadow: 0 0 10px #00000050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20%);
    transition: 1s;
}

.like-area .product-trend div .icon a{
    color: #0b2545;
    width: calc(100% / 3);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20%);
    transition: 0.4s;
}

.like-area .product-trend div:hover .icon{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.like-area .product-trend div:hover .icon a{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.like-area .product-trend div .icon a:hover{
    background: #1b75bb;
    color: #fff;
}




.like-area .product-trend > div::after{
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-size: cover;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: 1s;
    transform-style: preserve-3d;
}

.like-area .product-trend > div:nth-child(1)::after{
    background: url(../images/like1-hover.jpg);
    background-size: cover;
    transform: translateY(-75%);
    opacity: 0;
    visibility: hidden;
}

.like-area .product-trend > div:nth-child(2)::after{
    background: url(../images/like2-hover.jpg);
    background-size: cover;
    transform: translateY(-75%);
    opacity: 0;
    visibility: hidden;
}

.like-area .product-trend > div:nth-child(3)::after{
    background: url(../images/like3-hover.jpg);
    background-size: cover;
    transform: translateY(-75%);
    opacity: 0;
    visibility: hidden;
}

.like-area .product-trend > div:nth-child(4)::after{
    background: url(../images/like4-hover.jpg);
    background-size: cover;
    transform: translateY(-75%);
    opacity: 0;
    visibility: hidden;
}

.like-area .product-trend > div:hover::after{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}





.like-area > a{
    position: absolute;
    font-size: 30px;
    opacity: 0.7;
    color: #0b2545;
}

.like-area > a:hover{
    opacity: 1;
    color: #4b87b4;
}

.like-area .right{
    top: 50%;
    right: -35px;
}

.like-area .left{
    top: 50%;
    left: -35px;
}







/* ---latest news section--- */

.section-latest-news{
    width: 100%;
    background-color: #eef5fb;
    box-shadow: 1px 1px 2px #00000070, -1px -1px 2px #00000070;
    min-height: 600px;
    margin-top: 75px;
}

.section-latest-news h2{
    padding: 30px 0;
    font-size: 33px;
    text-align: center;
    color: #0b2545;
}

.latest-news{
    justify-content: space-between;
    display: flex;
}

.latest-news > div{
    perspective: 800px;
    width: 30%;
    height: 100%;
}

.latest-news > div img{
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.latest-news > div img:hover{
    transform: translateZ(30px);
}

.latest-news > div span{
    display: block;
    color: #0b254580;
    padding-top: 20px;
}

.latest-news > div a{
    color: #0b2545;
    font-size: 22px;
    margin: 15px 0;
}

.latest-news > div:hover a:not(.more){
    color: #1b75bb;
}

.latest-news > div .more{
    margin-bottom: 50px;
    text-decoration: underline;
}

.latest-news > div .more:hover{
    transform: scale(1.1,1.1);
}

.latest-news > div p{
    font-size: 17px;
    color: #0b254580;
}







/* --- delivery section --- */

.delivery{
    margin-top: 60px;
    margin-bottom: 60px;
    justify-content: space-between;
    text-align: center;
    display: flex;
}


.delivery div > div{
    width: 100%;
    height: 60px;
    overflow: hidden;
    position: relative;
}

.delivery div > div i{
    width: 100%;
    height: 92%;
    font-size: 45px;
    margin-bottom: 30px;
    color: #0b254560;
    display: flex;
    justify-content: center;
    align-items: center;
}


.delivery div #icon{
    position: absolute;
    color: #0b2545;
    transform: translateY(65px);
    top: 0;
    left: 0;
}

.delivery div:hover > div i{
    transform: translateY(-50px);
}

.delivery div:hover div #icon{
    transform: translateY(0);
}

.delivery h3{
    color: #0b2545;
}

.delivery p{
    margin-top: 10px;
    color: #5e5e5e;
}






/* start footer area */

.footer{
    width: 100%;
    background: #0b2545;
    min-height: 500px;
}

.footer-section{
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section > div{
    display: flex;
    padding-top: 18px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section .div1{
    width: 100%;
    min-height: 110px;
    border-bottom: 1px solid #f2fffe60;
    align-items: center;
}

.footer-section .div1 div p{
    padding-top: 16px;
}

.footer-section .div1 div input{
    padding-left: 15px;
    font-size: 18px;
    width: 350px;
    height: 50px;
}

.footer-section .div1 .send-email{
    display: flex;
}

.footer-section .div1 div .subscribe{
    background: #1b75bb;
    color: #fff;
    width: 140px;
    height: 48px;
    font-size: 20px;
    text-align: center;
    line-height: 48px;
    margin-left: 10px;
}

.footer-section .div1 div input:focus{
    outline: none;
}

.footer-section .div1 div a{
    color: #b8b8b8;
    font-size: 24px;
    margin-left: 10px;
}

.footer-section .div1 div a:hover{
    color: #fff;
    transform: scale(1.1);
}

.footer-section .div2{
    width: 100%;
    border-bottom: 1px solid #f2fffe60;
    min-height: 300px;
    margin-top: 50px;
}

.footer-section .div2 img{
    height: 100px;
    width: 100px;
    background: #fff;
}


.footer-logo-box{
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    width: fit-content;
    padding: 5px ;
    padding-right: 15px;
}

.footer-logo-box img{
    width: 70px;
    height: 70px;
}

.footer-logo-box h2{
    color: #0b2545;
    font-size: 22px;
}



.footer-section .div2 a{
    display: block;
    color: #BBB9B5;
    margin-bottom: 10px;
    transition: 0.5s;
}

.footer-section .div2 a:hover{
    color: #fff;
    text-decoration: underline;
    transform: scalex(1.08);
}

.footer-section .div2 h3{
    margin-bottom: 25px;
}

.footer-section .div3{
    width: 100%;
    min-height: 50px;
    justify-content: center;
    padding-bottom: 40px;
}

.footer-section .div3 p{
    color: #BBB9B5;
}

.footer-section .div3 p span,
.footer-section .div3 p a{
    padding: 0 2px;
    color: #38a9ff;
}

.footer-section .div3 p a:hover{
    letter-spacing: 1px;
    text-decoration: underline;
}

.footer-section .div3 p span i{
    animation: anamy 0.5s linear infinite alternate;
}




@keyframes anamy{
    0%{
        color: #000000;
        transform: scale(1);
    }

    100%{
        color: #ff0000;
        transform: scale(1.5);
    }
}
