/*Accesos directos*/
.access__container{
    margin: 0 0 40px 0;
}

.access__space {
    margin-bottom: 30px;
}

.access__link{
    display: block;
    text-decoration: none;
}

.access__link:hover .access__title{
    background: #C0E0D0;
    color: #fff;
    text-decoration: none;
}

.access__link:hover .access__title-text{
    color: #fff;
}

.access {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.access__icon {
    align-items: center;
    background: #fff;
    border: 2px solid #006633;
    border-radius: 50%;
    box-shadow: 0px 3.50537px 7.01075px 2.62903px rgba(250, 246, 246, 0.15), 0px 0.876344px 2.62903px rgb(0 0 0 / 30%);
    display: flex;
    flex: 0 0 80px;
    height: 80px;
    justify-content: center;
    width: 80px;
}

.access__title {
    align-items: center;
    background: #006633;
    border-radius: 0px 17px 17px 0px;
    display: flex;
    margin: 0 0 0 -40px;
    min-height: 65px;
    padding: 10px 30px 10px 50px;
    transition: 0.5s ease all;
    z-index: -1;
    /* width: auto;*/
    width: 100%;
}

.access__title-text {
    color: #f3f7f5;
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    padding: 0 0 5px 0;
    transition: 0.5s ease all;
}

@media(min-width: 768px){

    .access {
        justify-content: unset;
    }

    .access__title {
        left: 40px;
        margin: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: calc(100% - 40px);    
    }
}

/*Fin Accesos directos*/