@import url('root.css');

.title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.title h1{
    font-size: 36px;
    font-weight: 500;
    color: #1e1e1e;
}

.title h2{
    font-size: 36px;
    font-weight: 500;
    color: #1e1e1e;
}

.title span{
    width: 50px; 
    height: 4px; 
    border: 10px;
    background-color: #007bff;
}

/* ------ STORY ------ */

.story{
    margin-top: 64px;
}

.story__content{
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.story__text h2{
    color: #007bff;
    font-size: 24px;
    font-weight: 500;
}

.story__text p{
    margin-top: 24px;
    color: #555555;
    font-size: 16px;
    font-weight: 500;
}

p span{
    color: #007bff;
}

.story__text h3{
    margin-top: 24px;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 500;
}

h3 span{
    color: #007bff;
}

/* ------ CERT ------ */

.cert{
    margin-top: 64px;
}

.cert__content{
    margin-top: 36px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
}

.cert__content a{
    width: 250px;
}

/* ------ QUESTION ------ */

.question{
    margin-top: 64px;
}

ul{
    list-style-type: disc;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

li{
    font-size: 16px;
    font-weight: 500;
    color: #007bff;
}

li span{
    color: #1e1e1e;
}

@media (max-width: 943px) {
    .truck{
        display: none;
    }
}