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


:root {
  --font-family: "Quicksand", 
}


body{
    background:white;
}


ul{
    list-style: none;
}


a{
    text-decoration: none;
}


.inner{
    display: flex;
    justify-content: space-around;
    max-width: 1140px;
    margin: 0 auto;
    align-items: center;
    background:  #2d2d2d;
    max-width: 100%;
}


.list{
    display: flex;
    gap: 120px;
}


.link{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 375%;
    color: #fff;
    transition: 0.4s ease;
}


.logo{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 234%;
    color: #fff;
}


.link:hover{
    color: brown;
}


.hero{
     height: 747px;
     background: url(../HEAD.png)  center center/ cover;
     justify-content: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 100px;
     
}


.hero__title{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 96px;
    line-height: 78%;
    color: #fff;
}


.hero__btn{
    background: #fff; 
    border-radius: 12px;
    padding: 5px 30px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 375%;
    color: #000;
    transition: 0.4s ease;
}


.hero__btn:hover{
    transform: scale(1.05);
}


.car{
    max-width: 1140px;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 126px;

}


.car__title{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 94%;
    color: #303030;
}


.car__text{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #303030;
}


.car__title{
    margin-bottom: 37px;
}


.cars__title{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    margin-top: 100px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 188%;
    color: #303030;
}


.cars__text{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 200%;
    text-align: center;
    color: #303030;
}


.collection__title{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 188%;
    color: #303030;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 80px;
}







