
.main__content__services{
    width: 100%;
    display: flex;
    flex-direction: column;
}
/* Titulo */
.content__services__title {
    width: 100%;
    display: block;
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
    
}
.services__title__txt {
    /*font-size: 16px;*/
    font-size: 14pt;
    font-weight: bold;
}

/* Comienza cada servicio */
.content__services__items {
    background-color: var(--template_color_gray);
    display: inherit;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.services__items__sparator {
    width: 2px;
    /*height: 100%;*/
    height: 11rem;
    background-color: #2e406b;
}
.content__services__items img {
    width: 60%;
    border-radius: 8px;
}
.services__items__one,
.services__items__two,
.services__items__three,
.services__items__four {
    width: calc(100% / 7);
    display: inherit;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.items__one__txt,
.items__two__txt,
.items__three__txt,
.items__four__txt {
    max-width: 11rem;
    width: 100%;
    font-family: Rubik;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: center;
    color: var(--template_color_blue_gray);
    margin-top: 38px;
    
}

.items__one__img,
.items__two__img,
.items__three__img,
.items__four__img {
    margin-bottom: 1rem;
}

.items__one__btn,
.items__two__btn,
.items__three__btn,
.items__four__btn {
    width: 40px;
    height: 40px;
    background-color: #c1c1c1;
    margin-top: 1rem;
    font-size: 25px;
    border: none;
    border-radius: 50%;
    box-shadow: 0px 2px 6px 0px grey;
    text-decoration: none;
    text-align: center;
    color: var(--template_color_gray_dark);
}
.items__one__btn:hover,
.items__one__btn:focus,
.items__two__btn:hover,
.items__two__btn:focus,
.items__three__btn:hover,
.items__three__btn:focus,
.items__four__btn:hover,
.items__four__btn:focus {
    box-shadow: 0px 2px 7px 0px var(--template_color_gray_dark);
    text-decoration: none;
    color: var(--template_color_gray_dark);
}
.items__one__btn:focus-visible,
.items__two__btn:focus-visible,
.items__three__btn:focus-visible,
.items__four__btn:focus-visible { outline: 0; }


.content__img__circle{
    width: 250px;
    height: 250px;
    border: solid 1px var(--template_color_blue_gray);
    border-radius: 50%;
    justify-content: center;
    display: flex;
    align-items: center;
}

.content__service__one{
    margin-left: 50px;
}
.content__service__two{
    margin-right: 50px;
}

.text__description__service{
    font-family: Rubik;
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
}


@media screen and (max-width:1920px){
    .services__items__sparator {
        height: 17rem;
    }
    .services__title__txt {
        font-size: 20pt;
    }
}

@media screen and (max-width:1600px){
    .services__items__sparator {
        height: 16rem;
    }
}

@media screen and (max-width:1366px){
    .services__items__sparator {
        height: 15rem;
    }
}

@media screen and (max-width:1200px){
    .services__items__sparator {
        height: 14rem;
    }
    .services__title__txt {
        font-size: 14pt;
    }
}

@media screen and (max-width:820px){
    .services__items__sparator {
        height: 13rem;
    }
}

@media screen and (max-width:768px){
    .services__items__sparator {
        height: 30rem;
        
    }
}


@media screen and (max-width:640px){
    .content__services__items {
        flex-direction: column;
    }
    
    .services__items__one, .services__items__two, .services__items__three, .services__items__four {
        width: 40%;
    }
    .items__one__txt, .items__two__txt, .items__three__txt, .items__four__txt { font-size: 16px; font-weight: 500; }
    .services__items__sparator {
        height: 2px;
        width: 50%;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .content__img__circle{
        width: 200px;
        height: 200px;
        border: solid 1px var(--template_color_blue_gray);
        border-radius: 50%;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    .content__service__one{
        margin-left: 0px;
    }
    .content__service__two{
        margin-right: 0px;
    }
    
}





