

:root {
    --header-height: 3.5rem;

    /*==========COLORS==========*/
    --black-color: hsl(220,24%, 12%);
    --black-color-light: hsl(202, 96%, 32%);
    --black-color-lighten: hsl(220, 20%, 18%);
    --white-color:#fff;
    --body-color:hsl(220, 100%, 97%);

    /*========== Z INDEX ==========*/
    --z-tooltip:10;
    --z-fixed:100;
}

*{
    padding: 0;
    margin: 0;
    font-family: 'poppins', sans-serif;
}
body{
  overflow-x: hidden;
}

.slide-span{
    display: flex;
    position: fixed;
    width: 100vw;
    top: 0;
    align-items: center;
    background-color: var(--white-color);
    margin-top: 0px;
    height: 30px;
    z-index: 30;
}
.slide-span span{
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    padding: 8px 20px;
    background-color: red;
    color: var(--white-color);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    font-weight: 600;
}
      /*=================== HEADER ===============*/
.top{
position: sticky;
top: 0;
z-index: var(--z-fixed);
}
.header{
    background-color:black;
    width: 100%;
    padding: 8px 0px;
    font-size: 18px;
    height: 50px;
    left: 0;
    right: 0;
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed);
}

/*=================== NAV ===============*/
.nav{
    height: 50px;
    justify-content: space-between;
}
.nav__logo,
.nav__burger,
.nav__close{
    color: white;
}

.sealogo{
    height: 50px;
    margin-left: 6px;
}

ul{
    list-style-type: none;
}
.nav__data{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__logo{
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: bold;
    text-decoration: none;
}

.nav__logo i{
    font-weight: initial;
    font-size: 1.25rem;
    text-decoration: none;
}

.nav__toggle{
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__burger,
.nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
}
.nav__close{
    opacity: 0;
}

.nav__lng{
    display: flex;
    align-items: center;
    column-gap: 3;
    width: 100px;
    height: 20px;
    right: 20px;
    justify-content: space-around;

}

@media screen and (max-width: 600px){
     .section-1 .span span{
    font-size: 3.3rem;
}
    
}

/*=================== FOR MOBILE DEVICES ===============*/
@media  screen and (max-width: 1118px) {

   
    .best-sn .best-img{
     width: 100%;
    padding: 5px 0;
    border-radius: 40px;
    height: 150px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
}
.best-sn .best-p{
    width: 100%;
}
.best-info{
    width: 150px;
    word-wrap: break-word;
    position: relative;
}
    .nav__menu{
        position: absolute;
        right: 0;
        top: 3rem;
        width: 40%;
        /*background-color: gray;*/
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0; 
        transition: top .4s, opacity .3s;
        text-decoration: none;
        text-align: center;
    }
    .nav__menu::-webkit-scrollbar{
        width: 0;
    }
    .nav__list{
        background-color: black;
        padding-top: 1rem;
        text-decoration: none;
    }
    .nav__link{
        color: var(--white-color);
        background-color: black;
        font-weight: 200;
        padding: 1.25rem 1.25rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color .3s;
         text-decoration: none;
    }
    .nav__link:hover{
        background-color: var(--black-color-lighten);
    }

    .nav__lng{
        display: none;
    }

    .container-goods{
        text-align: center;
        justify-items: center;
        height: 140vh;
        width: 100%;

    }

    .content-items{
    width: 25rem;
    height: 60px;
    display: flex;
    padding: 15px;
    background-color: bisque;
    align-items: center;
    border-radius: 30px;
    column-gap: 30px;
    color: #000;
    margin: 15px;
}

.content-photo{
    position: absolute;
    height:20rem;
    z-index: 10;
    justify-items: center;
    align-items: flex-end;
    bottom: 0;
    left: 0;
    right: 0;
}

  .content-photo img{
    position: relative;
    width: 20rem;
    height: 20rem;
    margin-top: 2.5rem;
  }

}


/*=================== SHOW MENU ===============*/
.show__menu{
    opacity: 1;
    top: 3.9rem;
    pointer-events: initial;
}


/*=================== SHOW ICON ===============*/
 .show__icon .nav__burger{
    opacity: 0;
    transform: rotate(90deg);
}

.show__icon .nav__close{
    opacity: 1;
    transform: rotate(90deg);
}




/*=================== DROPDOWN ===============*/
.dropdown__item{
    cursor: pointer;
     text-decoration: none;
}
.dropdown__arrow{
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
}
.dropdown__link{
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--white-color);
    background-color: var(--black-color-light);
    display: flex;
     text-decoration: none;
    align-items: center;
    column-gap: .5rem;
    font-weight: 100;
    font-size: 12px;
    transition: background-color .3s;
}
.dropdown__link i{
    font-size: 1rem;
    font-weight: initial;
}
.dropdown__link:hover{
    background-color: var(--black-color);
    border-radius: 15px;
}

.dropdown__menu{
    border-radius: 0px 0px 15px 15px ;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}
.dropdown__item:hover .dropdown__menu{
    max-height: 1000px;
    transition: max-height .4s ease-in;
}







/*=================== SHOW DROPDOWN MENU & SUB MENU ===============*/







/*=================== ROTATE DROPDOWN ICON ===============*/








/*=================== SHOW MENU ===============*/









/*=================== BREAKPOITSSSSSSS ===============*/
/*=================== KWA SIMU NDOGO===============*/
@media screen and (max-width: 340px){
    .container{
        margin-inline: 1rem;
    }

    .nav__link{
        padding-inline: 1rem;
    }


}





/*=================== KWA SIMU KUBWA ===============*/
@media screen and (min-width: 1118px) {
    .container{
        margin-inline: auto;
    }

    .nav{
        height:var(--header-height);
        display: flex;
        column-gap: 10rem;
        align-items: center;
    }
    .nav__toggle{
        display: none;
    }
    .nav__list{
        color: white;
        height: 100%;
        display: flex;
        column-gap: 1rem;
        list-style-type: none;
    }
    .nav__link{
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .10rem;
        color: var(--white-color);
    }
    .nav__link:hover{
        background-color: transparent;
    }

    .dropdown__item{
        position: relative;
    }

    .dropdown__menu{
        width: 300px;
        align-items: center;
        max-height: initial;
        overflow: initial;
        position: absolute;
        justify-content: center;
        top: 6rem;
        opacity: 0;
        pointer-events: none; 
        transition: opacity .3s, top .3s;
    }

    .dropdown__link{
        padding-inline: 1rem;
        font-size: 14px;
    }

    /*======== SHOW MENU ========*/
    .dropdown__item:hover .dropdown__menu{
        opacity: 1;
        top: 3rem;
        pointer-events: none;
        transition: top .8s;
        pointer-events: initial;
    }

    .nav__menu{
        justify-content: center;
        text-align:center;
        text-decoration: none;
    }

   
 .section-4 {
    width: 100%;
    padding: 20px 0;
    min-height: 80vh;
    z-index: 1;

}
     .container-goods{
        display: flex;
    
     }
     .content-goods{
        position: absolute;
        z-index: 4;
        right: 2.3rem;
     }
    .content-photo{
        position: absolute;
        left: 20px;
        z-index: 15;
        justify-content: center;
        width: 30rem;
    }
    .content-photo img{
    z-index: 100;
    height: 40rem;
    width: 25rem;
    justify-self: center;
}

 .best-sn .best-img{
     width: 100%;
    padding: 5px 0;
    border-radius: 40px;
    height: 180px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
}



}





/*=================== SECTIONS ===============*/
.sect{
    height: 30rem;
    max-width: 1118px;
    margin: 0;
    padding: 0;
    background-color: var(--white-color);
}

.sect4{
    background-color: aquamarine;
}
.sect5{
    background-color: chocolate;
}
.sect6{
    background-color: yellow;
}
.sect7{
    background-color: purple;
}


/*========== footer ============*/
footer{
    width: 100%;
    bottom: 0;
    background: linear-gradient(to right,#00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
    z-index: 100;
}
.row{
    width: 85%;
    z-index: 100;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.col{
    flex-basis: 25%;
    padding: 10px;
}
.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}
.logo{
    width: 80px;
    margin-bottom: 30px;
}
.col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}
.email-id{
    width: fit-content;
    border-bottom:1px solid #ccc;
    margin: 20px 0;
}
ul li{
    list-style: none;
    margin-bottom: 12px;
}
ul li a{
    text-decoration: none;
    color: #fff;
}
form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}
form .far{
    font-size: 18px;
    margin-right: 10px;
}
form input{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}
form .subm{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
form button .fas{
    font-size: 16px;
    color: #ccc;
}
.social-icons .fab{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15PX;
    cursor: pointer;
}

hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.copyright{
    text-align: center;
}
.underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.underline span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving{
    0%{
        left: -20px;
    }
     100%{
        left: 100%;
    }
}

@media (max-width: 700px){
    footer{
        bottom: unset;
    }
    .col{
    flex-basis: 100%;
    padding: 10px;
}
.col:nth-child(2), .col:nth-child(3){
    flex-basis: 100%;
}



}


.contentENGLISH{
    position: relative;
    font-weight: 600;
    top: 40px;
    left: 30px;
}