#pole-flex{
    display: flex;
    flex-direction: column;
    gap: 4rem;
    background-color: rgb(222, 255, 255);
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.pole-assercar{
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pole-assercar img{
    width: 30%;
}

.pole-assercar p{
    background-color: var(--color-main);
    color: white;
    padding: 1rem;
    font-size: 1.5rem;
    border-radius: 10px;
}

#pole-container{
    display: flex;
    gap: 4rem;
    margin-bottom: 13rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pole {
    display: flex;
    flex-direction: column;
    border-top-right-radius: 20px;
    border-top: var(--color-main) solid 3px;
    border-right: var(--color-main) solid 3px;
    padding: 2rem 2rem 0 0;
    gap: 1rem;
    position: relative;
    align-items: flex-start;
    max-width: 15%;
    min-width: 188px;
}

.pole>p {
    position: absolute;
    top: -1rem;
    left: 0;
    background-color: rgb(222, 255, 255);
    padding-right: 1rem;
    color: var(--color-second);
    font-size: 1.5rem;
    font-style: italic;
    text-transform: uppercase;
}

.pole h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--color-second);
}

.pole li {
    list-style: inside;
    margin-bottom: 1rem;
}

.pole .poleContact p{
    font-size: 1.5rem;
}

#pole-container a.poleContact-mail{
    margin-bottom: 2rem;
}

@media only screen and (max-width:650px) {
    .pole{
        width: 100%;
    }

    .pole.pole-assercar{
        width: inherit;
    }
}