body {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    overflow: hidden;
}

header {
    position: fixed;
    width: 80vw;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 600px;
    gap: 10%px;
    z-index: 1;
}

header h1 {
    font-size: 50px;
}

header nav ul {
    display: grid;
    grid-template-columns: repeat(3, 200px);
}

section {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, hsl(187, 100%, 10%) 86%, rgba(32,75,80,1) 100%);
    height: 100vh;
    position: relative;
}

section .list {
    width: 70vw;
    margin: auto;
    height: 100%;
    position: relative;
}

section .list::before {
    content: '';
    position: absolute;
    height: 200px;
    width: 100%;
    top: 50%;
    border-top: 1px solid #fff;
}

section .list .item {
    position: absolute;
    inset: 0;
}

section .list .item .car-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
}

section .list .item .car-img::before {
    content: '';
    position: absolute;
    background-color: #000;
    width: 100%;
    height: 100px;
    top: 150%;
    left: 50px;
    border: 50%;
    filter: blur(50px);
}

section .list .item .car-img img {
    width: 90%;
    transform: rotate(-30deg);
}

section .list .item .content {
    position: absolute;
    right: 100px;
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 20px;
}

section .list .item .content .car-information {
    font-weight: bold;
    transform: translateX(200px);
    transition: 0.7s;
    transition-delay: 0.3s;
    opacity: 0;
}

section .list .item .content h2 {
    font-size: 8em;
    line-height: 1em;
    font-family: "League Gothic";
    transform: translateX(200px);
    transition: 0.7s;
    transition-delay: 0.5s;
    opacity: 0;
}

section .list .item .content .description {
    color: #d9d9d9;
    font-size: 12px;
    text-align: right;
    max-width: 400px;
    transform: translateX(200px);
    transition: 0.7s;
    transition-delay: 0.7s;
    opacity: 0;
}

section .list .item .content .information {
    border-radius: 30px;
    height: 35px;
    width: 120px;
    text-transform: uppercase;
    border: 2px solid #000E10;
    background-color: #beff1b;
    color: #000;
    cursor: pointer;
    font-weight: bold;
    /* transform: translateX(200px);
    transition: 0.7s;
    transition-delay: 0.9s;
    opacity: 0; */
    
}

section .list .item .content .information:hover {
    color: #fff;
}

section .arrows {
    width: 70vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
}

section .arrows button {
    top: 60%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

section .arrows button img {
    width: 30px;
    margin-top: 4px;
    cursor: pointer;
}

section .arrows button:nth-child(1) img {
    transform: scale(-1);
}

section .arrows button:hover {
    background-color: #beff1b;
}

section .indicators {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    height: 200px;
    width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 15px;
}

section .number {
    font-size: 5em;
    font-family: "League Gothic";
}

section ul {
    display: flex;
    gap: 10px;
}

section ul li {
    width: 50px;
    height: 5px;
    background-color: #beff1b;
    border-radius: 5px;
    transition: 0.5s;
}

section ul .active {
    background-color: #fff;
}

section .list .item {
    transform: translateX(100vw);
    transition: 0.5s;
    opacity: 0;
}

section .list .item .car-img img {
    transform: rotate(0);
    transition: 0.5s;
    transition-delay: 0.3s;
}

section .list .item.active {
    transform: translateX(0);
    transition: 0.5s;
    opacity: 1;
}

section .list .item.active .car-img img {
    transform: rotate(-20deg);
}

section .list .item.active .content .car-information {
    transform: translateX(0);
    opacity: 1;
}

section .list .item.active .content h2 {
    transform: translateX(0);
    opacity: 1;
}

section .list .item.active .content .description {
    transform: translateX(0);
    opacity: 1;
}

/* section .list .item.active .content .information {
    transform: translateX(0);
    opacity: 1;
} */


