@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");*/
:root{
    --color-texto-slider: #090909;
    --padding: 20px 20px;
    --color-rojo: #b30013;
}
@media(min-width: 800px){
    :root{
        --padding: 20px 100px;
    }
}

/*** ESTILOS GENERALES ***/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 13px;

}


body {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    word-break: break-word;
    -webkit-font-smoothing: antialiased;
    font-family: "Inter", sans-serif;
    margin: 0;
    overflow-x: hidden;
    background: #eee;
}

*, body,
div {
    margin: 0;
    padding: 0;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* ============ Header ================= */
header{
    /*background-color: #ffffff;*/
    height: 120px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    padding: var(--padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .header_logo img{
        height: 80px;
    }


/*** BOTÓN HAMBURGUESA MENÚ ***/
.btn_menu{
    border: 2px solid var(--color-rojo);
    border-radius: 6px;
    cursor: pointer;
    height: 38px;
    transition: all 0.7s ease;
    width: 38px;
    z-index: 30;
}
@media(min-width: 800px){
    .btn_menu{
        display: none;
    }
}
.hamburger-menu {
    margin: auto;
    width: 25px;
    height: 25px;
    cursor: pointer;
}
.hamburger-menu .bar,
.hamburger-menu .bar:after,
.hamburger-menu .bar:before {
    width: 25px;
    height: 3px;
}
.hamburger-menu .bar {
    position: relative;
    transform: translateY(16px);
    background: var(--color-rojo);
    transition: all 0ms 250ms;
}
.hamburger-menu .bar.animate {
    background: rgba(255, 255, 255, 0);
}
.hamburger-menu .bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    background: var(--color-rojo);
    transition: bottom 250ms 250ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    background: var(--color-rojo);
    transition: top 250ms 250ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 250ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 250ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms 250ms cubic-bezier(0.23, 1, 0.32, 1);
}

/*** Nav ***/
.nav{
    background-color: rgba(0, 0, 0, 0.95);
    height: 100vh;
    display: flex;
    flex-direction: column;
    left: -240px;
    top: 0;
    padding: 80px 14px 0 50px;
    position: absolute;
    transition: width 0.5s ease, background-color 0.3s ease, left 0.5s ease;
    width: 240px;
    z-index: 100;
}
@media(min-width: 800px){
    .nav{
        background-color: unset;
        left: 0;
        position: relative;
        height: 120px;
        padding: 0;
        width: 90%;
    }
}
.nav-visible{
    left: 0;
}

/*** Menú ***/
.menu{
    /*background-color: magenta;*/
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
    .menu li{
        width: 100%;
    }
        .menu li a{
            font-family: "Roboto", sans-serif;
            color: #ffffff;
            font-size: 22px;
            font-weight: 300;
            text-decoration: none;
            display: block;
            padding: 10px 0;
            width: max-content;
            height: 100%;
        }
@media(min-width: 800px){
    .menu{
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
        height: 100%;
    }
    .menu li{
        width: max-content;
    }
    .menu li a{
        color: #090909;
        font-weight: 400;
    }
}

/*** Subrayado ***/
.underline {
    display: inline-block;
    position: relative;
    color: #ffffff;
}
.underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
.underline:hover::after {
    transform: scaleY(1);
    transform-origin: bottom left;
}
@media(min-width: 800px){
    .underline {
        color: #090909;
    }
    .underline::after {
        background-color: #090909;
    }
}

/* ============ Full Page Slider ================= */
.creative-fullpage--slider {
    background-color: #ffffff;
    z-index: 2;
    width: 100%;
    position: relative;
    flex-direction: column;
    height: 100vh;
    font-size: 16px;
    display: flex;
    clip-path: none !important;
}
.creative-fullpage--slider .slider-inner {
    background: #000;
    height: 100vh;
    position: relative;
}
.creative-fullpage--slider .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: left;
    flex-direction: column;
    overflow: hidden;
}
.creative-fullpage--slider .swiper-slide .slider-inner img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}
.creative-fullpage--slider .swiper-slide .slider-inner video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
    position: absolute;
    top: 35%;
    left: 100px;
    z-index: 1;
}
.creative-fullpage--slider .swiper-slide .slider-inner::after {
    content: "";
    position: absolute;
    width: 101%;
    height: 100%;
    top: 0;
    left: -1px;
    background-color: transparent;
    background-image: radial-gradient(
            at center right,
            #ffffff00 50%,
            #00000096 100%
    );
}
.swiper-slide .slider-inner .swiper-content .title-area .tag {
    color: var(--color-texto-slider);
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 0px;
}
.swiper-slide .slider-inner .swiper-content .title-area .title {
    margin-top: 50px;
    color: var(--color-texto-slider);
    font-size: 8vw;
    font-family: "Inter", sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 50px;
    margin-left: -12px;
    text-decoration: none;
}
.swiper-slide .slider-inner .swiper-content p.disc {
    font-size: 20px;
    width: 100%;
    margin-top: 15px;
    margin: 20px 0px 40px 0px;
    font-weight: 400;
    line-height: 32px;
    color: var(--color-texto-slider);
}
.creative-btn--wrap .creative-slide--btn {
    color: var(--color-texto-slider);
    margin-left: 18px;
    font-size: 1.4em;
    transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
    font-weight: 400;
    display: inline-flex;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    outline: none;
    outline-color: transparent;
    box-shadow: none;
    will-change: transform;
    backface-visibility: hidden;
}

.creative-btn--circle .circle {
    position: absolute;
    right: calc(100% - 10px);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    clip-path: circle(25% at 50% 50%);
    transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle .circle-fill {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 100%;
    background-color: var(--color-texto-slider);
    will-change: transform;
    transform: scale(0);
    z-index: 1;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1),
    background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle-icon {
    transform: translate(-100%, 0%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
    transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle-icon .icon-arrow {
    width: 20px;
    height: 20px;
    stroke: none;
    fill: #000;
}
.creative-btn--circle .circle-outline {
    fill: transparent;
    width: 10px;
    stroke: #ffffff;
}
.creative-btn--wrap .creative-slide--btn .creative-btn--label {
    margin-left: 4pt;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--wrap .creative-slide--btn .creative-btn__border {
    position: absolute;
    left: 4pt;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform-origin: right;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
    transform: translateX(18px);
}
.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
    transform: scale(0, 1);
}
.creative-btn--wrap .creative-slide--btn:hover {
    margin-left: 38px !important;
}
.creative-btn--wrap .creative-slide--btn:hover .circle {
    clip-path: circle(50% at 50% 50%);
}
.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
    transform: scale(1, 1);
}
.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
    transform: translate(0%, 0%);
    opacity: 1;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-next,
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    bottom: 7%;
    top: unset;
    transform: scale(1);
    transition: all 0.4s;
    background-color: var(--color-texto-slider);
    backdrop-filter: blur(20px);
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-next {
    right: 100px;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    left: 100px;
}
.swiper-container-h .slider-pagination-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: unset;
    right: unset;
    bottom: 80px;
    left: 50% !important;
    transform: translateX(-50%);
    width: 500px;
    z-index: 1;
}
.swiper-container-h .slider-pagination-area .slide-range {
    font-size: 16px;
    font-weight: 500;
    margin: 0 15px;
    color: #ffffff;
    line-height: 0;
    position: absolute;
    font-size: 20px;
}
.swiper-container-h .slider-pagination-area .slide-range.one {
    left: -50px;
}
.swiper-container-h .slider-pagination-area .slide-range.three {
    right: -50px;
}
.swiper-container-h .slider-pagination-area .swiper-pagination {
    bottom: 0 !important;
    width: 500px !important;
}
.swiper-container-h
.slider-pagination-area
.swiper-pagination
.swiper-pagination-progressbar-fill {
    background: #ffffff;
}
.swiper-container-h .swiper-button-next::after {
    content: "\f061";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    background: none;
    color: #ffffff;
    font-size: 30px;
}
.swiper-container-h .swiper-button-prev::after {
    content: "\f060";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    background: none;
    color: #ffffff;
    font-size: 30px;
}
.swiper-container-h .swiper-button-next:hover,
.swiper-container-h .swiper-button-prev:hover {
    background: #ffffff0d;
}

/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
    .creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
        width: 100%;
        text-align: center;
        left: 0;
    }
    .creative-fullpage--slider .swiper-container-h .swiper-button-next,
    .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
        height: 50px;
        width: 50px;
        line-height: 50px;
    }
    .swiper-container-h .slider-pagination-area {
        width: 200px !important;
    }
    .swiper-container-h .swiper-button-next::after,
    .swiper-container-h .swiper-button-prev::after {
        font-size: 30px;
    }
    .creative-fullpage--slider .swiper-container-h .swiper-button-next,
    .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
        background: #ffffff3b;
    }
    .swiper-container-h .slider-pagination-area .swiper-pagination {
        bottom: 0 !important;
        width: 200px !important;
    }
}

/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
    .swiper-slide .slider-inner .swiper-content .title-area .title {
        font-size: 64px;
    }
    .swiper-slide .slider-inner .swiper-content .title-area .tag {
        margin-bottom: 0px;
    }
    .swiper-slide .slider-inner .swiper-content p.disc {
        margin: 20px auto 20px auto;
        font-size: 16px;
        width: 95%;
    }
    .swiper-container-h .slider-pagination-area {
        display: none;
    }
    .swiper-slide .slider-inner .swiper-content p.disc br {
        display: none;
    }
}
/*** PÁGINA NO FOUND ***/
#nofound{
    position: relative;
    text-align: right;
    width: 100%;

}
#nofound img{
    object-fit: cover;
    width: 100%;
    height: calc(100vh - 120px);
}

/*** Footer ***/
footer{
    background-color: #d1d1d1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
    .item__footer{
        display: flex;
        flex-direction: column;
        color: #090909;
    }
        .item__footer img{
            height: 150px;
            width: 204px;
        }
        .item__footer p{
            font-size: 12px;
            font-weight: 400;
            padding-top: 5px;
        }
        .item__footer a{
            text-decoration: none;
            font-weight: 400;
            color: #090909;
            transition: all 0.4s cubic-bezier(0.75, 1, 0.25, 1);
        }
            .item__footer a:hover{
                color: var(--color-rojo);
            }
    .footer_titulo{
        font-size: 15px !important;
        font-weight: 600 !important;
    }
@media(min-width: 800px){
    footer{
        padding: 40px 50px;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }
    .item__footer:first-child{
        width: 40%;
    }
}

/*** Nuestros servicios ***/
.nuestros-servicios{
    background-image: url("../img/nuestros-servicios.jpg");
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}
    .section_item:last-child{
        padding: 20px 0;
    }
    .section_titulo{
        /*background-color: #30c70d;*/
        font-size: 24px;
        font-weight: 600;
        padding: 40px 0 5px 0;
        text-align: center;
        letter-spacing: 1px;
        width: 100%;
    }
    .section_item h1{
        font-family: "Roboto", sans-serif;
        font-size: 20px;
        text-align: center;
        padding: 0 20px;
    }
    @media(min-width: 800px){
        .section_titulo{
            font-size: 40px;
            padding: 40px 0 15px 0;
        }
        .section_item:last-child{
            padding: 40px 0;
        }
        .section_item h1{
            font-size: 28px;
        }
    }
    @media(min-width: 1400px){
        .section_titulo{
            font-size: 80px;
            padding: 100px 0 40px 0;
        }
        .section_item:last-child{
            padding: 70px 0;
        }
        .section_item h1{
            font-size: 50px;
        }
    }
    .linea{
        background-color: #090909;
        height: 2px;
        margin: 0 auto;
        width: 200px;
    }
    .separacion{
        height: 20px;
    }
    .section_texto{
        font-size: 15px;
        padding: 10px;
        line-height: 18px;
        text-align: center;
        margin: 0 auto;
    }
    @media(min-width: 800px){
        .linea{
            border-radius: 5px;
            height: 3px;
            width: 300px;
        }
        .section_texto{
            width: 60%;
        }
    }
    @media(min-width: 1200px){
        .section_texto, strong{
            font-size: 20px;
            font-weight: 300;
            line-height: 24px;
            width: 50%;
        }
    }
    @media(min-width: 1400px){
        .linea{
            border-radius: 5px;
            height: 3px;
            width: 500px;
        }
        .separacion{
            height: 60px;
        }
    }
    .contenedor__card_item{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    @media(min-width: 800px){
        .contenedor__card_item{
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }
    }
        .card_item{
            background-color: #FFFFFF;
            border: thin solid #dddddd;
            border-radius: 10px;
            width: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }
        .card_item_icono{
            border: 8px solid var(--color-rojo);
            border-radius: 50%;
            height: 120px;
            text-align: center;
            padding-top: 20px;
            width: 120px;
        }
            .card_item_icono span{
                color: #595959;
                font-size: 60px;
            }
        .card_item_titulo{
            color: #595959;
            font-size: 22px;
            padding: 20px 0;
        }
        .card_item_texto{
            color: #595959;
            text-align: justify;
            font-size: 14px;
            line-height: 18px;
        }
        .card_item_boton{
            background-color: #090909;
            color: #FFF;
            padding: 5px 30px;
            text-decoration: none;
            transition: box-shadow 0.3s ease-in-out;
            text-align: center;
        }
            .card_item_boton:hover{
                -webkit-box-shadow: 0 0 10px 5px rgba(0,0,0,0.14);
                -moz-box-shadow: 0 0 10px 5px rgba(0,0,0,0.14);
                box-shadow: 0 0 10px 5px rgba(0,0,0,0.14);
            }

/*** Conocenos un poco ***/
.section-conocenos{
    padding-bottom: 40px;
    position: relative;
}
.section-conocenos-item img{
    object-fit: cover;
    width: 100%;
    height: 50vh;
}
.section_texto-conocenos, .section_texto-conocenos-2{
    text-align: justify;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 0 30px;
}
@media(min-width: 800px){
    .section-conocenos{
        padding-bottom: 0;
    }
    .section-conocenos-item img{
        height: 100vh;
    }
    .section-conocenos-data{
        background-color: rgba(255, 255, 255, 0.85);
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .section_texto-conocenos{
        font-size: 18px;
        line-height: 30px;
        width: 90%;
        margin: 0 auto;
    }
}
@media(min-width: 1200px){
    .section_texto-conocenos{
        font-size: 22px;
        line-height: 32px;
        width: 80%;
        margin: 0 auto;
        padding-top: 40px;
    }
}
@media(min-width: 1400px){
    .section_texto-conocenos{
        font-size: 28px;
        line-height: 40px;
        width: 75%;
        margin: 0 auto;
        padding-top: unset;
    }
    .section_texto-conocenos-2{
        font-size: 22px;
        line-height: 40px;
        width: 80%;
        margin: 0 auto;
        padding-top: 0;
    }
}
.card_item_texto ul{
    list-style: none;
    padding-top: 10px;
}
.card_item_texto ul li{
    font-size: 15px;
    padding: 5px 0;
    text-align: left;
}

.section_texto ul{
    list-style: none;
    padding: 20px;
}
.section_texto ul li{
    font-size: 15px;
    padding: 5px 0;
    text-align: left;
}

@media(min-width: 1200px){
    .section_texto ul li{
        font-size: 18px;
    }
}
@media(min-width: 1400px){
    .section_texto ul li{
        font-size: 22px;
    }
}

/*** Cabecera ***/
.cabecera{
    height: 120px;
}

/*** Contáctanos ***/
.contactanos{
    background-image: url("../img/contactanos.jpg");
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}
.contenedor_contacto{
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
}
.contacto_item_texto{
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
}
.contacto_item_info{
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}
.contacto_item_info a{
    color: #090909 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
}
@media(min-width: 800px){
    .contenedor_contacto{
        flex-direction: row;
    }
    .contacto_item{
        padding: 20px 30px;
        width: 50%;
    }
}
@media(min-width: 1200px){
    .contacto_item_texto{
        font-size: 22px;
        line-height: 32px;
    }
    .contacto_item_info a{
        font-size: 18px;
        padding: 5px 0;
    }
}
.formulario-titulo{
    font-size: 18px;
    padding-bottom: 10px;
}
.formulario{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inputForm{
    border: thin solid #dddddd;
    border-radius: 8px;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
input{
    border: none;
    border-radius: 8px;
}
::placeholder{
    color: #dddddd;
    font-weight: 300;
}
.btnEnviar{
    background-color: var(--color-rojo);
    border-radius: 8px;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 15px;
    padding: 10px 0;
}
@media(min-width: 768px){
    .contenedor-formulario{
        padding: 40px 30px;
    }
}
@media(min-width: 1024px){
    .formulario-titulo{
        font-size: 24px;
        padding-bottom: 15px;
    }
    .contenedor-formulario{
        padding: 40px 70px;
    }
}
@media(min-width: 1200px){
    .formulario-titulo{
        font-size: 28px;
        padding-bottom: 20px;
    }
    .contenedor-formulario{
        padding: 40px 90px;
    }
}
@media(min-width: 1400px){
    .formulario-titulo{
        font-size: 30px;
        padding-bottom: 20px;
    }
    .contenedor-formulario{
        padding: 60px 100px;
    }
    label, .inputForm, textarea{
        font-size: 16px;
    }
}
@media(min-width: 1900px){
    .formulario-titulo{
        font-size: 40px;
    }
    .contenedor-formulario{
        padding: 80px 120px;
    }
    label, .inputForm, textarea{
        font-size: 20px;
    }
    label{
        padding-top: 30px;
    }
    label:first-child{
        padding-top: 10px;
    }
}

.formulario-return{
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    text-align: center;
}
.formulario-return .icon-ok, .formulario-return .icon-error{
    font-size: 50px;
}
.frmInfo{
    font-size: 18px;
}
.verde{
    color: #30c70d;
}
.rojo{
    color: #ff006c;
}

/*** Socios ***/
.contenedor_socios{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.contenedor_socios_item{
    background-color: #FFFFFF;
    border: thin solid #dddddd;
    border-radius: 10px;
    width: 280px;
    padding-bottom: 20px;
}
.socios_item_titulo{
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 500;
}
.socios_item_texto{
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    text-align: justify;
    padding: 5px 30px;
}
@media(min-width: 800px){
    .contenedor_socios{
        padding-bottom: 60px;
    }
    .socios_item_titulo{
        padding: 30px 0;
        font-size: 30px;
    }
    .socios_item_texto{
        font-size: 16px;
    }
}
@media(min-width: 1200px){
    .contenedor_socios_item{
        width: 380px;
    }
}
.fondosocios{
    background-image: url("../img/nuestrossocios.jpg");
    background-size: cover;
    background-position: center center;
}