
div.marker {
    background: var(--colorBackground);
    flex-direction: column;
    align-items: center;
    padding: 2em 0;
    display: flex;
    width: 100%;
    margin: 0;
}
.marker #services .content {
    padding: 0;
}
section {
    margin-top: 3em;
}

#stacionar {
    box-shadow: 0px 21px 20px 1px rgba(0, 0, 0, 0.1);
}
#stacionar h1 {
    font-size: 36px;
    font-weight: 400;
    text-align: left;
}
#stacionar .container {
    gap: 1em;
    padding-bottom: 1em;
}
#stacionar .top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 5em;
}
#stacionar .top .item {
    display: flex;
    align-items: center;
    border-radius: var(--border-radius);
    background-color: var(--colorMain);
    padding: 1em;
    gap: 1em;
}
#stacionar .top .item .img {
    padding: 17px;
    height: 70px;
    width: 70px;
    background-color: #fff;
    border-radius: 100px;
}
#stacionar .top .item img {
    height: 36px;
    width: 36px;
}
#stacionar .top .item p {
    color: #fff;
    font-size: 16px;
}
#stacionar .info {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1em;
}
#stacionar .info .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
}
#stacionar .info p {
    color: #686868;
    font-size: 20px;
    font-weight: 400;
}
#stacionar .info a {
    text-decoration: none;
    text-align: center;
    background-color: var(--colorMain);
    border-radius: var(--border-radius);
    width: max-content;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    padding: 1em 2em;
    border: 0;
}
#stacionar .info a:hover {
    cursor: pointer;
    background-color: var(--colorMainHover);
}