@font-face {
  font-family: 'Satoshi Regular';
  font-style: normal;
  font-weight: normal;
  src: local('../fonts/Satoshi Regular'), url('../fonts/Satoshi-Regular.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Satoshi Italic';
  font-style: normal;
  font-weight: normal;
  src: local('../fonts/Satoshi Italic'), url('../fonts/Satoshi-Italic.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Satoshi Light';
  font-style: normal;
  font-weight: normal;
  src: local('../fonts/Satoshi Light'), url('../fonts/Satoshi-Light.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Satoshi Light Italic';
  font-style: normal;
  font-weight: normal;
  src: local('../fonts/Satoshi Light Italic'), url('../fonts/Satoshi-LightItalic.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Satoshi Medium';
  font-style: normal;
  font-weight: normal;
  src: local('Satoshi Medium'), url('../fonts/Satoshi-Medium.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Satoshi Medium Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Satoshi Medium Italic'), url('../fonts/Satoshi-MediumItalic.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Satoshi Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Satoshi Bold'), url('../fonts/Satoshi-Bold.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Satoshi Bold Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Satoshi Bold Italic'), url('../fonts/Satoshi-BoldItalic.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Satoshi Black';
  font-style: normal;
  font-weight: normal;
  src: local('Satoshi Black'), url('../fonts/Satoshi-Black.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Satoshi Black Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Satoshi Black Italic'), url('../fonts/Satoshi-BlackItalic.woff') format('woff');
  }




/* ROOT VARS */
:root {
--font-default: "Satoshi Regular";
--font-primary: "Satoshi Bold";
--font-secondary: "Satoshi Black";

--color-default-light: #e3e3e3;
--color-default: #535454;
--color-default-dark: #000;

--color-primary: #14213d;

--color-secondary: #FCA311;

--color-white: #FFFFFF;
--color-light: #e5e5e5;
--color-dark: #000;

--regular-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;

scroll-behavior: smooth;
}












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

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

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: 15px;
  line-height: 1.5em;
  font-weight: normal;
  font-style: normal;
  letter-spacing: .05em;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-primary-dark);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary-dark);
  border-top-color: var(--color-white);
  border-bottom-color: var(--color-white);
  border-radius: 60px;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}









/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: var(--color-primary);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: var(--color-primary);
}

#logo {
  max-height: 45px;
}

.section-title {
  color: var(--color-dark);
  font-family: var(--font-secondary);
  margin-bottom: 25px;
}


/*--------------------------------------------------------------
# MENU
--------------------------------------------------------------*/
#offcanvasMenu {
  background-color: var(--color-primary);
  color: var(--color-white);
}
#offcanvasMenu .offcanvas-body .menu-items {
  padding: 0;
  list-style: none;
}
#offcanvasMenu .offcanvas-body .menu-items li {
  margin-bottom: 10px;
}
#offcanvasMenu .offcanvas-body .menu-items li a{
  color: var(--color-white);
  transition: .3s;
}
#offcanvasMenu .offcanvas-body .menu-items li a:hover{
  color: var(--color-secondary);
  transition: .3s;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 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;
}








/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  padding-top: 100px;
  padding-bottom: 0;
  width: 100%;
  /*background-color: var(--color-primary);*/
  position: relative;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../img/bg.jpeg');
}
/*
#hero::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 15%;
  content: "";
  background-color: var(--color-light);
}*/

#hero .container{
  z-index: 2;
  position: relative;
}

#hero h1 {
  color: var(--color-white);
  font-size: 58px;
  font-family: var(--font-secondary);
}
#hero h4 {
  color: var(--color-white);
  font-size: 22px;
  font-family: var(--font-default);
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background-color: var(--color-primary);
}

#footer .footer-top {
  padding: 60px 0 60px 0;
}


#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--color-white);
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

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





#init-video {
  height: 100vh;
  position: relative;
}
#init-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/*MYSTYLES*/
#search-cancha label {
  font-size: 13px;
  color: var(--color-default);
  margin-bottom: 10px;
}
#search-cancha .ro-start {
  border-radius: .375rem 0 0 .375rem;
  border: 1px solid var(--color-secondary);
}
#search-cancha .ro-end {
  border-radius:  0 .375rem .375rem 0;
  border: 1px solid var(--color-secondary);
}
#search-cancha input {
  border-radius:  0;
  border: 1px solid var(--color-secondary);
  color: #000 !important;
}
.text-warning {
  color: var(--color-secondary) !important;
}
.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: var(--color-secondary);
  --bs-btn-border-color: var(--color-secondary);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: var(--color-secondary);
  --bs-btn-disabled-border-color: var(--color-secondary);
}




#recents {
  background-color: var(--color-light);
}
.recent-card .recent-card-img {
  width: 60px;
  height: 60px;
  background-position: center;
  background-size: cover;
}
.recent-card .recent-card-body {
  width: calc(100% - 60px);
  padding-left: 15px;
}



#dropdownFilter::after {
  display: none;
  margin-left: 0;
  vertical-align: 0;
  content: "";
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}
.result-card .result-card-img {
  width: 100%;
  padding-bottom: 100%;
  background-position: center;
  background-size: cover;
}





@media (max-width: 768px) {
  .remove-mobil {
    display: none;
  }
  #hero h1 {
    font-size: 28px;
  }
  #hero h4 {
    font-size: 18px;
  }
  #search-cancha .ro-start {
    border-radius: .375rem .375rem .375rem .375rem ;
  }
  #search-cancha .ro-end {
    border-radius:  .375rem .375rem .375rem .375rem ;
  }
  #search-cancha input {
    border-radius:  .375rem .375rem .375rem .375rem ;
  }
  .switch-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .switch-display label {
    width: 100px;
    margin: 0;
  }
  .recent-card .recent-card-img {
    width: 80px;
    height: 80px;
    background-position: center;
    background-size: cover;
  }
  .result-card-price, .result-card-payment {
    width: 50%;
  }
}







