*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
a{
    text-decoration: none;
}
.container{
    width: 100%;
    height: 100vh;
}
.logo{
    position: absolute;
    top: 50px;
    left: 90px;
}
.logo a{
    text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
    color: #2f2e41;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
}
.search_area{
    position: fixed;
    right: 90px;
    top: 50px;
    width: 170px;
    height: 45px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10% 10% 10% 10% / 50% 50% 50% 50%;
    box-shadow: 2px 2px 30px rgba(167, 158, 245, 0.2);
    box-sizing: border-box;
    z-index: 1;
    border: 1px solid rgba(167, 158, 245, 0.1);
}
.search_box input{
    width: 90px;
    height: 20px;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 1rem;
    padding: 0px 10px;
}
.search_box input::placeholder{
    color: #1d1d1d;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-family: poppins;
}
.section_1{
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translate(-15%, -50%);
}
.section_1 img{
    height: 300px;
}
.section_1_btn{
    position: absolute;
    left: 80%;
    top: 50%;
    transform: translate(-90%, -50%);
}
.section_1_btn h1, h2{
    font-family: Roboto;
    font-weight: bold;
    margin: 0px;
    line-height: 60px;
    font-size: 4rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.08);
    letter-spacing: 3px;
    color: #3d3d4a;
    text-transform: uppercase;
}
.section_1_btn h1{
    letter-spacing: 28px;
}
.span_color{
    color: #6c63ff;
}
.btn1{
    width: 150px;
    height: 40px;
    background-color: #2f2e41;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10% 10% 10% 10% / 50% 50% 50% 50%;
    margin-top: 20px;
    color: #fff;
    font-family: calibri;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    border: transparent !important;
}
.btn1:hover{
    color: #fff;
    background-color: #6c63ff;
    transition: 0.5s;
}
.icon_area{
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    padding: 5px 0px;
    z-index: 1;
}
.icon_area a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
}
.icon_area a i{
    color: rgba(39, 39, 39, 0.80);
}
.icon_area a:hover .fa-facebook{
    color: #3b5998;
}
.icon_area a:hover .fa-twitter{
    color: #00acee;
}
.icon_area a:hover .fa-instagram{
    color: #3f729b;
}
.icon_area a:hover .fa-youtube{
    color: #ff0000;
}

.product_section{
    width: 85%;
    background-color: #fff;
    box-shadow: 2px 2px 30px rgba(167, 158, 245, 0.2);
    display: flex;
    margin: 30px auto;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    margin-top: -60px;
    position: relative;
    background-size: 1000px;
    border-radius: 10px;
}
.product_section > h3{
    margin: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    font-family: myriad pro;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    font-size: 2rem;
    color: #323543;
}
.product{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0px;
    width: 100%;
}
.product_box{
    width: 350px;
    height: 370px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 8px;
    position: relative;
    margin: 10px 30px;
}
.product_box img{
    height: 180px;
}
.product_box p{
    color: #4d4d4d;
    font-family: myriad pro;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.product_box a{
    color: #2c2c2c;
    font-family: poppins;
    font-size: 1rem;
}
.buy_btn{
    position: absolute;
    width: 140px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: calibri;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    border-radius: 15% 15% 15% 15% / 50% 50% 50% 50% ;
    background: linear-gradient(120deg, #6b60ec 20%, #a166f4);
    color: #ffffff;
    display: none;
    animation: fade 0.2s;
}
.product_box:hover .buy_btn{
    display: flex;
}
.product_box:hover{
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: .5s;
}
.product_box:hover .buy_btn{
    color: #fff;
    transition: all ease 0.3s;
}
.about{
    display: flex;
    width: 85%;
    margin: 50px auto;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
    margin-bottom: 150px !important;
}
.about_box{
    width: 40%;
    font-family: myriad pro;
}
.about_box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about_box h1{
    color: #333333;
    font-weight: 700;
    font-size: 3rem;
    margin: 0px;
}
.about_box h4{
    color: #333333;
    font-weight: 400;
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 10px;
}
.about_box p{
    color: #bdbdbd;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.notification{
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.03);
}
.notification h1{
    font-size: 2rem;
    color: rgb(56, 56, 56);
}
.notification_input{
    width: 500px;
    background-color: #fff;
    border-radius: 7% 7% 7% 7%  / 50% 50% 50% 50% ;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
    box-shadow: 2px 5px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}
.notification_input input{
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    background-color: transparent;
}
.notification_btn{
    width: 120px;
    height: 40px;
    background-color: #202020;
    border-radius: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 2px 5px 30px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}
.notification_btn:hover{
    background-color: #6b60ec;
    transition: all ease 0.5s;
}
footer{
    background-color: black !important;
    padding: 20px;
}
footer p{
    text-align: center;
    color: #f2f2f2;
}