@font-face{
  font-family: 'Utopia';
  src: url(../../css/sys/fonts/Utopia-Regular.woff2);
  font-weight: 400;
}

@font-face{
  font-family: 'Utopia';
  src: url(../../css/sys/fonts/Utopia-Bold.woff2);
  font-weight: 700;
}

:root{
  --main: #9a192c;
  --dark: #1a1a1a;
  --light: #fff;
}

*{
  box-sizing: border-box;
  color: var(--dark);
  margin: 0;
  padding: 0;
  font-family: 'Utopia';
}

html{
  height: 100%;
  width: 100%;
}

body{
  height: 100%;
  width: 100%;
}

/*Header*/
.header{
  position: relative;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

.header .title-container{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.header .title-container h1{
  font-size: 100px;
  font-style: italic;
}

.header-background{
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.header-background img{
  display: block;
  width: 100%;
}

/*Navigation*/
.main-nav{
  top: 0;
  width: 100vw;
  height: 35vh;
  background-color: rgb(255 255 255 / 70%);
  box-shadow: 0 0 5px 5px rgb(0 0 0 / 25%);
  z-index: 2;
}

.nav-upper{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 90%;
  height: 10%;
  margin: 0 auto 0 auto;
}

.nav-upper a{
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}


.nav-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40%;
}

.nav-logo img{
  height: 90%;
}

.menu{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20%;
}

.menu a{
  display: block;
  font-size: 24px;
  margin: 0 40px 0 40px;
  text-decoration: none;
}

.menu a:hover{
  text-decoration: underline;
}


.search{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30%;
}

.search form{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.search form input[type=text]{
  display: block;
  width: 20%;
  height: 40px;
  font-size: 16px;
  background-color: rgb(255 255 255 / 60%);
  border-width: 2px;
  border-style: solid;
  border-radius: 25px;
  margin-right: 10px;
  padding: 10px;
}

.search form button[type=submit]{
  display: block;
  width: 50px;
  height: 50px;
}

/*Main*/
.main{
  display: block;
  width: 100%;
}

.main .section{
  width: 80%;
  margin: 40px auto 40px auto;
}

/*Slide*/
.splide__track{
  padding: 30px !important;
}
.slide{
  background-color: white;
  border: 1px solid rgb(0 0 0 / 10%);
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%)
}

.slide-img{
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  overflow: hidden;
}

.slide-info{
  width: 100%;
  padding: 10px;
}

.slide-info .titulo{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.slide-info .autor{
  font-size: 14px;
}

.slide-info .editorial{
  font-size: 14px;
}

.slide-info .edicion{
  font-size: 14px;
}

.slide-info .publicacion{
  font-size: 14px;
}

.slide-info .precio{
  font-size: 16px;
  margin-top: 10px;
}

/*Events Banners*/
.slide-events{
  background-color: white;
  border: 1px solid rgb(0 0 0 / 10%);
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%)
}

.slide-events-img{
  aspect-ratio: 2.67;
  width: 100%;
}

/*Events Next*/
.event{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-width: 2px;
  border-style: solid;
  border-radius: 15px;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.event-date{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 0;
  border-radius: 0 15px 15px 0;
  color: #fff;
  width: 100px;
  height: 100px;
}

.event-date div{
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  width: 90%;
}

.event-info{
  display: block;
  text-align: left;
  width: 90%;
  padding: 10px;
  cursor: pointer;
}

.event-info h3{
  font-size: 20px;
  font-weight: bold;
}

.event-info .title{
  font-size: 22px;
  font-weight: normal;
}

/*Contact Form*/
.frm-contact{
  display: block;
  width: 100%;
  border: 1px solid #aaa;
}

.frm-contact input[type=text],
.frm-contact input[type=email],
.frm-contact input[type=tel]
{
  display: block;
  border: 0;
  border-bottom: 1px solid #aaa;
  width: 90%;
  height: 40px;
  font-size: 18px;
  margin: 10px auto 0 auto;
  padding: 4px;
  outline: 0;
}

.frm-contact input[type=text]:focus,
.frm-contact input[type=email]:focus,
.frm-contact input[type=tel]:focus
{
  border: 0;
  border-bottom: 1px solid var(--main);
}

.frm-contact textarea{
  display: block;
  width: 90%;
  height: 200px;
  border: 1px solid #aaa;
  margin: 10px auto 10px auto;
  padding: 4px;
  outline: 0;
}

.frm-contact textarea:focus
{
  border: 1px solid var(--main);
}


.frm-contact label{
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: var(--main);
  width: 90%;
  margin: 10px auto 10px auto;
}

.frm-contact button{
  display: block;
  color: var(--light);
  background-color: var(--main);
  border: 0;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  width: 150px;
  height: 50px;
  margin: 10px auto 10px auto;
}

/*Footer*/
.footer{
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 500px;
  background-image: url(../../assets/img/footer/footer.svg);
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.footer-content{
  display: block;
  width: 40%;
  padding: 40px;
}

.footer-menu{
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-menu a{
  display: block;
  text-decoration: none;
}

.footer-menu a:hover{
  text-decoration: underline;
}

.footer-branding{
  font-size: 14px;;
}

/*General*/
.color-main{
  color: var(--main);
}

.bg-main{
  background-color: var(--main);
}

.border-main{
  border-color: var(--main);
}

.color-dark{
  color: var(--dark);
}

.bg-dark{
  background-color: var(--dark);
}

.border-dark{
  border-color: var(--dark);
}

.color-light{
  color: var(--light);
}

.bg-dark{
  background-color: var(--light);
}

.border-dark{
  border-color: var(--light);
}


.p-40{
  padding: 40px;
}

.w-60{
  width: 60%;
}

.w-45{
  width: 45%;
}

.w-40{
  width: 40%;
}

.w-35{
  width: 45%;
}

.w-30{
  width: 30%;
}

.w-15{
  width: 15%;
}

.w-10{
  width: 10%;
}

.w-5{
  width: 5%;
}


.subtitle-center{
  display: block;
  border-bottom: 1px solid;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  margin: 0 auto 20px auto;
  width: 50%;
}

.subtitle-left{
  display: block;
  border-bottom: 1px solid;
  font-size: 40px;
  font-weight: bold;
  text-align: left;
  padding: 15px;
  margin: 0 0 20px 0;
  width: 60%;
}

.see-more{
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px;
  width: 120px;
}

.btn-search{
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.btn-search img{
  display: block;
  height: 60%;
}

.map{
  width: 100%;
  height: 300px;
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%)
}

