:root {
  --primary-color: #e1211c;
  --secondary-color: #ac1916;
}

* {
  box-sizing: border-box;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body {
  font-family: "Open Sans", sans-serif !important;
  overflow-x: hidden;
}

.rp-primary-color {
  color: var(--secondary-color);
}

.rp-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}

/* TOP NAVBAR */
.rp-top-navbar {
  width: 100%;
  height: 35px;
  background: white;
}

/* NAVBAR */
.rp-navbar {
  width: 100%;
  background: #222;
  border-bottom: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rp-navbar .navbar-navigation a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 15px;
  text-transform: uppercase !important;
  font-weight: bold;
  margin: 0;
}

.rp-navbar .navbar-navigation a:hover {
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.rp-navbar .logo {
  width: 80px;
  padding: 15px;
  height: auto;
}

/* HERO */
.rp-hero {
  width: 100%;
  margin-top: 70px;
}

.rp-hero img {
  width: 100%;
  object-fit: cover;
  object-position: right;
}

/* SIGN */

.container-phone, .title-sing{
  display: none;
}


/* BTN ACCESS AULE */
.imgButtons{
  width: 100%;
  height: 80px;
}

.rp-button-acces{
  border: none;  
  background-color: white;
}

/* Modal */
.close{
  background-color: #ac1916;
  color: white;
  border: none;
  width: 25px;
}

.modal-header{
  border-bottom: none;
}

.modal-content{
  border: none;
  border-radius: 2px;
  box-shadow: 1px 1px 8px #111;
}

/* ENTER VENUES */

.btn.btn-enterVenues{
  color: white;
  background-color: #222222;
  height: auto;
  border-radius: 0.3rem;
  width: 100%;
  box-shadow: 1px 1px 5px #222222;
}

@media (max-width:995px){

  .container-hide{
    display: none;
  }

  .title-sing{
    display: block;  }

  .container-phone{
    display: block;
    margin: 2rem 1rem;
    box-shadow: 1px 1px 8px rgb(118, 118, 118);
    background-color: var(--primary-color);
  }

  .container-phone .container-sign{
    display: flex;
    justify-content: center;
    align-items: center;  }

  .container-phone .container-sign .text-sign{
    color: white;
    text-decoration: none;
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
  }
}

@media (max-width:320px){
  .container-phone .container-sign .text-sign{
    font-size: 0.9rem;
  }
}

/* BUTTON */
.rp-button {
  padding: 10px 15px;
  background: var(--primary-color);
  color: white;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase !important;
  border: 0;
}

/* SEDES */
/* .rp-sedes {
  width: 100%;
  height: 320px;
  background-image: url(../img/sedes.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.rp-sedes .rp-sedes__overlay {
  width: 100%;
  height: 100%;
  background: rgba(255, 33, 28, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease;
}

.rp-sedes .rp-sedes__overlay:hover {
  background: rgba(255, 33, 28, 0.7);
} */


/* LINK */
.rp-link {
  color: var(--primary-color);
}

/* CUSTOM CAROUSEL */
.carousel .carousel-inner .carousel-item img {
  height: 450px;
}

/* FOOTER */
.rp-footer {
  width: 100%;
  background: #222;
}

.rp-footer .rp-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 20px;
  margin: 0 8px;
}

.rp-footer .rp-icon a{
  text-decoration: none;
  color: white;
}

/* SIDEBAR */
.sidebar {
  width: 300px;
  height: 100vh;
  background: white;
  position: fixed;
  z-index: 10000;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transform: translateX(300px);
  transition: 0.3s all ease;
}
.sidebar .sidebar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sidebar .sidebar-divider {
  width: 100%;
  height: 1px;
  background: rgb(200, 200, 200);
}
.sidebar .sidebar-navigation {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}
.sidebar .sidebar-navigation .sidebar-item {
  text-decoration: none;
  padding: 20px 100%;
  font-weight: 600;
  color: black;
  border-bottom: 3px solid transparent;
}
.sidebar .sidebar-navigation .active-link {
  border-color: var(--secondary-color);
}
.sidebar-shown {
  display: flex;
  transform: translateX(0px);
}

.hidden {
  display: none;
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
  .rp-top-navbar {
    display: none;
  }
  .navbar-navigation {
    display: none;
  }
  .hidden {
    display: flex;
    color: var(--primary-color);
    font-size: 20px;
    margin-left: 30px;
  }
}

/* Form Complet*/
 .formRegister {
  width: 100%;
  height: 145rem;
} 

/* .formRegisterF {
  width: 100%;
  height: 260rem;
}
*/

@media (max-width:767px){
  .formRegister{
    height: 174rem;
  }
} 
/* 
.templateWidth{
  max-width: 100%;
} */

/* Form Plataform */
.formPlataform{
  width: 100%;
  height: 253rem;
}

@media (max-width:1023px){
  .formPlataform{
    height: 275rem;
  }
}


@media (max-width:767px){
  .formPlataform{
    height: 437rem;
  }
}

/* Sedes */

.card-title.title-sedes{
  text-align: center;
  font-weight: 700;
  font-size: 1.3rem;
}

.btn-sedes{
  background-color: #E1211C;
  border: none;
  padding: 0.5rem;
  margin: 0.5rem;
  color: white;
}

.btn-sedes:hover{
  background-color: #111;
}

.containerSedes a{
  text-decoration: none;
}

