*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
:root{
    --main-grey-white-color: #EBEBEB;
    --main-black-color:#232323;
    --special-tags-color: rgba(216, 209, 193, 0.63);
    --button-color:#d8d8d8;
}

body{
    list-style: none;
    background-color: #EBEBEB;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    overflow-x: hidden;
}

main{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}
.header {
    padding: 1.6rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--main-black-color);
    width: 100%;
    height: 61px;
}

.header img {
    height: 53px;
}

.navbar-lists {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-lists li {
    margin-right:43px;
}

.navbar-lists li:last-child {
    margin-right: 0;
}

.navbar-link {
    color: var(--main-grey-white-color);
    transition: background-color 0.3s;
}

.navbar-lists li i{
    color: var(--main-grey-white-color);
    cursor: pointer;
}

.icon {
    display: none;
}
.navbar-lists li:nth-child(1) i {
    color: rgb(48, 87, 15);
}

.navbar-lists li:nth-child(2) i {
    color: rgb(255, 255, 255);
}

.navbar-lists li:nth-child(3) i {
    color: rgb(11, 12, 11);
}

.dropdown-content a:nth-child(1) i {
    color: rgb(73, 86, 110);
}

.dropdown-content a:nth-child(2) i {
    color: rgb(255, 255, 255);
}

.dropdown-content a:nth-child(3) i {
    color: rgb(255, 255, 255);
}


@media screen and (max-width: 768px) {
    img{
        display: none;
    }
    .icon {
        display: flex;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 999;
        color: var(--main-grey-white-color);
        font-size: 24px;
        cursor: pointer;
        flex-direction: row-reverse;
    }

    .navbar-lists {
        display: flex;
        position: fixed;
        top: 61px;
        left: -100%;
        background-color: var(--main-black-color);
        width: 35%;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: left 0.3s ease;
        z-index: 998;
        padding-left: 20px;
    }

    .navbar-lists i{
        padding-left: 30px;

    }

    .navbar-lists.responsive {
        left: 0;
        margin-right: 2rem;
    }

    .navbar-lists.responsive li {
        margin: 10px 0;
    }

    .navbar-link {
        padding: 5px 20px;
        text-align: left;
        width: 100%;
    }

    .navbar-link i {
        display: none;
    }

}




@media screen and (max-width: 768px) {
  
}


/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    color: var(--main-grey-white-color);

}

/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: var(--main-grey-white-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    border: none;
    cursor: pointer;
}


.dropbtn i {
    margin-left: 4px;
    color: var(--main-grey-white-color);

}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--main-black-color);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    width: 160px;
}

.dropdown-content a {
    color: var(--main-grey-white-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
}

.dropdown-content a i {
    margin-right: 5px;
    color: var(--main-grey-white-color);
}

.dropdown-content a:hover {
    background-color: #a0a0a0c9;
}

.dropdown:hover .dropdown-content {
    display: block;
}


@media screen and (max-width: 768px) {
    .dropdown {
        display: block;
        margin-bottom: 10px;
    }

    .dropdown-content {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
        min-width: auto;
        border-radius: 0;
        width: 100%;
        top: initial;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropbtn {
        padding: 10px 20px;
    }

    .dropdown-content a {
        padding: 10px 20px;
    }

    .dropdown-content a i {
        display: none;
    }

    .dropdown:hover .dropdown-content a i {
        display: inline-block;
    }
}

/* Hero Section*/
.hero{
    height: 700px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-color: var(--main-black-color);
}
.hero_img{
    width: 626px;
    height: 634px;
    margin-top: 10px;
   display: flex;
}
article{
    width: 447px;
    height: 398px;
    margin-left: 48px;
    color: var(--main-grey-white-color);
}
article h1{
    font-size: 131px;
    font-style: normal;
    font-weight: 600;
}

article p{
    font-size: 96px;
    font-weight: 200;
}

#down_arrow1{
margin-top: 25rem;
}

/* Explore Section */
aside{
    margin-left: 5rem;
}
.explore h1{
    font-size: 60px;
    margin-top: 5rem;
}
.explore p{
    width: 403px;
    height: 173px;
    font-size: 23px;
    margin-top: 10rem;
}

#down_arrow2{
    margin-bottom: 10rem;
    }
.container {
    position: absolute;
    top: calc(122% + 30px); 
    /* Positioning more downwards towards the center */
    left: calc(90% - 451px); 
    /* Centering the container horizontally */
    display: flex;
    flex-direction: column;
  }
  
  .card1, .card2, .card3 {
    display: flex;
    height: 430px;
    width: 301px;
    background-color: #17141d;
    box-shadow: -1rem 0 3rem #000;
    transition: 0.4s ease-out;
    position: absolute;
    right: 15px; 
    /* Distance from the right end */
  }
  
  .card1 {
    z-index: 3;
    transform: translate(0, 0);
    background-image: url(/Images/yellow_print.jpg);
    background-repeat: no-repeat;
    background-size: 301px 430px;
  }
  
  .card2 {
    z-index: 2;
    transform: translate(284px, -30px);
    background-image: url(/Images/blue_print.jpg);
    background-repeat: no-repeat;
    background-size: 301px 430px;
  }
  
  .card3 {
    z-index: 1;
    transform: translate(568px, -60px);
    background-image: url(/Images/blue_red_print.jpg);
    background-repeat: no-repeat;
    background-size: 301px 430px;
  }
  
  .card1:hover {
    transform: translate(0, -20px);
  }
  
  .card2:hover {
    transform: translate(284px, -50px);
  }
  
  .card3:hover {
    transform: translate(568px, -80px);
  }
  
  .see_more{
    display: flex;
    font-size: 40px;
    flex-direction: row;
    margin-right: 6rem;
    justify-content: flex-end;
    margin-top: -12rem;
    margin-bottom: 10rem;
  }

  .see_more a{
    text-decoration: none;
    color: var(--main-black-color);   
     

  }

  /* Section 3 */
  .center_bts{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: start;
    margin-top: 5rem;
  }
  .center_bts p{
    width: 425px;
    height: auto;
    font-size: 25px;
    margin-top: 2rem;
    margin-right: 24rem;
    display: flex;
    align-content: flex-start;
  }
  .bts_video a{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-right: 5rem;
    margin-top: -15rem;
  }
  /* Section 4 */
  .collections{
    margin-top: 8rem;
  }
  .collections p{
    width: 303px;
    font-size: 48px;
  }
  .box-area{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 50px;
}
.single-box{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 555px;
    background-color: var(--main-grey-white-color);
    text-align: center;
    margin: 30px;
    padding: 20px;
    transition: .3s;
}
.img-area{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 390px;
    height:291px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center center;
}
.single-box:nth-child(1) .img-area{
    background-image: url(/Images/left_purple_print.jpg);
}
.single-box:nth-child(2) .img-area{
    background-image: url(/Images/white_print.jpg);
}
.single-box:nth-child(3) .img-area{
    background-image: url(/Images/right_pink_print.jpg);
}
.header-text{
    font-size: 24px;
    font-weight: 500px;
    line-height: 48px;
}
.img-text h3{
    margin: 10px 0;
}
.img-text p{
    font-size: 20px;
    font-weight: 400px;
    line-height: 30px;
    text-align: left;
}
.single-box:hover{
    background-color: rgb(221, 221, 221);
    color: #fff;
}
.single-box:hover .line{
    background-color: #fff;
}

/* Contact Page */
.contact{
    display: flex;
    justify-content: space-around;
    margin-left: 60px;
    margin-top: 10rem;
}

.contact h1{
    margin-top: 10rem;
    margin-bottom: 2rem;
}

.contact_text{
    font-size: 25px;
    line-height: 95px;
}
.pics_container{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
.contact_pic1{
    width: 438px;
    height: 202px;
    background-image: url(/Images/white_print.jpg);
    background-size: cover;
    background-position: center center;
}
.contact_pic2{
    margin-top: 52px;
    margin-bottom: 2em;    
    margin-left: 10rem;
    width: 438px;
    height: 202px;
    background-image: url(/Images/white_print.jpg);
    background-size: cover;
    background-position: center center;
}

.socials{
    margin-top: 7rem;
    margin-bottom: 2rem;
    margin-left: 25rem;
}