.containerIntranet {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: auto;
    padding-bottom: 50px;
}

.containerIntranet>p {
    display: flex;
    font-size: 1em;
    font-weight: bold;
    color: white;
    background: #31682F;
    border: none;
    position: relative;
    padding: 30px;
    margin: 15px;
    border-radius: 0 5px 5px 5px;
    overflow: hidden;
    /* transition: border-radius 0s; */
    transition: 0s;
    width: 200px;
    height: 100px;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.containerIntranet>p>a {
    text-decoration: none;
    color: #fff;
    width: 200px;
    height: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerIntranet>p:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-style: solid;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    width: 0;
    border-width: 12px;
    border-color: #f9f9f9 rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.3) #f9f9f9;
    border-radius: 0 0 5px 0;
    transition: 0.3s;
}

.containerIntranet>p:hover {
    border-radius: 5px;
    transition-delay: .1s;
}

.containerIntranet>p:hover:before {
    border-width: 0px;
}

@media (max-width: 500px) {
    .containerIntranet>p {
        width: 170px;
    }
}