:root {
    --primario: #e75300;
    --primario_oscuro: #0e0e0e;
    --transparencia: lightgreen;
    --secundario: #141414;
    --familia_fuente: 'Prompt', sans-serif;
    --titulo: "Prompt", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: #141414;
}

a,
a:active,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

.wow {
    opacity: 0;
}

/*******Global********/
.titulo {
    font-family: var(--titulo);
    color: #fffefe;
    line-height: 60px;
    font-size: 60px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.titulo span {
    color: var(--primario);
}

.subtitulo {
    font-size: 22px;
    color: var(--primario);
    font-family: var(--titulo);
    font-style: italic;
    text-transform: uppercase;
}

.subtitulo span {
    color: var(--primario);
}

.custom-button {
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid var(--primario);
    font-family: var(--titulo);
    background-color: transparent;
    height: 64px;
    gap: 12px;
}

.custom-button span img {
    width: 30px;
    object-fit: cover;
}

.custom-button::before {
    border-radius: 10px;
    background-color: var(--primario);
}

.custom-button:focus,
.custom-button:active,
.custom-button:hover {
    color: #FFF;
}

.full {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.centrado {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.centrado-absoluto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.no-repeat {
    background-repeat: no-repeat;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.animation {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.hover-effect {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hover-effect::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hover-effect:hover:before,
.hover-effect:focus:before,
.hover-effect:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.row::before,
.row::after {
    content: unset;
}

.limitar {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* ****** */
/* Banner */
/* ****** */
.banner {
    height: 100vh;
    background-size: cover
}

.banner .opacidad {
    background-color: #141414;
    opacity: 0.85;
}

.banner .gradient {
    height: 50%;
    bottom: 0;
    top: auto;
    background-image: linear-gradient(0deg, #141414 0%, rgba(20,20,20,0.002) 100%, rgba(20,20,20,0) 100%);
}

.banner .raton {
    transform: translateX(-50%);
    left: 50%;
    bottom: 33px;
    cursor: pointer;
    
    z-index: 2;
}

.banner .raton img {
    height: 55px;
    object-fit: contain;
}

.banner .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.banner .container .logo-banner {
    width: 100%;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* ******* */
/* Gallery */
/* ******* */
.sobre-galeria {
    margin-top: 20px;
}

.galeria {
    margin-top: 110px;
}

.galeria .titulo {
    margin-bottom: 110px;
}

.galeria .titulo span {
    color: var(--primario);
}

.galeria .custom-button {
    display: flex;
    margin: 0 auto;
    width: 370px;
    margin-top: 130px;
}

.gallery>div {
    display: flex;
    column-gap: 30px;
    row-gap: 30px;
}

.gallery>div>div {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.gallery-item {
    height: 430px;
    width: calc((100vw - 180px) / 6);
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.gallery>div>div:nth-child(2n) .gallery-item {
    height: 400px;
}

/*
.gallery-item:nth-child(6n),
.gallery-item:nth-child(6n - 1),
.gallery-item:nth-child(6n - 2) {
    height: 400px;
}
*/

.gallery-item .item-img {
    object-fit: cover;
}

.gallery-item .text-container {
    width: 100%;
    padding: 50px 20px;
    bottom: 0;
    opacity: 0;
    transition: opacity ease 0.3s;
}

.gallery-item:hover .text-container {
    opacity: 1;
}

.gallery-item .opacidad {
    opacity: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.851) 0%, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.102) 100%);
}

.gallery-item:hover .opacidad {
    transition: opacity ease 0.3s;
    opacity: 1;
}

.gallery-item .escudo {
    height: 85px;
    object-fit: contain;
}

.gallery-item .nombre {
    font-size: 18px;
    color: #FFF;
    font-weight: 500;
    font-family: "Prompt";
}

.gallery-item .equipo {
    font-size: 16px;
    color: var(--primario);
    font-weight: 300;
    font-family: "Prompt";
}

/* *********** */
/* bloquetexto */
/* *********** */
.bloquetexto {
    margin-top: 160px;
    height: 1016px;
    display: flex;
    align-items: center;
}

.bloquetexto .logo-text {
    width: 470px;
    object-fit: contain;
    margin-bottom: 70px;
}

.bloquetexto .titulo {
    color: var(--primario);
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-size: 65px;
}

.bloquetexto .titulo span {
    line-height: 105px;
    color: #FFF;
    font-family: var(--cursiva);
}

.bloquetexto p {
    font-style: italic;
    font-family: "Prompt";
    font-size: 22px;
    line-height: 34px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 90px;
}

.bloquetexto .custom-button {
    background-color: var(--primario);
    border-radius: 32px;
    width: 370px;
    display: flex;
    margin: 0 auto;
}

.bloquetexto .custom-button::before {
    border-radius: 32px;
    background-color: var(--secundario);
}

.bloquetexto .img-container {
    overflow: hidden;
    width: 50%;
    right: 0;
}

.bloquetexto .numero {
    font-size: 700px;
    font-family: var(--titulo);
    font-weight: bold;
    font-style: italic;
    opacity: 0.15;
    user-select: none;
    top: -12%;
    left: 6%;
}

.bloquetexto .globo {
    background-color: var(--primario);
    clip-path: circle(50% at 50% 50%);
    width: 1016px;
    left: 15%;
}

.bloquetexto .jugador {
    height: 785px;
    left: 5%;
    bottom: 0;
}

.bloquetexto .gradient {
    width: 100%;
    height: 117px;
    bottom: 0;
    background-image: linear-gradient(0deg, #141414 0%, rgba(20,20,20,0.002) 100%, rgba(20,20,20,0) 100%);
}

/* ******* */
/* Banner2 */
/* ******* */
.banner2 {
    padding-top: 80px;
    padding-bottom: 200px;
    margin-top: 350px;
}

.banner2 .fondo {
    background-color: var(--primario);
    background-blend-mode: multiply;
    opacity: 0.4;
}

.banner2 .row {
    display: flex;
    align-items: center;
}

.banner2 .logo-banner2 {
    object-fit: contain;
    width: 397px;
}

.banner2 .titulo {
    margin-bottom: 10px;
}

.banner2 .opacidad {
    opacity: 0.5;
}

.banner2 .corte {
    bottom: -1px;
}

.banner2 .gradient {
    background-image: linear-gradient(0deg, rgba(20,20,20,0) 0%, rgba(20,20,20,0.002) 0%, #141414 100%);
    top: 0;
}

/* ******** */
/* Nosotros */
/* ******** */
.nosotros {
    background-color: #FFF;
    padding-top: 160px;
    padding-bottom: 240px;
}

.nosotros .fondo {
    background-size: cover;
    background-position-y: bottom;
}

.nosotros .gradient {
    top: 0;
    height: 183px;
    background-image: linear-gradient(0deg, rgba(255,255,255,0) 0%, #ffffff 100%);
}

.nosotros .forbes {
    width: 364px;
    object-fit: contain;
    margin-bottom: 20px;
}

#nosotros {
    border: solid 2px var(--primario);
    padding: 7px;
    border-radius: 10px;
    background-clip: content-box;
    background-image: linear-gradient(rgba(255,255,255, 0.8), rgba(255,255,255, 0.8));
    height: 486px;
    width: 486px;
}

.nosotros .text-container, .nosotros a {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--primario);
    font-family: var(--titulo);
}

.nosotros .text-container {
    padding: 0 45px;
}

.nosotros .splide__track {
    height: 100%;
}

.nosotros .splide__list {
    height: 100%;
    align-items: center;
}

.nosotros .splide__pagination__page {
    background: var(--primario);
    width: 10px;
    height: 10px;
    opacity: 0.2;
}

.nosotros .splide__pagination__page.is-active {
    opacity: 1;
    transform: scale(1);
}

.nosotros .splide__pagination {
    bottom: 20px;
}

.nosotros .titulo {
    color: #333;
    margin-bottom: 45px;
}

.nosotros p {
    font-size: 16px;
    line-height: 24px;
}

.nosotros .tenemos {
    margin-top: 50px;
}

.nosotros .tenemos li {
    display: flex;
    gap: 20px;
    color: var(--primario);
    font-size: 34px;
    font-weight: 600;
    font-family: var(--titulo);
}

.nosotros .tenemos li + li {
    margin-top: 30px;
}

.nosotros .tenemos li img {
    width: 40px;
    object-fit: contain;
}

.nosotros .jugadores-fondo {
    bottom: 0;
    top: auto;
    width: 53%;
}

/* ******* */
/* Banner3 */
/* ******* */
.banner3 {
    padding-top: 200px;
    padding-bottom: 220px;
    background-color: var(--secundario);
}

.banner3 .fondo {
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: right;
    background-position-y: bottom;
    opacity: 0.149;
}

.banner3 .titulo {
    margin-bottom: 30px;
}

.banner3 .titulo span {
    color: var(--primario);
}

.banner3 .subtitulo {
    color: #FFF;
    margin-bottom: 100px;
}

.banner3 .cards {
    display: flex;
    gap: 30px;
}

.banner3 .card {
    flex-basis: calc(100% / 3);
    height: 370px;
    border-radius: 10px;
    border: 2px solid var(--primario);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    font-weight: 600;
    color: #FFF;
    font-size: 22px;
    font-family: var(--titulo);
}

.banner3 .card .opacidad {
    background-color: var(--secundario);
    opacity: 0.5;
}

.banner3 .card .big {
    font-size: 80px;
    color: var(--primario);
}

.banner3 .card:nth-child(even) {
    border: 2px solid #FFF;
}

/* ******* */
/* Banner4 */
/* ******* */
.banner4 {
    padding-top: 160px;
    overflow: hidden;
}

.banner4 .fondo {
/*    height: 1055px;*/
    height: 100%;
    
    background-size: cover;
    opacity: 0.1;
}

.banner4 .opacidad {
    height: 100%;
    
    opacity: 0.2;
}

.banner4 .corte {
    z-index: 1;
    bottom: -1px;
}

.banner4 .deportista-franja {
    height: 736px;
    
    display: flex;
    align-items: flex-end;
}

.banner4 .deportista {
    max-height: 100%;
    width: 90%;
    
    object-fit: contain;
}

.banner4 .titulo {
    margin-bottom: 100px;
}

.banner4 .titulo span {
    color: var(--primario);
}

#banner4 {
    margin-top: 50px;
    z-index: 1;
}

.banner4 .card {
    background-image: linear-gradient(rgba(255,255,255,0.8),rgba(255,255,255,0.8));
    border-radius: 10px;
    padding: 50px 20px 50px 115px;
    height: 220px;
}

.banner4 .card + .card {
    margin-top: 35px;
}

.banner4 .card-icon {
    width: 70px;
    object-fit: contain;
    left: 25px;
    top: 25px;
}

.banner4 .card h3 {
    font-size: 23px;
    color: var(--primario);
    font-weight: 600;
    font-family: var(--titulo);
    margin-bottom: 25px;
    margin-top: 0;
}

.banner4 .card p {
    font-size: 16px;
}

.banner4 .splide__pagination {
    bottom: -30px;
}

.banner4 .splide__pagination__page {
    width: 10px;
    height: 10px;
    background-color: #FFF;
    opacity: 0.2;
}

.banner4 .splide__pagination__page.is-active {
    transform: scale(1);
    opacity: 1;
}

.banner4 .splide__arrow {
    top: -16px;
    width: 45px;
    height: 45px;
    transform: translateY(-100%);
    background: linear-gradient(rgba(255,255,255,0.3),rgba(255,255,255,0.3));
}

.banner4 .splide__arrow svg {
    fill: #FFF;
    width: 25px;
    height: 25px;
}

.banner4 .splide__arrow--prev {
    right: 70px;
    left: auto;
}

.banner4 .splide__arrow--next {
    right: 0;
}

/* ********* */
/* Servicios */
/* ********* */
.servicios {
    padding-top: 240px;
    padding-bottom: 250px;
}

.servicios .titulo {
    margin-bottom: 15px;
}

.servicios .subtitulo span,
.servicios .titulo span {
    color: var(--primario);
}

.servicios .subtitulo {
    color: #FFF;
    margin-bottom: 80px;
}

.servicios h3 {
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    background-color: #020202;
    padding: 10px 20px;
    color: #FFF;
    font-family: var(--titulo);
    font-weight: 600;
}

.servicios h3 img {
    width: 30px;
    object-fit: contain;
}

.servicios ul {
    border-radius: 10px;
    border: 2px solid var(--primario);
    height: calc(100% - 90px);
    padding: 22px 45px;
}

.servicios ul li {
    display: flex;
    justify-content: start;
    gap: 27px;
    color: #FFF;
    font-size: 16px;
}

.servicios ul li + li {
    margin-top: 15px;
}

.servicios ul li img {
    width: 22px;
    object-fit: contain;
}

/* ******* */
/* Banner5 */
/* ******* */
.banner5 {
    padding-top: 220px;
    padding-bottom: 220px;
    overflow: hidden;
}

.banner5 .fondo {
    opacity: 0.1;
    background-size: cover;
}

.banner5 .gradient {
    background-image: linear-gradient(0deg, #141414 0%, rgba(20,20,20,0.002) 100%, rgba(20,20,20,0) 100%);
    height: 200px;
    height: 50%;
    bottom: 0;
    top: auto;
}

.banner5 .img-container {
    width: 800px;
    height: 800px;
}

.banner5 .img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner5 .social-grafic {
    opacity: 0.1;
    top: -160px;
    left: -185px;
    transform: rotate(330deg);
}

.banner5 .social-media {
    opacity: 0.2;
    bottom: -100px;
    right: -230px;
    transform: rotate(340deg);
}

.banner5 .thumbnail {
    padding: 0;
    border: unset;
    height: 430px;
    border-radius: 10px;
    overflow: hidden;
}

.banner5 .splide__slide video {
    height: 100%;
    width: 100%;
}

.banner5 .splide__slide video[poster] {
    object-fit: cover;
}

.banner5 .subtitulo {
    color: #FFF;
    margin-bottom: 80px;
    margin-top: 20px;
}

.banner5 .splide__arrow--next {
    right: -70px;
}

.banner5 .splide__arrow {
    background: rgba(230, 84, 0, 0.23);
    width: 45px;
    height: 45px;
}

.banner5 .splide__arrow svg {
    fill: var(--primario);
    width: 20px;
    height: 20px;
}

.banner5 .splide__arrow--prev {
    left: -70px;
}

.banner5 .pantalla-play {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000080;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    cursor: pointer;
    z-index: 2;
}

.banner5 .pantalla-play img {
    max-width: 30%;
    cursor: pointer;
}

/* ********* */
/* Historico */
/* ********* */
#historico .splide__slide {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.historico {
    padding-top: 200px;
    padding-bottom: 150px;
}

.historico .titulo {
    margin-bottom: 80px;
}

.historico .fecha {
    border-radius: 10px;
    background-color: #020202;
    width: 170px;
    height: 46px;
    color: #FFF;
    font-weight: 500;
    font-family: var(--titulo);
    font-size: 18px;
    margin-bottom: 15px;
}

.historico .drop-arrow {
    width: 100%;
    margin-bottom: 40px;
}

.historico .drop-arrow::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--primario);
    display: block;
    position: absolute;
    z-index: -1;
}

.historico .drop-arrow img {
    width: 22px;
    height: 22px;
    border-radius: 11px;
    background-color: var(--primario);
    padding: 5px;
}

.historico .jugador {
    width: 100%;
    background-image: linear-gradient(to bottom, transparent 30%, var(--primario) 0%);
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
    height: 280px;
}

.historico .jugador img {
    object-fit: contain;
    object-position: bottom;
    width: 150px;
}

.historico .nombre {
    color: #FFF;
    font-size: 24px;
    font-family: var(--titulo);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 50px;
}

.historico .nombre span {
    color: var(--primario);
}

.historico .info {
    width: 195px;
    border-radius: 10px;
    background-color: #020202;
    font-weight: 300;
    font-family: "Prompt";
    padding: 15px;
    font-size: 16px;
    color: #FFF;
}

.historico .info .equipo:not(:first-child):not(:last-child) {
    margin-top: 20px;
}

.historico span {
    color: var(--primario);
}

.historico .info .equipo + .contrato {
    margin-top: 20px;
}

/* ********* */
/* Jugadores */
/* ********* */
.jugadores {
    padding-top: 170px;
    padding-bottom: 170px;
    overflow: hidden;
}

.jugadores .corte {
    bottom: -1px;
    top: auto;
    z-index: 1;
}

.jugadores .img-container {
    opacity: 0.1;
    background-position: center center;
    background-size: contain;
    left: 0;
}

.jugadores .titulo {
    color: var(--primario);
    font-size: 50px;
    font-family: var(--cursiva);
    line-height: 105px;
}

.jugadores .titulo span {
    color: #FFF;
    font-size: 60px;
    display: block;
}

.jugadores .subtitulo {
    text-align: center;
}

.jugadores .row > div {
    height: 500px;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.jugadores .grupo {
    width: 45%;
    height: 100%;
    left: 50px;
    bottom: 0;
}

.jugadores .grupo img {
    position: absolute;
    object-fit: contain;
}

.jugadores .grupo img.jug1 {width: 970px;bottom: 0;right: 0;}
.jugadores .grupo img.jug2 {width: 500px;bottom: 0;left: 15%;z-index: 1;}
.jugadores .grupo img.jug3 {width: 400px;right: 170px;bottom: 0;z-index: 1;}
.jugadores .grupo img.jug4 {width: 600px;right: 0;bottom: 0;z-index: -1;}

footer {
    margin-top: -2px;
    padding-top: 60px;
    padding-bottom: 90px;
    background-color: var(--primario);
}

footer .logo-blanco {
    width: 350px;
    display: block;
    margin: 0 auto 40px;
}

footer .custom-button {
    display: flex;
    margin: 0 auto;
    width: 370px;
    border-radius: 32px;
    background-color: var(--secundario);
}

footer .custom-button::before {
    border-radius: 32px;
    background-color: var(--primario_oscuro);
}


/* -- row -- */
.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.row-eq-height.container:before,
.row-eq-height.container:after,
.row-eq-height.row:before,
.row-eq-height.row:after {
    content: normal;
}



.separa-5{
    height: 5px;
}

.separa-10{
    height: 10px;
}

.separa-20{
    height: 20px;
}

.separa-40{
    height: 40px;
}

.separa-30{
    height: 30px;
}

.separa-50{
    height: 50px;
}


.relative{
    position: relative;
}

.absolute{
    position: absolute;
}

.centrado{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.centrado.izquierda{
    justify-content: flex-start;
}

.centrado.derecha{
    justify-content: flex-end;
}

.animacion{
    transition: all 300ms linear!important;
    -webkit-transition: all 300ms linear!important;
    -moz-transition: all 300ms linear!important;
    -ms-transition: all 300ms linear!important;
    -o-transition: all 300ms linear!important;
}

.limitar{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.limitar_1{
    -webkit-line-clamp: 1; /* number of lines to show */
}

.limitar_2{
    -webkit-line-clamp: 2; /* number of lines to show */
}

.limitar_3{
    -webkit-line-clamp: 3; /* number of lines to show */
}

.limitar_4{
    -webkit-line-clamp: 4; /* number of lines to show */
}

.limitar_5{
    -webkit-line-clamp: 5; /* number of lines to show */
}

.limitar_6{
    -webkit-line-clamp: 6; /* number of lines to show */
}

.limitar_7{
    -webkit-line-clamp: 7; /* number of lines to show */
}

.limitar_8{
    -webkit-line-clamp: 8; /* number of lines to show */
}

.limitar_9{
    -webkit-line-clamp: 9; /* number of lines to show */
}

.limitar_10{
    -webkit-line-clamp: 10; /* number of lines to show */
}

.caja{
    overflow: hidden;
}

/* whatsapp */
.floating-icons {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 99;
}

.floating-icons a {
    display: inline-block;
    transition: all .2s ease-in-out;
}

a:hover, 
a:visited, 
a:link, 
a:active { 
    text-decoration: none;
}

.floating-icons img {
    max-width: 48px;
    height: auto;
}

.floating-icons a:hover {
    transform: scale(0.9);
}

.zona-video {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    
    background: #00000090;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    z-index: 10;
}

.zona-video .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    
    z-index: 10;
    opacity: 1;
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: none;
    
    margin: 0;
    padding: 0;
}

.zona-video .close-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.zona-video .close img {
    width: 100%;
}

.zona-video video {
    height: auto;
    width: 60vw;
    
    z-index: 5;
}

@media (min-width: 1200px) {
    .banner  .container {
        width: 100%;
        max-width: 1335px;
    }

    .jugadores .container {
        width: 1200px;
    }
}

@media (max-width: 1200px) {
    .banner2 .logo-banner2 {
        width: 100%;
    }

    #nosotros {
        width: auto;
    }
    
    .gallery>div>div .gallery-item {
        height: 350px;
    }
    
    .gallery>div>div:nth-child(2n) .gallery-item {
        height: 380px;
    }

    .gallery-item {
        width: calc((100vw - 90px) / 3);
    }
    
    /* ******* */
    /* Banner5 */
    /* ******* */
    .banner5 {
        padding-bottom: 0px;
    }
}

@media (max-width: 992px) {
    .titulo {
        text-align: center;
        font-size: 45px;
    }

    .subtitulo {
        text-align: center;
    }
    
    .zona-video video {
        width: 80vw;
    }

    /* ******* */
    /* bloquetexto */
    /* ******* */
    .bloquetexto .titulo {
        font-size: 45px;
    }
    
    .bloquetexto .logo-text {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 80%;
    }
    
    .bloquetexto {
        height: auto;
        margin-top: 80px;
    }

    .bloquetexto p {
        text-align: center;
    }
    
    .contenedor-medio-globo {
        position: relative;
        overflow: hidden;
    }
    
    .bloquetexto .medio-globo {
        position: absolute;
        background-color: var(--primario);
        width: 720px;
        bottom: -255px;
        
        border-top-left-radius: 1000px;
        border-top-right-radius: 1000px;
    }
    
    .bloquetexto .medio-globo::after {
        content: '';
        display: block;
        padding-top: 100%;
    }
    
    .bloquetexto .jugador {
        max-width: 100%;
        max-height: 550px;
        display: block;
        margin: auto;
        position: relative;
        bottom: 0;
        left: 0;
    }
    
    .bloquetexto .gradient {
        position: absolute;
        z-index: 2;
        height: 250px;
        background-image: linear-gradient(0deg, #141414 0%, transparent 100%, transparent 100%);
    }

    .galeria .custom-button {
        margin-top: 40px;
    }
    
    .galeria .custom-button,
    .bloquetexto .custom-button {
        width: 300px;
    }

    .bloquetexto .titulo span {
        font-size: 38px;
    }

    .bloquetexto .img-container {
        display: none;
    }

    /* ******* */
    /* banner2 */
    /* ******* */

    .banner2 {
        padding-bottom: 130px;
        margin-top: 100px;
    }
    
    .banner2 .row {
        flex-flow: column;
        gap: 60px;
    }

    .banner2 .logo-banner2 {
        width: 200px;
    }

    /* ******** */
    /* Nosotros */
    /* ******** */
    .nosotros .row {
        display: flex;
        flex-flow: column-reverse;
        gap: 60px;
    }

    .nosotros .jugadores-fondo {
        width: 100%;
    }
    
    .nosotros {
        padding-top: 75px;
        padding-bottom: 80px;
    }

    .nosotros .forbes {
        width: 90%;
    }

    .nosotros .tenemos li {
        font-size: 28px;
    }

    /* ******* */
    /* Banner3 */
    /* ******* */
    .banner3 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    
    .banner3 .fondo {
        background-size: 0;
    }
    
    .banner3 .subtitulo {
        margin-bottom: 50px;
    }

    .banner3 .cards {
        flex-flow: wrap;
        justify-content: center;
    }
    
    .banner3 .card {
        flex-basis: calc(100% / 2 - 30px);
    }

    /* ******* */
    /* Banner4 */
    /* ******* */
    .banner4 .row {
        display: flex;
        flex-flow: column-reverse;
        gap: 60px;
    }

    .banner4 .titulo {
        margin-bottom: 50px;
    }
    
    .banner4 .deportista {
        width: 100%;
    }
    
    .banner4 .deportista-franja {
        padding-top: 40px;
    }

    .servicios {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    /* ******* */
    /* Banner5 */
    /* ******* */
    .banner5 {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .banner5 .img-container {
        width: 500px;
        height: 500px;
    }

    .historico {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .jugadores {
        padding-top: 60px;
        padding-bottom: 0;
    }

    .jugadores .grupo {
        display: none;
    }
    
    .jugadores .grupo-movil {
        position: relative;
        margin-top: 30px;
    }

    .jugadores .grupo-movil .jug1 {
        position: relative;
        bottom: 0;
        width: 100%;
    }
    
    .jugadores .grupo-movil .jug3 {
        position: absolute;
        right: 18%;
        bottom: 0;
        width: 41%;
    }
    
    .jugadores .titulo {
        font-size: 30px;
        line-height: 80px;
    }

    .jugadores .titulo span {
        font-size: 35px;
    }

    .jugadores .subtitulo {
        font-size: 20px;
    }

    .jugadores .row > div {
        height: 350px;
    }
    
    .jugadores .img-container {
        width: 95%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .wow {
        opacity: 1;
    }
    
    .bloquetexto .numero {
        font-size: 400px;
    }
    
    .sin-padding-xs {
        padding: 0;
    }
    
    .banner3 .card {
        flex-basis: 100%;
    }
    
    .zona-video video {
        width: 95vw;
    }
    
    .titulo {
        font-size: 35px;
        line-height: 45px;
    }
    
    .contenedor-medio-globo {
        max-width: 100vw;
    }
    
    .bloquetexto .medio-globo {
        left: calc((-720px + 100vw) / 2);
    }
    
    .bloquetexto .jugador {
        min-width: 620px;
        left: calc((-620px + 100vw) / 2);
        object-fit: contain;
    }
    
    .banner3 .titulo {
        margin-bottom: 15px;
    }
    
    .banner4 .deportista-franja {
        height: auto;
        max-height: 736px;
    }
    
    .banner4 .deportista-franja .deportista {
        max-height: 736px;
    }

    .banner4 {
        padding-top: 80px;
    }
    
    .banner4 .card {
        height: auto;
    }

    .banner4 .card h3 {
        font-size: 19px;
    }
    
    .servicios ul li {
        font-size: 15px;
    }
    
    .sobre-galeria {
        margin-top: 60px;
    }
    
    .galeria .titulo {
        margin-bottom: 40px;
    }
    
    .gallery-item,
    .gallery-item:nth-child(6n),
    .gallery-item:nth-child(6n - 1),
    .gallery-item:nth-child(6n - 2) {
        height: 290px;
    }

    .gallery-item:nth-child(4n),
    .gallery-item:nth-child(4n + 1) {
        height: 270px;
    }
    
    
    
    .gallery>div>div .gallery-item:nth-child(2n+1), .gallery>div>div:nth-child(2n) .gallery-item:nth-child(2n) {
        height: 290px;
    }
    
    .gallery>div>div .gallery-item:nth-child(2n), .gallery>div>div:nth-child(2n) .gallery-item:nth-child(2n+1) {
        height: 270px;
    }

    .gallery-item {
        width: calc((100vw - 60px) / 2);
    }

    footer .logo-blanco {
        width: 80%;
    }

    footer .custom-button {
        width: 340px;
    }
}