*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}
:root{
    --bg-color: #ffffff;
    --text-color: #111111;
    --main-color: #c8815f;
    --big-font: 4.5rem;
    --h2-font: 3.3rem;
    --h3-font: 2rem;
    --normal-font: 1rem;
}
body{
    background: var(--bg-color);
    color: var(--text-color);
}
header{
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 20px 14%;
    transition: all .35s ease;
}
.logo{
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-color);
}
.navlist{
    display: flex;
}
.navlist a{
    color: var(--text-color);
    font-weight: 600;
    padding: 10px 25px;
    font-size: var(--normal-font);
    transition: all .35s ease;
}
.navlist a:hover{
    color: var(--main-color);
}
.header-icons i{
    font-size: 32px;
    color: var(--text-color);
    margin-right: 20px;
    transition: all .36s ease;
}
.header-icons i:hover{
    color: var(--main-color);
    cursor: pointer;
}
#menu-icon{
    font-size: 34px;
    color: var(--text-color);
    z-index: 10001;
    transition: all .36s ease;
    margin-right: 20px;
    display: none;
}
section{
    padding: 100px 14%;
}
@keyframes trans1{
    from{
        opacity: 0;
        transform: translateX(-50%);
    }
    top{
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes trans2{
    from{
        transform: translateX(50%);
        opacity: 0;
    }
    to{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes trans3{
    0%{
        transform: scale(0);
        opacity: 0;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes trans4{
    0%{
        transform: translateY(-50%);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes trans5{
    0%{
        transform: translateY(50%);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes trans6{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.home{
    min-height: 100vh;
    width: 100%;
    background: url(assests/em1.png);
    background-repeat: no-repeat;
    background-size: 63vh;
    background-position: bottom right;
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    justify-content: center;
}
.home-text{
    max-width: 80%;
}
.home-text h1{
    font-size: var(--big-font);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .6rem;
    margin-bottom: 1.4rem;
    color: var(--main-color);
}
.home-text span{
    font-size: var(--h2-font);
    color: var(--text-color);
}
.home-text p{
    font-size: var(--normal-font);
    font-weight: 500;
    margin-bottom: 3rem;
    letter-spacing: .2rem;
}
.btn{
    display: inline-block;
    padding: 13px 25px;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 4rem;
    transition: all .36s ease;
}
.btn:hover{
    transform: scale(1.1);
}
header.sticky{
    background: var(--bg-color);
    padding: 14px 14%;
    box-shadow: 0 0 10px rgb(0 0 0 / 105);
}
.about{
    background: #deb39f;
}
.about h1{
    font-size: var(--h3-font);
    font-weight: 600;
    text-align: center;
    padding-bottom: 2rem;
}
.about-content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7rem;
}
.about-info{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    text-align: left;
    justify-content: left;
    gap: 1rem;
    animation: trans2 linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}
.about-info .btn{
    box-shadow: 0 0 0 0;
    background-color: black;
    color: var(--main-color);
    margin-left: 0;
    margin-top: 1.2rem;
}
.about-info .btn:hover{
    background-color: var(--main-color);
    color: black;
    border: solid;
    border-color: gray
}
.about-img{
    animation: trans1 linear;
    animation-timeline: view();
    animation-range: entry 0 cover 30%;
}
.about-img img{
    border-radius: 50%;
    position: relative;
    width: 25vw;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--main-color);
    cursor: pointer;
    transition: 0.4s ease-in-out;
}
.about-content p{
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 1000px;
    text-indent: 2.5rem;
}
.center-text{
    text-align: center;
}
.center-text h2{
    font-size: var(--h3-font);
}
.ft-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,auto));
    gap: 1.3rem;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: auto;
    margin-top: 4rem;
}
.img-cbox img{
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.card{
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    position: relative;
    animation: trans6 linear;
    animation-timeline: view();
    animation-range: entry 0 cover 30%;
}
.card-content{
    position: absolute;
    background-color: #deb39f;
    bottom: 0;
    text-align: center;
    color: black;
    width: 100%;
    height: 15%;
    padding: 0;
    overflow: hidden;
    transition: 0.7s all ease-in-out;
}
.card-content h1{
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: capitalize;
}
.card-content p{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    padding: 1.2rem;
}
.card-content:hover{
    height: 50%;
    transition: 0.6s;
}
.cta{
    height: 60vh;
    width: 100%;
    background: url(assests/em2.png);
    background-color: #d39a7e;
    background-size: 85vh;
    background-repeat: no-repeat;
    background-position: top right;
    display: flex;
    align-items: center;
}
.cta-text{
    animation: trans3 linear;
    animation-timeline: view();
    animation-range: entry 0 cover 30%;
}
.cta-text h6{
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .6px;
    margin-bottom: 14px;
}
.cta-text h4{
    font-size: 3.3rem;
    line-height: 1.2;
    letter-spacing: .6rem;
    margin-bottom: 30px;
}
.cta .btn{
    background-color: #c8815f;
    color: black;
}
.new{
    background-color: #deb39f;
}
.new-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    align-items: center;
    margin-top: 4rem;
    text-align: center;
}
.box{
    position: relative;
    transition: all .40s ease;
    animation: trans3 linear;
    animation-timeline: view();
    animation-range: entry 0 cover 30%;
}
.box img{
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}
.box h5{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.box h6{
    font-size: 16px;
    font-weight: 700;
}
.box:hover{
    transform: scale(0.9) translateY(-5px);
    cursor: pointer;
}
.sale{
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 30px;
    background: var(--main-color);
    color: var(--bg-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.brand{
    padding: 50px 14%;
}
.brand-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
    align-items: center;
}
.main{
    max-width: 200px;
}
.contact{
    width: 100%;
    height: auto;
    background-color: var(--text-color);
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px, auto));
    gap: 2rem;
}
.main-contact h3{
    font-size: 23px;
    margin-bottom: 1.6rem;
    color: var(--bg-color);
}
.main-contact h5{
    font-size: 15px;
    font-weight: 600;
    color: #555;
}
.icons{
    display: flex;
    margin-top: 2rem;
}
.icons i{
    font-size: 25px;
    margin-right: 1rem;
    color: #555;
    transition: all .35s ease;
}
.icons i:hover{
    color: var(--bg-color);
    transform: scale(1.1) translateY(-5px);
}
.main-contact li{
    margin-bottom: 15px;
}
.main-contact li a{
    display: block;
    color: #555;
    font-size: var(--normal-font);
    font-weight: 600;
    transition: all .35s ease;
}
.main-contact li a:hover{
    transform: translateX(-8px);
    color: var(--bg-color);
}
.last-text{
    text-align: center;
    padding: 20px;
    background: var(--text-color);
}
.last-text p{
    color: #555;
    font-size: 14px;
    letter-spacing: 1px;
}
.top{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
}
.top i{
    font-size: 22px;
    color: var(--bg-color);
    padding: 10px;
    background: var(--main-color);
    border-radius: 2rem;
}

@media(max-width: 1000px){
    header{
        padding: 7px 4%;
        transition: .2s;
        font-size: 1.5rem;
    }
    header.sticky{
        padding: 14px 4%;
        transition: .2s;
    }
    section{
        padding: 80px 4%;
        transition: .1s;
    }
    .cta{
        background-size: 40vh;
    }
    .new-content{
        grid-template-columns: repeat(2, 1fr);
        gap: 1.3rem;
    }
    .brand-content .main{
        width: 100px;
    }
    .brand-content{
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
}

@media(max-width: 670px){
    section{
        padding: 12% 8%;
    }
    #menu-icon{
        display: block;
    }
    .home{
        background-position: bottom right 120%;
    }
    .home-text{
        backdrop-filter: blur(5px);
        background-color:rgba(255,255,255,0.1);
        border-radius: 25px;
    }
    .cta-text{
        backdrop-filter: blur(5px);
        background-color:rgba(255,255,255,0.1);
        border-radius: 25px;
    }
    .header-icons{
        display: inline-flex;
    }
    .navlist{
        position: absolute;
        top: 100%;
        left: 100%;
        width: 280px;
        height: 120vh;
        background-color: var(--bg-color);
        display: flex;
        flex-direction: column;
        padding: 150px 30px;
        transition: all .45s ease;
    }
    .navlist a{
        display: block;
        margin: 1.2rem 0;
    }
    .navlist.open{
        left: 0;
    }
    .about-content{
        flex-direction: column;
        gap: 3rem;
    }
    .about-img img{
        width: 45vw;
    }
}