*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: sans-serif;
    color: white;
    list-style: none;
}
body{
   color: aliceblue;
   background-color: black;
}
.container{
    background-image: url('../images/background.jpg');
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
    height: 200px;
}
.header .logo{
    width: 350px;
    height: 180px;
}
.header .logo img{
    width: 100%;
    height: 100%;
}
.header ul:first-child{
    list-style: none;
    display: flex;
    align-items: center;
}
.header ul li{
    margin: 0px 12px;
}
.header ul li:last-of-type{
    margin: 0px 40px;
    font-size: 25px;
    position: relative;
}
.header ul li ul{
    /* display: none; */
    flex-direction: column;
    margin: 0px 0px;    
    background-color: rgba(0, 0, 0, 0.742);
    position: absolute;
    width: 300px;
    left: -275px;
    top: 50px;
    z-index: 10;
}
.header ul li ul li {
    margin: 0px;
    background-color: rgba(0, 0, 0, 0.36);
    width: 100%;
    padding: 0px 0px;
    text-align: right;
    text-transform: uppercase;
}
.header ul li ul li a{
    display: block;
    width: 100%;
    /* background-color: rgb(0, 149, 255); */
    padding: 20px 5px;
    font-size: 20px;
}
.header ul li ul li:last-of-type{
    margin: 0px;
    text-align: right;
}
.footer{
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.footer span{
    margin: 10px 10px;
    text-transform: capitalize;
    color: white;
    display: inline-block;
}
.footer h5{
    color: aliceblue;
    text-transform: capitalize;
}
.footer div{
    text-align: right;
    font-weight: bold;
    font-size: 10px;
    text-transform: capitalize;
}
.content{
    width: 80%;
    text-align: center; 
    margin: 150px auto;
    text-transform: uppercase;
    font-style: italic;
    animation: move 0.5s ease-in-out alternate;
    position: relative;
    color: white;
}
.hidden{
    display: none;
    background-color: red;
}
.contact_us{
    width: 70%;
    margin: auto;
    margin-top: 100px;
    /* background-color: rgb(30, 30, 37); */
    display: flex;
    justify-content: space-between;
}
.contact_us div h2{
    text-transform: uppercase;
    margin-bottom: 20px;
}
.contact_us div p{
    margin-top: 15px;
}
.story{
    background-color: rgb(13, 13, 13);
    width: 50%;
    position: relative;
    right: -45%;
    margin: 20px 0px;
    padding: 30px;
    border-radius: 10px;
}
.story h2{
    color: #0084ff;
    text-transform:capitalize;
    font-size: 30px;
    margin-bottom: 20px;
}
.story article{
    font-weight: bold;
    line-height: 30px;
    text-transform: capitalize;
    color: #ffffffe6;
    /* text-indent: 20px; */
}
.brands{
    width: 85%;
    margin: auto;
}
.brands h1{
    /* background-color: blueviolet; */
    text-transform: uppercase;
    margin: 20px 0px;
}
.brands .brands_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}
.brands .brands_box div{
    /* width: 45%; */
    flex-basis: 45%;
    height: 350px;
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    border: 1px solid #ccc;
}
.brands .brands_box div .name_brands{
    position: absolute;
    color: white;
    background-color: #272323ea;
    bottom: 0;
    width: 100%;
    height: 60px;
    z-index: 9;
    padding: 20px;
    text-transform: capitalize;
    font-size: 20px;
    border: none;
}
.brands .brands_box div img{
    width: 100%;
    display: block;
    margin: auto;
    height: 100%;
    position: relative; 
}
.brands div img{
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out all;
}
.brands div img:hover{
    transform: scale(1.1);
}
.division_brand h1{
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.division_brand .brand_img{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
    overflow: hidden;
}
.division_brand .brand_img div{
    width: 262px;
    height: 179px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    padding: 10px;
    overflow: hidden;
    margin: 10px 10px;
}
.division_brand .brand_img div img {
    width: 100%;
    height: 100px;
}
.carousel {
    width: 100%;
    height: fit-content;

}
.carousel-inner {
    width: 100%;
    height: inherit;
}
.carousel-inner img {
    height: 500px;
    width: 100%;
}
.carousel-control-next,.carousel-control-prev {
    width: 5%;
}
.clients .container{
    background-color: #f3f3f3;
    border-radius: 10px;
}
.client_slider {
    width: 80%;
    margin: auto;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
} 
.client_slider img {
    width: 18%;
    transition: transform 0.5s ease-in-out;
    margin: 0 30px;
    cursor: pointer;
}
.carousel-container {
    display: flex;
    width: 100%;
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
}
.carousel-prev {
    left: 10px;
}
.carousel-next {
    right: 10px;
}
.info_product {
    width: 90%;
    color: #1f1f1f;
    margin:30px auto;
    padding: 40px;
}
.close {
    position: absolute;
    right: 90px;
    font-size: 25px;
    cursor: pointer;
    color: #5f5f5f;
}
.info_product h3 {
    font-weight: bold;
    text-transform: uppercase;
    color: rgb(8, 117, 200);
    margin-bottom: 15px;
}
table{
    margin: auto;
}
.benefit{
    text-indent: 145px;
}
tr {
    display: block;
}
tr td {
    border: 1px solid #eee;
    padding: 5px;
    background-color: #302e2e;
    color: white;
    width: 200px;
    text-align: center;
}
@media screen and (max-width:1000px){
    .header{
        align-items: center;
        justify-content: center;
    }
    .header .logo{
        margin: auto;
    }
    .header ul li:nth-child(1){
       display: none;
    }
    .header ul li:nth-child(2){
       display: none;
    }
    .header ul li:nth-child(3){
        display: none;
    }
    .header ul li:nth-child(4){
        display: none;
    }
    .header ul li ul li:nth-child(1){
        display: block;
    }
    .header ul li ul li:nth-child(2){
        display: block;
    }
    .header ul li ul li:nth-child(3){
        display: block;
    }
    .header ul li ul li:nth-child(4){
        display: block;
    }
    .story{
        right: 0;
        margin: auto;
        width: 90%;
        line-height: 20px;
    }
    .footer{
        position: absolute;
        bottom: 0;
    }
    .contact_us{
        display: block;
    }
    .contact_us div{
        text-align: center;
        margin: 30px auto;
        background-color:#1f1f1f;
        padding: 10px;
        border-radius: 5px;
    }
    .brands .brands_box div{
        flex-basis: 100%;
    }
    .content{
        position: static;
    }
    .content h1{
        margin-top: 100%;
    }
}
@media screen and (max-width:980px){
    .footer{
        position: static;
    }
}



@keyframes move {
    0%{
        top: 350px;
    }
    100%{
        top: 0px;
    }
} 


