@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

/* ROOT VARS */
:root {
 --font-default: "Cairo";

 --color-default-light: #e3e3e3;
 --color-default: #494949;
 --color-default-dark: #000000;

 --color-primary: #850506;
 --color-primary-light: #a83a3a;

 --color-white: #ffffff;
 --color-light: #f3f5fa;
 --color-dark: #000000;

 --regular-shaodw: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;

 --regular-shaodw: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;

 scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
 font-family: var(--font-default);
 color: var(--color-default);
 font-weight: 600;
}

a {
 color: var(--color-primary);
 text-decoration: none;
 transition: 0.3s ease-in-out;
}

a:hover {
 color: var(--color-primary-light);
 text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
 font-family: var(--font-default);
 color: var(--color-default-dark);
}

p {
 font-size: 14px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 z-index: 9999;
 overflow: hidden;
 background: #fff;
}
#preloader img {
 width: 100px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
 position: fixed;
 visibility: hidden;
 opacity: 0;
 right: 15px;
 bottom: 15px;
 z-index: 996;
 background: #25d366;
 width: 60px;
 height: 60px;
 border-radius: 50px;
 transition: all 0.4s;
}

.back-to-top i {
 font-size: 24px;
 color: #fff;
 line-height: 0;
}

.back-to-top:hover {
 background: #075e54;
 color: #fff;
}

.back-to-top.active {
 visibility: visible;
 opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
 transition: all 0.5s;
 z-index: 997;
 padding: 20px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
 background: var(--color-white);
 position: fixed;
 top: 0;
 right: 0;
 left: 0;
 box-shadow: var(--regular-shaodw);
}

#logo {
 height: 65px;
 max-height: 65px;
}

.btn-main {
 --bs-btn-color: #fff;
 --bs-btn-bg: var(--color-secondary-light);
 --bs-btn-border-color: var(--color-secondary-light);
 --bs-btn-hover-color: #fff;
 --bs-btn-hover-bg: var(--color-secondary-dark);
 --bs-btn-hover-border-color: var(--color-secondary-dark);
 --bs-btn-focus-shadow-rgb: 217, 164, 6;
 --bs-btn-active-color: #fff;
 --bs-btn-active-bg: var(--color-secondary-dark);
 --bs-btn-active-border-color: var(--color-secondary-dark);
 --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
 --bs-btn-disabled-color: #fff;
 --bs-btn-disabled-bg: var(--color-secondary-light);
 --bs-btn-disabled-border-color: var(--color-secondary-light);
 font-size: 12px;
 font-weight: bold;
 text-transform: uppercase;
 letter-spacing: 1pt;
 font-family: var(--font-default);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
 padding: 0;
}

.navbar ul {
 margin: 0;
 padding: 0;
 display: flex;
 list-style: none;
 align-items: center;
}

.navbar li {
 position: relative;
}

.navbar a,
.navbar a:focus {
 display: flex;
 align-items: center;
 justify-content: space-between;
 text-transform: uppercase;
 padding: 10px 0 10px 30px;
 font-size: 16px;
 letter-spacing: 0.5pt;
 font-weight: normal;
 color: var(--color-default);
 font-family: var(--font-default);
 white-space: nowrap;
 transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
 font-size: 16px;
 line-height: 0;
 margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
 font-weight: bold;
}

.navbar .dropdown ul {
 display: block;
 position: absolute;
 left: 14px;
 top: calc(100% + 30px);
 margin: 0;
 padding: 25px 0 30px 0;
 z-index: 99;
 opacity: 0;
 visibility: hidden;
 background: #ecececf2;
 opacity: 0.95;
 box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
 transition: 0.3s;
 border-radius: 4px;
}

.navbar .dropdown ul li {
 min-width: 200px;
}

.navbar .dropdown ul a {
 padding: 10px 20px 0px 20px;
 font-size: 16px;
 letter-spacing: 0.5pt;
 text-transform: none;
 color: var(--color-default);
}

.navbar .dropdown ul a i {
 font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
 color: var(--color-primary);
}

.navbar .dropdown:hover > ul {
 opacity: 1;
 top: 100%;
 visibility: visible;
}

.navbar .dropdown .dropdown ul {
 top: 0;
 left: calc(100% - 30px);
 visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
 opacity: 1;
 top: 0;
 left: 100%;
 visibility: visible;
}

@media (max-width: 1366px) {
 .navbar .dropdown .dropdown ul {
  left: -90%;
 }

 .navbar .dropdown .dropdown:hover > ul {
  left: -100%;
 }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
 color: #850506;
 font-size: 28px;
 cursor: pointer;
 display: none;
 line-height: 0;
 transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
 color: #850506;
}

@media (max-width: 991px) {
 .mobile-nav-toggle {
  display: block;
 }

 .navbar ul {
  display: none;
 }
}

.navbar-mobile {
 position: fixed;
 overflow: hidden;
 top: 0;
 right: 0;
 left: 0;
 bottom: 0;
 background: #fff;
 transition: 0.3s;
 z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
 position: absolute;
 top: 15px;
 right: 15px;
}

.navbar-mobile ul {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 justify-content: center;
 width: 100%;
 height: 100%;
 padding: 10px 0;
 background-image: url("../img/login.png");
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 opacity: 1;
 overflow-y: auto;
 transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
 padding: 10px 20px;
 text-transform: uppercase;
 font-size: 20px;
 color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
 color: var(--color-primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
 margin: 15px;
 color: #37517e;
}

.navbar-mobile .dropdown ul {
 position: static;
 display: none;
 margin: 10px 20px;
 padding: 10px 0;
 z-index: 99;
 opacity: 1;
 visibility: visible;
 background: #fff;
 box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
 min-width: 200px;
}

.navbar-mobile .dropdown ul a {
 padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
 font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
 color: var(--color-primary);
}

.navbar-mobile .dropdown > .dropdown-active {
 display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
 padding: 40px 0;
 overflow: hidden;
}
.bg-cover {
 background-position: center;
 background-size: cover;
 width: 100%;
}

.bg-cover-cuadrado {
 background-position: center;
 background-size: cover;
 width: 100%;
 content: "";
 padding-bottom: 100%;
 border-radius: 0 3rem 3rem 3rem;
 height: 100px;
}

/*--------------------------------------------------------------
# Sections Hero
--------------------------------------------------------------*/
.swiperHero {
 width: 100%;
 height: 100%;
}

.swiperHero .swiper-wrapper .swiper-slide .texto {
 background-color: #fff;
 opacity: 0.7;
 color: #000;
 width: 75%;
 border-radius: 20px;
}

.swiperHero .swiper-wrapper .swiper-slide .texto h2 {
 font-size: 30px;
}

.swiperHero .swiper-wrapper .swiper-slide .texto p {
 font-size: 20px;
}

.swiperHero .swiper-wrapper .swiper-slide .texto h2,
.swiperHero .swiper-wrapper .swiper-slide .texto p {
 color: #000;
}

.swiperHero .swiper-pagination {
 text-align: left;
}

.swiperHero .swiper-horizontal > .swiperHero .swiper-pagination-bullets .swiper-pagination-bullet,
.swiperHero .swiper-pagination-horizontal.swiper-pagination-bullets
 .swiper-pagination-bullet {
 width: 17px;
 height: 17px;
}
.swiperHero .swiper-pagination-bullet {
 background-color: #fff;
 opacity: 0.4;
}
.swiperHero .swiper-pagination-bullet-active {
 background-color: #fff;
 opacity: 1;
}

@media (max-width: 768px) {
 .swiperHero .swiper-wrapper .swiper-slide {
  padding-bottom: 80% !important;
 }
 .swiperHero .swiper-wrapper .swiper-slide .container {
  bottom: 30px !important;
 }
 .swiperHero .swiper-wrapper .swiper-slide .texto h2 {
  font-size: 20px;
 }
 .swiperHero .swiper-wrapper .swiper-slide .texto p {
  font-size: 15px;
 }
}

/*--------------------------------------------------------------
# Seccion Noticias
--------------------------------------------------------------*/
.noticia-det {
 background-color: #fff;
 opacity: 0.9;
 transition: all 0.4s ease-in-out;
 overflow: hidden;
 padding: 15px;
 transform: scaleY(0.9);
 transform-origin: top;
}

/* Inicialmente solo mostrar el título y la fecha */
.noticia-det h3,
.noticia-det small {
 transition: all 0.4s ease-in-out;
}

.noticia-det p,
.noticia-det a {
 opacity: 0;
 transform: translateY(10px);
 transition: all 0.4s ease-in-out;
}

/* Expansión en hover */
.noticia-container:hover .noticia-det {
 transform: scaleY(1);
}

.noticia-container:hover .noticia-det p,
.noticia-container:hover .noticia-det a {
 opacity: 1;
 transform: translateY(0);
}

.login p {
 font-size: 20px;
 color: #000;
}

.login a {
 font-size: 20px;
 color: #000;
}

/*--------------------------------------------------------------
# Historia
--------------------------------------------------------------*/
@media (max-width: 420px) {
 .publicidad-horizontal {
  padding-bottom: 30% !important;
 }
 .link-publicidad-horizontal{
    padding-bottom: 30% !important;
 }
}

/*--------------------------------------------------------------
# Historia
--------------------------------------------------------------*/
.btn-urs {
 width: 100%;
 border: none;
 background-color: #d9d9d9;
 color: #000;
}

.btn-urs:hover {
 width: 100%;
 border: none;
 background-color: #d9d9d9;
 color: #000;
}

.btn-urs-active {
 width: 100%;
 border: none;
 background-color: #ad0001;
 color: #fff;
}

.btn-urs-active:hover {
 width: 100%;
 border: none;
 background-color: #ad0001;
 color: #fff;
}

/*--------------------------------------------------------------
# Historia
--------------------------------------------------------------*/
.club h3 {
 font-size: 25px;
 color: #000;
}

.club p {
 font-size: 18px;
 color: #000;
}

/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/
.informacion h3 {
 font-size: 25px;
 color: #000;
}

.informacion p {
 font-size: 18px;
 color: #000;
}


/*--------------------------------------------------------------
# Fixture
--------------------------------------------------------------*/
.fixture{
   min-height: 280px;
}
.buscador-fecha{
   width: 25%;
}
@media (max-width: 768px) {
   .buscador-fecha{
      width: 100%;
   }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-bottom {
 font-size: 12px;
 background-color: var(--color-dark);
}

#footer .footer-bottom {
 padding-top: 15px;
 padding-bottom: 15px;
}

#footer .copyright {
 color: #fff;
 font-size: 14px;
}

#footer .credits {
 font-size: 14px;
 color: #fff;
}

#footer .credits a {
 transition: 0.3s;
 color: #fff;
}

/*--------------------------------------------------------------
# SOCIAL MEDIA MENU
--------------------------------------------------------------*/
.social-media-menu {
 display: flex;
 justify-content: center;
 align-items: center;
 margin-bottom: 0;
}
.social-media-menu li {
 width: 30px;
 height: 30px;
 display: flex;
 justify-content: center;
 align-items: center;
}
.social-media-menu li a {
 color: #000;
 font-size: 16px;
}
.social-media-menu li a i {
 font-size: 20px;
}

@media (max-width: 768px) {
}
