*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Cormorant Garamond', serif;
    font-family: 'Dancing Script', cursive;
    font-family: 'IBM Plex Serif', serif;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Merriweather', serif; 
    font-family: 'Roboto', sans-serif;*/
}

body{
    height: 100% !important;
}
html {
    scroll-padding-top: 16rem;
  }  

main{
    width: 100%;
}

section{
    padding: 80px 0;
    overflow: hidden;
}

/* LOGO */
.logo{
    position: relative;
    background-color: black;
    color: white;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
}

.name{
    font-family: 'GFS Didot', serif;
    font-size: 300px;
    letter-spacing: 10px;
    display: flex;
    justify-content: center;
}

.centering{
    display: flex;
    justify-content: center;
    margin: auto;
}

.hero-icon{
    position: absolute;
    top: 85%;
    height: 40px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 50%;
}

.hero-icon:hover{
    background-color: transparent;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgb(255, 255, 255);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

.new-collection{
    padding: 100px 0;
    background-color: rgb(239, 239, 239);
    position: relative;
    z-index: 2;
}

.collection-img{
    display: flex;
    margin: auto;
    background-image: url(images/sec1-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 550px;
    width: 380px;
    box-shadow: 60px 60px black;
}

.new{
    padding: 20px;
}

.new h5{
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    font-size: 20px;
    color: rgb(165, 164, 164);
    font-weight: 100;
    margin-bottom: 30px;
}

.new h2{
    font-size: 100px;
    font-family: 'Merriweather', serif; 
    color: black;
    letter-spacing: 2px;
    line-height: 100px;
    margin-bottom: 15px;
}

.new h4{
    font-family: 'IBM Plex Serif', serif;
    color: black;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: right;
}

.view-all{
    padding: 10px 35px;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: black;
    color: white;
    border: none;
    float: right;
    transition: 1s ease-in-out;
}

.view-all:hover{
    transform: rotateX(360deg);
    background-color: rgb(66, 66, 66);
    color: white;
}

.line{
    content: "";
    position: absolute;
    z-index: 1;
    width: 200px;
    background-color: black;
    height: 70px;
    top: 17%;
    right: 39%;
    transition: 1s ease-in-out;
}

.line:hover{
    transform: rotateY(360deg)
    rotateX(100deg);

}

.zara-img{
    background-image: url(images/sec1-img2.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 390px;
    width: 410px;
    margin: auto;
}

.about-new{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    height:53vh;
    text-align: right;
}

.about-new h2{
    text-align: left;
    font-size: 45px;
    font-family: 'Merriweather', serif; 
    color: black;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-new h5{
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    font-size: 16px;
    color: rgb(165, 164, 164);
    font-weight: 100;
    margin-bottom: 30px;
}


/* BLACK FRIDAY */
.sale{
    background-color: rgb(241, 241, 241);
    color: rgb(255, 51, 0);
    text-align: center;
}

.timer{
    background-color: black;
    height: 550px;
    width: 850px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timer h4{
    font-family: 'Merriweather', serif;
    font-size: 30px;
    margin-bottom: 0px;
    font-weight: 500;
}

.timer h2{
    font-size: 70px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 700;
}

.timer h5{
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 0px;
}

.timer p{
    font-size: 25px;
    font-weight: 600;
}

.timer h6{
    font-size: 12px;
}

.column-row{
    display: flex;
    align-items:flex-end ;
    justify-content: center;
    height: 200px;
}

.btn1{
    padding: 5px 15px;
    border: none;
    border-radius: 0;
    background-color: white;
    color: black;
    font-size: 15px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: 600;
    margin: 0 5px;
    transition: .5s ease-in-out;
    margin-bottom: 20px;
}

.btn1:hover{
    background-color: rgb(214, 214, 214);
    color: black;
}

.btn1:focus{
    background: grey;
    color: black;
}

.border-none{
    border: none;
}

/* CARDS */

.new-arrivals{
    text-align: center;
    font-size: 50px;
    letter-spacing: 2px;
    font-family: 'Merriweather', serif;
    margin-bottom: 30px;    
}

.card{
    border: none;
    border-radius: 0%;
    color: black;
}

.card:hover{
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card1{
    background-image: url(images/card1-front.jpeg);
    background-size:cover;
    background-repeat: no-repeat;
    height: 650px;
    transition: .3s ease-in-out;
}

.card1:hover{
    background-image: url(images/card1-back.webp);
    background-size:contain;
    background-repeat: no-repeat;
    height: 720px;
}

.card2{
    background-image: url(images/card2-front.jpeg);
    background-size:cover;
    background-repeat: no-repeat;
    height: 650px;
    transition: .3s ease-in-out;
}

.card2:hover{
    background-image: url(images/card2-back.webp);
    background-size:contain;
    background-repeat: no-repeat;
    margin-top: -10px;
    height: 720px;
}

.card3{
    background-image: url(images/card3-front.jpeg);
    background-size:cover;
    background-repeat: no-repeat;
    height: 650px;
    transition: .3s ease-in-out;
}

.card3:hover{
    background-image: url(images/card3-back.webp);
    background-size:contain;
    background-repeat: no-repeat;
    height: 720px;
}

.down{
    position: absolute;
    background-color: #ebebeb;
    top: 65%;
    height: 253px;
    width: 100%;
    border-radius: 10px;
    backdrop-filter:blur(10px);
    transition: .3s ease-in-out;
}

.down h5{
    font-family: 'Merriweather', serif;
    font-size: 21px;
}

.down p{
    letter-spacing: 1px;
    font-size: 17px;
    font-family: 'IBM Plex Serif';
    margin-bottom: 7px;
}

.card-btn{
    padding: 5px;
    width: 100%;
    height: 40px;
    background-color: white;
    color: black;
    font-size: 15px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center; 
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: 600;
    transition: .5s ease-in-out;
    margin-bottom: 20px;
}

.card-btn:hover{
    background-color: black;
    color: white;
}


/* WINTER OUTFITS */
.favourite{
    background-color: rgb(239, 239, 239);
}

.outfit{
    text-align: center;
    color: black;
}

.outfit h2{
    font-size: 60px;
    font-family: 'Roboto', sans-serif;
    line-height: 60px;
}

.outfit h3{
    font-family: 'Merriweather', serif;
    font-size: 40px;
    margin-bottom: 60px;
}

.men{
    background-image: url(images/men-winter.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    width: 350px;
}

.women{
    background-image: url(images/women-winter.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    width: 350px;
    float: right;
    /* position: relative;
    top: -45%; */
}

.men-women{
    font-size: 40px;
    text-align: center;
    font-family: 'Merriweather', serif;
    color: black;
    display: flex;
    flex-direction: column;
    place-content: center;
    height: 300px;
}

.collection-btn{
    /* margin-left: -110px; */
    /* display:flex ;
    align-items: center; */
    margin: 0 auto;
    border: none;
    font-size: 20px;
    background-color: transparent;
    color: black;
    font-family: 'Merriweather', serif;
    letter-spacing: 2px;
    transition: .3s ease-in-out;
}

.collection-btn:hover{
    border-bottom: 2px solid black;
}

.men-women i{
    margin: 0 10px 0;
}

/* VIDEO */
.video{
    background-color: black;
}

.play-video{
    width: 100%;
    background-size: cover;
    padding: 10px 50px 30px;
}

.pad-sm-0{
    padding: 1.5rem;
}

.selected{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.zlatan{
    font-family: 'Merriweather', serif;
    letter-spacing: 3px;
    font-size: 40px;
    text-transform: uppercase;
}

.zlatan-cards{
    padding-top: 50px;
}

.zlatan-img1{
    background-image: url(images/zlatan-front1.jpeg);
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;
    transition: .3s ease-in-out;
}

.zlatan-img1:hover{
    background-image: url(images/zlatan-back1.jpeg);
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;
}

.zlatan-img2{
    background-image: url(images/zlatan-front2.jpeg);
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;
    transition: .3s ease-in-out;
}

.zlatan-img2:hover{
    background-image: url(images/zlatan-back2.webp);
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;
}

.zlatan-img3{
    background-image: url(images/zlatan-front3.jpeg);
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;
    transition: .3s ease-in-out;
}

.zlatan-img3:hover{
    background-image: url(images/zlatan-back3.jpeg);
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;
}

.zlatan-img4{
    background-image: url(images/zlatan-front4.jpeg);
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;
    transition: .3s ease-in-out;
}

.zlatan-img4:hover{
    background-image: url(images/zlatan-back4.webp);
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;
}

.zlatan-content{
    background-color:rgb(36, 36, 36);
    color: white;
}

.zlatan-content h5{
    font-family: 'Merriweather', serif;
    font-size: 21px;
}

.zlatan-content p{
    letter-spacing: 1px;
    font-size: 15px;
    font-family: 'IBM Plex Serif';
    margin-bottom: 7px;
}

.zlatan-btn{
    background-color: white;
    color: black;
    font-size: 14px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: 600;
    transition: .5s ease-in-out;
    margin-bottom: 10px;
}

.zlatan-btn:hover{
    background-color: black;
    color: white;
}

.more-btn{
    margin:40px auto 0;
    width: auto;
    display: flex;
    padding: 7px 25px;
    border: none;
    background-color: rgb(82, 81, 81);
    color: white;
    font-size: 17px;
    border-radius: 20px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: 600;
    transition: .5s ease-in-out;
}

.more-btn:hover{
    background-color:white ;
    color: black;
}


/* STORE */

.contact{
    background-color: rgb(239, 239, 239);
}

.map{
    height: 450px;
    width: 100%;
}

.contact-text{
    display: flex;
    flex-direction: column;
    place-items: center;
    justify-content: center;
    color: black;
}

.contact-text h2{
    font-size: 25px;
    font-family: 'Merriweather', serif;
    letter-spacing: 4px;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-text p{
    margin-bottom: 1.5rem;
}

.contact-text button{
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid black;
    color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: .5s ease-in-out;
}

.contact-text button:hover{
    background-color: black;
    color: white;
}
.city{
    margin: auto;
}
.city:hover{   
    cursor: pointer;
}









/* FOOTER */

.footer{
    text-align: center;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    font-weight: 400;
}










/* ANIMATIONS */

.animation-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all .5s ease-out;
    transition-delay: 0.1s;
}

.animation-down {
    opacity: 0;
    transform: translateY(-50px);
    transition: all .5s ease-out;
    transition-delay: 0.1s;
}

.anime-right{
    opacity: 0;
    transform: translateX(-80px);
    transition: all .4s ease-out;
    transition-delay: 0.1s; 
}

.anime-right-delay{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 1s ease-out;
    transition-delay: .2s; 
}

.anime-left{
    opacity: 0;
    transform: translateX(80px);
    transition: all .4s ease-out;
    transition-delay: 0.1s; 
}

.animation-down-delay{
    opacity: 0;
    transform: translateY(-30px);
    transition: all .5s ease-out;
    transition-delay: 2s;
}

.scroll-animation {
    opacity: 1;
    transform: translateX(0);
}

