:root {
  --white: #ffffff;
  --black: #000000;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: black;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--white);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--white);
}

/* USER SELECT NONE TAP MOBILE	*/
body * {
  -webkit-tap-highlight-color: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

/* FIN USER SELECT NONE TAP MOBILE	*/

#smooth-wrapper {
  overflow: hidden !important;
}

body {
  min-height: 100vh;
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-rendering: geometricPrecision;
  white-space: normal;
  /*white-space: nowrap;*/
}

:focus {
  outline: none !important;
}

.anim {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.25s linear;
}

.anim-long {
  -webkit-transition: all 0.7s linear;
  -moz-transition: all 0.7s linear;
  -ms-transition: all 0.7s linear;
  -o-transition: all 0.7s linear;
  transition: all 0.75s linear;
}

.wrapp-migas {
  position: absolute;
  top: 150px;
  left: 70px;
  display: flex;
}
.wrapp-migas a {
  color: #9b9b9b;
  font-size: min(100vw, 12px);
  line-height: min(100vw, 12px);
  font-family: "JosefinSans-Thin";
  font-weight: 600;
  transition: 0.3s ease-in-out;
}
.wrapp-migas a:hover {
  opacity: 0.5;
}
.wrapp-migas .separador {
  color: #9b9b9b;
  padding: 0 5px;
  margin-top: -1px;
}
.wrapp-migas p {
  color: var(--black);
  font-size: min(100vw, 12px);
  line-height: min(100vw, 12px);
  font-family: "JosefinSans-Thin";
  font-weight: 600;
}
a {
  text-decoration: none;
}
.txt-pro {
  font-family: "JosefinSans-Regular";
  font-weight: 900;
}
.space-bottom-20 {
  margin-bottom: 30px !important;
}
.tit {
  font-size: min(100vw, 63px);
  line-height: min(100vw, 63px);
  font-family: "JosefinSans-Italic";
  font-weight: 600;
  padding: 50px 0;
}

p {
  margin: 0;
}

.wrapper-general {
  max-width: 1000px;
  margin: 0 auto;
}

.cab-menu {
  padding-top: 200px;
}

.wrapper-boton {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

.boton-general:not(.ex) {
  padding: 11px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;

  border: none;

  min-width: 140px;
  text-transform: uppercase;
  font-size: 20px;
  min-height: 60px;
  position: relative;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.25s linear;
  font-family: "JosefinSans-Regular";
  font-weight: 600;
}

.boton-general.long:not(.ex) {
  min-width: 200px;
}
.button-home {
  background-color: transparent !important;
  border: 1px solid #fff !important;
  color: #fff !important;
  font-family: "JosefinSans-Regular";
  margin: 10px 30px;
}
.boton-general::after {
  position: absolute;
  content: "";
  width: 90%;
  height: 80%;
  top: 10%;
  left: 5%;
  border-radius: 100px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.25s linear;
}

.boton-general.over:not(.ex),
.over:not(.ex) button {
  transform: scale(0.95);
  /*	font-size: 15px;*/
}

.boton-general.over:not(.ex)::after,
.over:not(.ex) button::after {
  width: 92%;
  height: 84%;
  top: 8%;
  left: 4%;
}

.boton-general.slick-arrow {
  min-width: 60px;
  border-radius: 100%;
}

.boton-general.slick-arrow::after {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
}

.boton-general.slick-arrow.over::after {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
}

.boton-general.boton.mini {
  min-width: 60px;
}

.boton-general.boton.mini::after {
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  border-radius: 100px;
}

.boton-general.boton.mini.over::after {
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
}

.negro:not(.ex) {
  background: black;
  color: var(--white);
}

.negro.over:not(.ex),
.over:not(.ex) button {
  background: var(--white);
  border: 1px solid black;
  color: black;
  transform: scale(0.95);
  /*	font-size: 15px;*/
}

.blanco:not(.ex) {
  background: var(--white);
  color: var(--black);
}

.blanco.over:not(.ex),
.over:not(.ex) button {
  background: black;
  border: 1px solid var(--white);
  color: var(--white);
  transform: scale(0.95);
  /*	font-size: 15px;*/
}

.logo-ddb {
  width: 200px;
  max-width: 200px;
}
.news-menu {
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 10px 100px;
  position: relative;
  z-index: 999999999999;
  font-family: "JosefinSans-Regular";
  font-weight: 500;
}

.news-menu a {
  color: var(--black);
  margin-right: 0;
  text-decoration: none;
  font-family: "JosefinSans-Thin";
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
.news-menu a:hover {
  opacity: 0.5;
}
.text-center {
  text-align: center;
}
.border-solid {
  border: solid;
  border-width: thin;
}
.mobile {
  display: none;
}
.desktop {
  display: block;
}
.d-none {
  display: none;
}
@media (min-width: 0px) and (max-width: 767px) {
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
}
@media only screen and (max-width: 1025px) {
  .tit {
    font-size: min(100vw, 38px);
    line-height: min(100vw, 38px);
  }

  .cab-menu {
    padding-top: 75px;
  }
  .news-menu {
    display: none;
  }
  .wrapp-migas {
    top: 90px;
    left: 15px;
  }
}
@media (min-width: 0px) and (max-width: 500px) {
  .boton-general.long:not(.ex) {
    min-height: 40px;
  }
  .tit {
    font-size: min(100vw, 30px);
    line-height: min(100vw, 34px);
  }
  .tit {
    padding: 30px 0;
  }
}
.cookiealert .cookietext {
  max-width: 1290px;
  margin: 0 auto;
  font-family: "JosefinSans-Regular";
}
.cookiealert .acceptcookies {
  color: #fff !important;
}
