:root{
    --bodyBack: #00827f;
    --textColor: #1b2741;
    --starColor: #f67034;
    --sectionBack: #f7f6f9;
}
.container .content{
    display: none;

}
.container .content.contentENGLISH{
    display: block;
}


.check{
    position: relative;
    width: 5px;
    display: flex;
    cursor: pointer;
    margin-right: 5px;
}
.check::before{
    position: absolute;
    content: '';
    width: 25px;
    height: 15px;
    background-color: rgb(0, 60, 128);
    border-radius: 25px;
}
.check:checked::before{
    background: red;

}
.check::after{
    content: '';
    position: absolute;
    left: 0px;
    width: 15px;
    height: 15px;
    background: rgb(0, 121, 173);
    border-radius: 25px;
    transition: 0.25s;
    border: 2px solid #333;
    box-sizing: border-box;
}
.check:checked::after{
    left: 12px;
    border: 2px solid #e0dd1b;
}
.en{
    color: green;
}
.sw{
    color: red;
    margin-left: 9px;
}


.check:checked ~ .content.contentENGLISH{
    display: none;
}
.check:checked ~ .content.contentSWAHILI{
    display: block;
}

.sect2{
    background-color: var(--sectionBack);
}
.container-sect2{
    position: relative;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.header-sect2{
    width: 100%;
    text-align: center;
}
.header-sect2 h1{
    font-size: 1.2em;
    text-transform: uppercase;
    color: var(--textColor);
}
.products{
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 40px;
}
.product{
    position: relative;
    margin: 10px;
    background-color: var(--sectionBack);
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
    padding: 10px 10px 40px;
    border-radius: 10px;
    transition: .3s;
}
.product:hover{
    transform: translateY(-15px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
.image{
    width: 100%;
    height: 60%;
    display: grid;
    place-items: center;
}
.image img{
    width: 100%;
}
.namePrice{
    width: 100%;
    padding-top:5px;
    display: flex;
    justify-content: space-between;
}
.namePrice h3{
    font-size: 22px;
    text-transform: capitalize;
    color: var(--textColor);
}
.namePrice span{
    font-size: 14px;
    color: var(--starColor);
}
.product p{
    font-size: 12px;
    line-height: 20px;
}

.stars{
    margin-right: 120px;
    font-size: 12px;
    color: var(--starColor);
}
.buy{
    position: absolute;
    bottom: -9px;
    right:0px;
}
.buy button{
    padding: 10px 20px;
    border-radius: 7px;
    border: none;
    background-color: var(--textColor);
    color: var(--sectionBack);
    font-size: 12px;
    text-transform: capitalize;
    cursor: pointer;
    transition: .5s;
}
.buy button:hover{
    transform: scale(1.1);
}

