.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.image-content img {
    max-width: 70%;
    height: auto;
    transition: transform 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behaviour: smooth;
    font-family: 'Jost', sans-serif;
    list-style: none;
    text-decoration: none;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10%;
} 

.logo img {
    max-width: 50px;
    height: auto;
}

.navmenu{
    display: flex;
    color:#E3E2DE;
}

.navmenu a {
    color: #2c2c2c;
    font-size: 16px;
    text-transform: capitalize;
    padding: 10px 20px;
    font-weight: 400;
    transition: all .42s ease;
}

.navmenu a:hover{
    color: #6cbd28;
}

.nav-icon {
    display: flex;
    align-items: center;
}

.nav-icon i {
    margin-right: 35px;
    color: black;
    font-size: 18px;
    font-weight: 400;
    transition: all .42s ease;
} 

.nav-icon i:hover {
    transform: scale(1.1);
    color: #6cbd28;
}

#menu-icon {
    font-size: 35px;
    color: black;
    z-index: 10001;
    cursor: pointer;
}

#menu-icon:hover {
    color: #6cbd28;
}

section {
    padding: 5% 10%;
}


.main-home {
    width: 100%;
    height: 100vh;
    display: flex;
    background-color: #fff;
    background-size: contain;
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: right center;
    align-items: center;
}

.main-text h5 {
    color: #6cbd28;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
}

.main-text h1 {
    color: #000;
    font-size: 70px;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.1;
    font-weight: 600;
    margin: 6px 0 15px;
}

.main-text p {
    color: #333c56;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.main-btn {
    diplay: inline-block;
    color: #111;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    border: 2px solid #111;
    padding: 12px 25px;
    transition: all .42s ease;
}

.main-btn:hover {
    background-color: #111;
    color: #fff;
}

.main-btn i{
    vertical-align: middle;
}

.down-arrow {
    position: absolute;
    bottom: 6%;
    right: 11%; 

}

.down-arrow a {
    font-size: 35px;
    color: #faf5f5;
    border: 2px solid #2c2c2c;
    border-radius: 50%;
    padding: 1px 10px;
}

.down-arrow a:hover {
    background-color: #2c2c2c;
    color: #fff;
    transition: all .42s ease;
}

header.sticky{
    background: #E3E2DE;
    padding: 20px 10%;
    box-shadow: 0px 0px 10px rgba(0 0 0 / 10%);
}

/*trending-section-css*/
.trending-text h2 {
    color: #111;
    font-size:28px;
    text-transform: capitalize;
    text-align: center;
}

.trending-text span{
    color: #6cbd28;
}

.products{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 1rem;
}

.row{
    position: relative;
    transition: all .40s ease;
}

.row img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all .40s ease;
}

.row img:hover{
    transform: translateY(-10px);
}

.product-text h5{
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    background: #6cbd28;
    font-size: 15px;
    font-weight: 500;
}

.heart-icon{
    position: absolute;
    right: 0px;
    right: 10px;
    font-size: 20px;
} 

.heart-icon:hover {
    color: #6cbd28;
}

.ratting{
    color: #FF8C00;
    font-size: 18px;
}

.price h4 {
    color: #111;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 400; 
}

.price p {
    color: #151515;
    font-size: 14px;
    font-weight: 700;
}

.client-reviews{
    background: #faf5f5;
}

.client-text img{
    width: 60px;
    height: auto;
    border-radius: 25%;
    margin: 10px 0;
}

.client-text p {
    color: #707070;
    font-size: 16px;
    font-weight: 400px;
    line-height: 25px;
    margin-bottom: 10px;
}

.client-text{
    text-align: center;
}

.client-text h3 {
    color: #111;
    font-size: 20px;
    text-transform: capitalize;
    trxt-align: center;
    font-weight: 500;
}


.client-text h2 {
    font-size: 22px;
    color: #111;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.contact {
    background: #E3E2DE;
}

.contact-info{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    gap: 3rem;
}

.first-info img {
    width:140px;
    height: auto;
}

.contact-info h4 {
    color: #212529;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-info p {
    color: #565656;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    line-height:1.9;
    margin-bottom: 3px;
    cursor: pointer;
    transition: all .42s;
}

.contact-info p:hover{
    color: #6cbd28;
}

.socials i {
    color: #565656;
    margin-right: 10px;
    font-size: 20px;
    transition: all .42s;
}

.socials i:hover{
    transform: scale(1.5);
}

.end-text {
    background-color: #edfff1;
    text-align: center;
    padding: 20px;
}

.end-text p{
    color: #111;
    text-transform:capitalize;
}

