*,
:after,
:before {
  box-sizing: border-box;
}
:root {
  font-size: 14px;
}
body,
html {
  height: 100%;
  width: 100%;
}
body {
  --color-text: #120155;
  --color-text-alt: #9F7660;
  --color-bg: #CBFF0F;
  --color-link: #000;
  --color-link-hover: #000;
  --color-link-alt: #000;
  --color-type: #000;
  --type-line-opacity: 0.05;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Josefin Sans", sans-serif;
  margin: 0;
}
.js .loading:after,
.js .loading:before {
  content: "";
  position: fixed;
  z-index: 1000;
}
.js .loading:before {
  background: var(--color-bg);
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
.js .loading:after {
  animation: loaderAnim 0.7s linear infinite alternate forwards;
  background: var(--color-link);
  border-radius: 50%;
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  opacity: 0.4;
  top: 50%;
  width: 60px;
}
@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}
a {
  color: var(--color-link);
  text-decoration: underline;
}
a,
a:hover {
  outline: none;
}
a:hover {
  color: var(--color-link-hover);
}
a.link-alt,
a:hover {
  text-decoration: none;
}
a.link-alt {
  color: var(--color-link-alt);
}
a:focus {
  background: #d3d3d3;
  outline: none;
}
a:focus:not(:focus-visible) {
  background: transparent;
}
a:focus-visible {
  background: transparent;
  outline: 2px solid red;
}
main {
  overflow: hidden;
  position: relative;
}
.unbutton {
  background: none;
  border: 0;
  font: inherit;
  margin: 0;
  padding: 0;
}
.unbutton:focus {
  outline: none;
}
.frame {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1rem;
  position: relative;
  text-transform: uppercase;
  z-index: 1000;
}
.frame__title {
  font-size: 1rem;
  margin: 0 0 1rem;
}
.frame__tagline {
  color: var(--color-text-alt);
}
.frame__links {
  display: inline;
}
.frame__links a:not(:last-child) {
  margin-right: 1rem;
}
.frame__author {
  display: block;
  margin-bottom: 1rem;
  width: 100%;
}
.item-wrap {
  display: grid;
  grid-template-columns: 50% 50%;
  text-transform: uppercase;
}
.item {
  --base: 7vh;
  --interval: 9vh;
  cursor: pointer;
  flex: none;
  margin: 1rem 0;
  padding: 1rem;
  position: relative;
  width: 100%;
  will-change: transform, opacity;
  z-index: 999;
}
.item__img {
  border-radius: 12px;
  width: 100%;
  will-change: transform;
}
.item__caption-title {
  font-size: inherit;
  color:#9F7660;
}
.item__caption-description {
  display: none;
}
.type {
  align-content: center;
  display: grid;
  height: 100vmax;
  justify-content: center;
  margin-top: -50vmax;
  position: fixed;
  text-align: center;
  text-transform: uppercase;
  top: 50%;
  width: 100vmax;
  will-change: transform;
}
.type__line {
  -webkit-touch-callout: none;
  color: var(--color-type);
  font-family: "Josefin Sans", sans-serif;
  font-size: 20vh;
  font-size: clamp(7rem, 18.75vh, 15rem);
  font-weight: 700;
  line-height: 0.75;
  opacity: var(--type-line-opacity);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  will-change: transform, opacity;
}
.article-wrap {
  align-self: end;
  justify-self: center;
  padding: 1rem;
  top: 5vh;
}
.article,
.article-wrap {
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.article {
  align-items: start;
  display: grid;
  grid-template-areas: "img img" "number title" "intro intro" "desc desc";
  grid-template-columns: 1rem 1fr;
  opacity: 0;
}
.article--current {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.article__img-wrap {
  border-radius: 17px 17px 0 0;
  grid-area: img;
  height: 250px;
  margin-bottom: 1rem;
  overflow: hidden;
  transform-origin: 50% 100%;
  width: 100%;
}
.article__img {
  background-position: 50% 35%;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.article__number {
  font-weight: 200;
  grid-area: number;
}
.article__title {
  pointer-events: default;
  /* color: var(--color-type); */
  color: #120155;
  font-family: "Josefin Slab", serif;
  font-size: 8vw;
  font-weight: 900;
  grid-area: title;
  margin: 0.3rem 0 0.5rem;
  position: relative;
  text-transform: uppercase;
}
.article__intro {
  font-weight: 300;
  grid-area: intro;
  padding-right: 1rem;
}
.article__description {
  grid-area: desc;
  overflow: hidden;
  padding-right: 1rem;
  font-weight: 300;
  /* font-family: "Josefin Slab", serif;  */
}
.back {
  stroke: #000;
  background: none;
  border: 0;
  cursor: pointer;
  left: 0;
  margin: 0 0 1rem;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  top: 0;
  width: 50px;
  z-index: 1000;
}
.back svg {
  stroke-linecap: round;
}
.back:focus,
.back:hover {
  stroke: #823725;
  outline: none;
}
@media screen and (min-width: 53em) {
  :root {
    font-size: 16px;
  }
  body,
  html {
    overflow: hidden;
  }
  .frame {
    align-content: space-between;
    display: grid;
    grid-template-areas: "title author links";
    grid-template-columns: 40% 20% 40%;
    left: 0;
    margin: 0;
    max-width: none;
    padding: 1rem 2vw;
    position: fixed;
    text-align: left;
    top: 0;
    width: 100%;
    z-index: 100;
  }
  .frame__title-wrap {
    grid-area: title;
    text-align: left;
  }
  .frame__title {
    margin: 0;
  }
  .frame__tagline {
    position: relative;
  }
  .frame__author {
    grid-area: author;
    justify-self: center;
  }
  .frame__links {
    grid-area: links;
    justify-self: end;
    padding: 0;
  }
  .item-wrap {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    width: 100vw;
  }
  .item {
    margin: auto 2vw var(--base);
    padding: 0;
    width: 21vw;
  }
  .item:nth-child(2) {
    margin-bottom: calc(var(--base) + var(--interval));
  }
  .item:nth-child(3) {
    margin-bottom: calc(var(--base) + var(--interval) * 2);
  }
  .item:nth-child(4) {
    margin-bottom: calc(var(--base) + var(--interval) * 3);
  }
  .item__caption-description {
    display: block;
  }
  .back {
    left: calc(24vw - 140px + 1.5rem);
    position: absolute;
  }
  .article-wrap {
    height: 90vh;
    padding: 0;
    top: 10vh;
  }
  .article {
    grid-template-areas: "... ... img ..." "number ... img ..." "... title img ..." "... intro img ..." "... desc img ...";
    grid-template-columns: 1.5rem 30% 1fr 1.5rem;
    grid-template-rows: 6vw 2rem 7vw 9vw auto;
    height: 100%;
    margin: 0 auto;
    width: calc(48vw + 280px);
  }
  .article__title {
    grid-column-end: 4;
    margin: 0;
  }
  .article__intro {
    margin: 1.5rem 0;
  }
  .article__img-wrap {
    align-self: end;
    height: 100%;
    margin: 0;
    width: 100%;
  }
  .article__img {
    background-position: 50% 50%;
  }
}

/* CUSTOM */

.logo1 {
  text-decoration: none !important;
}  
.frame__title {
  color: rgba(255,255,255,0);
  width: 260px;
  height: 60px;
  background: url(logo-dahgoz.svg) no-repeat;
}
.mini_logosmed{
  width:130px;
  height: auto;
  padding: 5px 10px;
}
.mini_logo{
  width: 62px;
  height: auto;
  padding: 5px 6px;
}
.medios_com{
  border-bottom: 1px solid rgb(182, 231, 34);
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.sub_tit{
  font-family: "Josefin Slab", serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.8rem;
}
.sub_tit2{
  font-family: "Josefin Slab", serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color:#000;
  text-decoration: none;
}
.sub_tit2:hover{
  color: #823725;
  font-style: italic;
  cursor: url("flecha.png"), text;
  font-weight: 900;

}
.text_sang{
  padding-left: 30px;
  color:#120155;
  font-size: 1rem;
}
.text_sang2{
  padding-left: 60px;
  color:#120155;
  font-size: 1rem;
}
.svg_arrow1{
  position: absolute;
  top: 92px;
  left: 80px;
  fill:rgb(144, 188, 22);
}
.svg_arrow1:hover, .svg_arrow2:hover,.svg_arrow3:hover{
  fill:rgb(239, 253, 191);
}
.svg_arrow2{
  position: absolute;
  top: 194px;
  left: -10px;
  fill:rgb(144, 188, 22);
}
.svg_arrow3{
  position: absolute;
  top: 300px;
  left: 80px;
  fill:rgb(144, 188, 22);
}
.boton_brief{
  position: absolute;
  top:80px;
  right:-20px;
}
.contact_1{
  font-size: 22px;
  color: #120155;
  font-weight: 400;
  font-family: "Josefin Slab", serif;
  width: 100%;
  z-index: 9999 !important;
}
.contact_1 svg{
  margin-bottom: -6px;
}

/*  Toda la mi3rd4 del boton ___________________________ */
.button {
  pointer-events: auto;
  cursor: pointer;
  background: #ffffff;
  border: none;
  padding: 1rem 2rem;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
  margin: 10px 40px;
}

.button--bestia {
	font-size: 1rem;
	color: #CBFF0F;
	background: none;
	padding: 0;
}

.button--bestia .button__bg {
  top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #ffffff;
	border-radius: 1rem;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  
}

.button--bestia:hover .button__bg {
	transform: scale3d(1.2,1.2,1);
}

.button--bestia .button__bg::before,
.button--bestia .button__bg::after {
	content: '';
	position: absolute;
	background: #120155;
}

.button--bestia .button__bg::before {
	width: 110%;
	height: 0;
	padding-bottom: 110%;
	top: 50%;
	left: 50%;
	border-radius: 60%;
	transform: translate3d(-50%,-50%,0) scale3d(0,0,1);
}

.button--bestia:hover .button__bg::before {
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
	transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
}

.button--bestia .button__bg::after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.3s;
}

.button--bestia:hover .button__bg::after {
	opacity: 1;
	transition-duration: 0.01s;
	transition-delay: 0.3s;
}

.button--bestia span {
	display: block;
	position: relative;
	padding: 1rem 2rem;
	mix-blend-mode: difference;
}

/* ___________________________*/

@media only screen and (max-width:870px){
  .frame__links {
    display: none;
  }
  .article__img-wrap{
    height: 160px;
  }
  .item-wrap{
    height: 100vh;
  }
  .item-wrap{
    display: grid;
    grid-template-columns: 50% 50%;
    text-transform: uppercase;
    grid-template-rows: 30% 30%;
  }
}
@media only screen and (max-width:400px){
  .frame__links {
    display: none;
  }
  .article__img-wrap{
    height: 100px;
  }
  .item-wrap{
    height: 110vh;
  }
  .svg_arrow1 svg, .svg_arrow2 svg, .svg_arrow3 svg{
    width: 60px;
    height: 60px;
  }
}