@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


html, body
{
    background-color: #ffffff;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

.preview-trucks
{
    display: flex;
    box-sizing: border-box;
    /* padding: 2rem; */
    width: 100%;
    height: 80vh;
    /* flex-wrap: wrap-reverse;  */
    justify-content: space-around;
    align-items: center;
}
#trucks img
{
    width: 35rem;
}
#trucks-description
{
    box-sizing: border-box;
    padding-left: 3rem;
}
.fs-60
{
    color: #333333;
    font-size: 2.5rem;
    font-family: 'Inter';
    font-weight: bold;
}
.fs-18
{
    font-size: 0.5rem;
    font-family: 'Inter';
    color: rgba(51, 51, 51, 80%);
}

.features
{
    margin: 0px auto;
    width: 75%;
    height: max-content;
}

.title
{
    color: #333333;
    font-size: 1.5rem;
    font-family: 'Inter';
    font-weight: bold;
}

#title + p
{
    padding-bottom: 2rem;
}

.div-title
{
    text-align: center;
}

.flexitems
{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: transparent;
    gap: 1.5rem;
}
.flexitems .item
{
    width: 18rem;
    box-sizing: border-box;
    padding: 10px 0 0 10px;
    aspect-ratio: 1/ 0.6;
    background-color: #F4F6FA;
    border-radius: 10px;
    position: relative;
}

.item-description
{
    width: 80%;
    font-family: 'Inter';
    font-weight: bold;
    font-size: 0.5rem;
}

.text
{
    z-index: 99;
    font-family: 'Inter';
    color: rgba(51, 51, 51, 80%);
}

.item-description .image
{
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.logos
{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    height: 25rem;
}

.logos .second-part
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: max-content;
    padding: 2rem 0px;
} 

.logos .second-part img
{
    width: 4.2rem;
    height: auto;
}

.truckDriver-form
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    width: 100%;
    height: 33rem;
    background: url('./images/truckdriver.png') no-repeat;
    background-size: cover;
}

.truckDriver-form #form
{
    box-sizing: border-box;
    text-align: center;
    grid-column: 2/2;
    padding: 1rem 1rem;
    width: 24rem;
    height: 21rem;
    border-radius: 15px;
    background-color: white;
}
.truckDriver-form #form .title
{
    margin: 0.4rem;
    font-size: 1.8rem;
}
.truckDriver-form #form .fs-18
{
    font-size: 0.6rem;
}
.truckDriver-form #form .title,
.truckDriver-form #form .fs-18
{
    padding-left: 2rem;
    text-align: start;
    width: 80%;
}
.truckDriver-form #form input
{
    background-color: rgba(71, 98, 255, 8%);
    padding-left: 0.4rem;
    width: 80%;
    border: none;
    border-radius: 8px;
    height: 1.9rem;
    margin: 1.6rem auto;
    display: block;
}

.truckDriver-form #form .btn
{
    cursor: pointer;
    font-size: 0.8rem;
    width: 80%;
    height: 2rem;
}