*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins';
    overflow: hidden;
    /* background-color: #000; */
}

/* Typography */
h1{
    font-size: 50px;
    color: rgb(255, 214, 0);
}
a{
    text-decoration: none;
    color: rgb(96, 96, 96);
}
li{
    list-style: none;
    font-size: 20px;
}

/* Header */
header nav{
    /* border: solid 1px #000; */
    display: flex;
    flex-direction: row;
    gap: 250px;
    align-items: center;
    padding: 20px;
    width: 100%;
    justify-content: space-between;
}
ul{
    /* border: solid 1px #000; */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
}
.brand{
    font-size: 25px;
    color: rgba(96, 96, 96, 1);
    font-style: normal;
    font-weight: 500;
}
li a:hover{
    color: #000;
}
header button{
    background-color: #ffd600;
    color: #000;
}
header button:hover{
    background-color: transparent;
    color: rgba(96, 96, 96, 1);
}
button{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    border: solid 1px #000;
    background-color: transparent;
    font-weight: 500;
    color: rgba(96, 96, 96, 1);
    font-size:18px;
    cursor: pointer;
}
.zebra{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 90px;
    position: absolute;
    width: 250px;
    left: 1067px;
    top: 0px;
}
.zebra div{
    width: 80px;
    background-color: #ffd600;
    height: 100vh;
    z-index: 1;
}

/* Section */
section{
    display: flex;
    flex-direction: row;
    margin: auto;
    width: 90%;
}
section h1{
    font-size: 80px;
    line-height: 100px;
}
section button{
    gap: 20px;
    margin-top: 40px;
}
section button:hover{
    background-color: #ffd600;
    color: #000;
    gap: 30px;
    transition: all ease-out .1s;
    font-size: 20px;
}
.container-slider{
    overflow: hidden;
    max-width: 100%;
    position: absolute;
    right: -400px;
    top: 20%; 
    margin: auto;
    z-index: 2; 
    /* border: solid 1px rgb(255, 0, 0); */
}
.container-slider .slider-car{
    max-width: 80%;
}
.btnSlide{
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 300px;
    top: 80%;
    left: 64.5%;
}
.myslides{
    display: none;
}
.previous, .next {
    cursor: pointer;
    transition: 0.6s ease;
    user-select: none;
}

/* Footer */
footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px 20px 20px 80px;
    height: 300px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #000;
}
footer .desc{
    color: white;
    display: flex;
    flex-direction: row;
    gap: 80px;
}
.desc h4{
    font-weight: 100;
}
.desc h2{
    font-size: 40px;
}
.desc .descTxt{
    display: flex;
    flex-direction: column;
    gap: 20px;
}