*, html{margin: 0; padding: 0; box-sizing: border-box; border: none; outline: none;}
ol, ul{list-style: none;}
a{text-decoration: none;}
/* **************************************** */
body{background: #eee4e3; overflow: hidden;}
.container{width: 100%; height: 100vh;}
/* **************************************** */
nav{
    position: relative;
    padding: 0 7vh;
    height: 120px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav_logo{display: flex; align-items: center;}
.nav_logo img{width: 100px;}

.nav_menu ul{display: flex; flex-direction: row;}
.nav_menu ul li{position: relative; margin: 0 30px;}
.nav_menu .link{
    padding: 10px 0;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.nav_menu li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #000;

    display: block;
    transition: 0.5s;
    margin-top: 6px;
}
.nav_menu li:hover::after{width: 100%;}


.nav_menu ul li a:hover{color: #eee4e3;}

.left_nav, .right_nav{display: flex; gap: 50px;}
/* **************************************** */
.nav_cart_box{display: none;}
.menu_bars{display: none;}
.menu_bars_btn{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
}
.menu_bars_btn img{width: 30px;}

.nav_dropdown_menu{display: none;}

.bar_1, .bar_2{transition: 0.3s ease;}
.menu_bars_btn:hover .bar_1{margin-left: 5px;}
.menu_bars_btn:hover .bar_2{margin-right: 10px;}
/* **************************************** */
.item_1 img{
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: 10;
}

.item_2 img{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    opacity: 0.1;
    
    max-width: 1000px;
    width: 100%;
    z-index: 20;
}

.just_do_it p{
    position: absolute;
    top: 70%;
    right: 60px;
    transform: translate(-50%, -50%);
    width: 200px;
    font-size: 100px;
    opacity: 0.1;
    z-index: 100;
    line-height: 100px;
    letter-spacing: 6px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
/* **************************************** */
.main{
    position: relative;
    display: flex;
    z-index: 100;
}

.left_col{
    width: 50%;
    padding-top: 40px;
    padding-left: 70px;
}

.left_col .shoe_title p{
    font-size: 4vw;
    font-weight: 500;
    letter-spacing: 6px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.line hr{
    width: 210px;
    border: 1px solid #000;
    margin: 25px 0 35px 0;
}

.left_col .shoe_description p{
    font-weight: 300;
    line-height: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;
}

.cart{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 80px 0 0;
}

.cart_btn{
    width: 130px;
    height: 45px;
    border-radius: 30px;
    box-shadow: 2px 4px 8px rgba(0,0,0,0.5);
    cursor: pointer;
    font-weight: 800;
}

.cart_btn:hover{background: #eee4e3;}

.price{font-weight: 500;}

.shop_box{
    display: flex;
    align-items: flex-start;
    gap: 50px;
    height: 100%;
    max-width: 45vh;
    margin-top: 120px;
}

.shop_item_container{
    position: relative;
    width: 200px;
    height: 150px;
    background: #b0b0b0;
    padding: 80px 20px 0 20px;
    border-radius: 40px;
    box-shadow: -5px 5px 10px rgba(0,0,0,0.2);
    cursor: pointer;
}

.shoe_img_box .shoe_img{
    position: absolute;
    top: 5%;
    left: 50%;
    width: 140px;
    transform: translate(-50%, -50%) rotate(-40deg);
    transition: 0.3s ease-in-out;
}

.shoe_name_price{
    display: flex;
    justify-content: space-between;
}

.shoe_name_price h3{
    font-size: 18px;
    font-weight: 500;
    width: 60px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.add_to_shop{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 50px;
    height: 50px;
    background: #474747;
    position: absolute;
    right: -10px;
    border-radius: 10px;
}

.add_to_shop i{
    font-size: 26px;
    color: #fff;
}

.add_to_shop:hover{background: #eee4e3;}
.add_to_shop:hover i{color: #000;}

.shop_item_container:hover .shoe_img{
    top: 5%;
    transform: translate(-50%, -50%) rotate(-50deg);
}
/* **************************************** */
.right_col{
    position: relative;
    width: 50%;
    height: 94vh;
}

.featured_img{
    position: absolute;
    top: 50%;
    left: 40%;
    width: 42vw;
    transform: translate(-70%, -70%) rotate(-35deg);
    animation: featuredImg 2s;
}

@keyframes featuredImg{
    0%{top: 0; opacity: 0;}
    100%{top: 50%; opacity: 1;}
}

.shopping_cart_btn{
    position: absolute;
    top: -76px;
    right: 80px;
}

.shopping_cart_btn i{
    font-size: 30px;
    cursor: pointer;
}