.fixedCosts{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 40px;
    gap: 20px;
}


.fixedCosts h5{
    color: #013783;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6em;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.itemCosts{
    font-size: 16px;
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

@media (max-width: 496px) {
    .itemCosts{
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: flex-start;
    }
}

.cost {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.descriptionCost p {
    font-weight: 600;
}

/* @media (max-width: 1200px) {
    .itemCosts {
     flex-direction: column;
     align-items: start;
     gap: 20px;
    }
  } */
