@font-face {
	font-family: 'Druk Text Web Bold';
	src: url('../druk/DrukText-Bold-Web.eot');
	src: url('../druk/DrukText-Bold-Web.eot?#iefix') format('embedded-opentype'),
	url('../druk/DrukText-Bold-Web.woff2') format('woff2'),
	url('../druk/DrukText-Bold-Web.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-stretch: normal;
}

@font-face {
	font-family: 'Druk Text Web Medium';
	src: url('../druk/DrukText-Medium-Web.eot');
	src: url('../druk/DrukText-Medium-Web.eot?#iefix') format('embedded-opentype'),
	url('../druk/DrukText-Medium-Web.woff2') format('woff2'),
	url('../druk/DrukText-Medium-Web.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-stretch: normal;
}

body {
  font-size: 1rem;
  font-family: 'Georgia', serif !important;
  background-color: #ffffff;
}

.row{
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.col-12{
	padding-left: 0 !important;
	padding-right: 0 !important;
}
a {
  color: #000000 ;
  text-decoration: none !important;
}
a:hover{
  color: #6d6d6d;
  text-decoration: none !important;
}
h1, h2, h3, h4, h5, h6 {
  color: #000000;
  font-weight: 500;
  font-family: 'Druk Text Web Medium', sans-serif !important;
  text-transform: uppercase;
}
p{
line-height: 1.6;
font-size: 20px;
color: #000;
font-family: 'Georgia' ;
}
b, strong {
  font-weight: 800;
}

.credito {
  margin-top: 20px;
  padding-bottom: 2%;
}
.credito p {
  font-size:16px;
  opacity: 0.8;
  color: #000000;
  text-align: center;
  font-family: 'Open Sans', sans-serif !important;
  text-transform: uppercase;
}

.capitular{
  font-size: 20em;
  text-transform: uppercase;
  font-family: 'Druk Text Web Medium', sans-serif !important;
  text-align: center;
}

.datos-perfil{text-align: center;}

.datos-perfil h2{
  font-family: 'Druk Text Web Medium', sans-serif !important;
  font-size: 5em;
  padding-top:10% ;
}

.datos-perfil h3{
  font-family: 'Druk Text Web Medium', sans-serif !important;
  font-size: 2.3em;
  color: #FCAF17;
  background-color: #ffffff;
  padding: 2% 0;
  margin: 0 6%;
}

.datos-perfil h4{
  font-family: 'Druk Text Web Medium', sans-serif !important;
  font-size: 2.8em;
  margin: 0;
  padding: 0;
}

.datos-perfil p{
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: lighter;
  text-transform: uppercase;
  font-size: 2em;
  margin: 0;
}

.personaje{
  position: relative;
  top: -30px;
  text-align: center;
}

.pie-foto {
  padding-top: 10px;
  padding-left: 15px;
}
.pie-foto p {
  padding-top: 10px;
  font-size: 15px;
  color: #000000;
  line-height: 1.2em;
  text-align: left;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 100;
}
.pie-credito p {
  padding-top: 10px;
  font-size: 16px;
  color: #363636;
  line-height: 1;
  font-weight: 100;
}

.redes{ 
  opacity: 1;
  max-width: 35px !important;
  transition: transform .3s; /* Animation */
}
.redes:hover{
  opacity: 0.8;
  transform: scale(1.2);
}


/*********** menu *************/
.hamburger {
	position: absolute;
	left: 20px;
	top: 70px;
	display: flex;
	height: 25px;
	width: 30px;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
	z-index: 1999;
}
.hamburger__icon {
	display: inline-block;
	height: 3px;
	width: 30px;
	background: #000000;
	border-radius: 10px;
}
.sidebar {
  height: 85vh;
  width: 280px;
  background: #000000cf;
  position: absolute;
  top: 0;
  left: 0;
  padding: 45px;
  display: flex;
  flex-direction: column;
  transform: translatex(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 999;
}
.sidebar__close {
	position: absolute;
	top: 50%;
	right: -30px;
	background: #000000;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.03);
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translatex(-100%);
	cursor: pointer;
	transition: transform 0.4s ease-in-out 0.2s;
}
.sidebar__close::before, .sidebar__close::after {
	content: "";
	height: 3px;
	background: #e6e6e6;
	width: 25px;
	display: block;
	position: absolute;
}
.sidebar__close::after {
	transform: rotate(90deg);
}
.sidebar__menu {
	font-family: 'Open Sans', sans-serif !important;
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: space-around;
	font-size: 17px;
	font-weight: 200;
	margin: 70px 10px 0 10px;
	color: #ffffff;
}

#sec-head{
  color: #FDDD01;
  font-weight: 700;
}
.sidebar__menu a {
	color: currentcolor;
	text-decoration: none;
	transform: translatex(-80%);
	transition: transform 0.4s ease-in-out;
}
.sidebar__menu a::before {
	content: "";
	height: 2px;
	background: #e6e6e6;
	width: 120px;
	position: absolute;
	bottom: -2px;
	left: 0;
	transform: translatex(-50%);
	opacity: 0;
	transition: transform 0.4s ease-in-out, opacity 0.4s linear;
}
.sidebar__menu a:hover::before {
	transform: translatex(0);
	opacity: 1;
}
.sidebar__menu a:nth-child(1) {
	transition-delay: 0.05s;
}
.sidebar__menu a:nth-child(2) {
	transition-delay: 0.1s;
}
.sidebar__menu a:nth-child(3) {
	transition-delay: 0.15s;
}
.sidebar__menu a:nth-child(4) {
	transition-delay: 0.20s;
}
.sidebar__menu a:nth-child(5) {
	transition-delay: 0.25s;
}
.sidebar__menu a:nth-child(6) {
	transition-delay: 0.30s;
}
.sidebar__menu a:nth-child(7) {
	transition-delay: 0.30s;
}
.sidebar__menu a:nth-child(8) {
	transition-delay: 0.30s;
}
.sidebar__menu a:nth-child(9) {
	transition-delay: 0.30s;
}
.sidebar__menu a:nth-child(10) {
	transition-delay: 0.30s;
}
.sidebar__menu a:nth-child(11) {
	transition-delay: 0.30s;
}
.sidebar__menu a:nth-child(12) {
	transition-delay: 0.30s;
}
.sidebar__menu a:nth-child(13) {
	transition-delay: 0.30s;
}
.sidebar__menu a:nth-child(14) {
	transition-delay: 0.30s;
}
.sidebar__menu a:nth-child(15) {
	transition-delay: 0.30s;
}


.menu-control {
	display: none;
}
.menu-control:checked + .sidebar {
	transform: translatex(0);
}
.menu-control:checked + .sidebar .sidebar__close {
	transform: translatex(0) rotate(45deg);
}
.menu-control:checked + .sidebar .sidebar__menu a {
	transform: translatex(0);
}

/********** menu *************/



.inicio{
  padding-top: 3em;
}

.inicio h1{
  padding: 0.5em 1em 0em;
  line-height: 1.2;
  font-size: 3em;
  color: #000;
  font-weight: 200;
  text-align: center;
}

.inicio img{
  vertical-align: middle ;
  
}

.bg-amarillo{
  background-color: #FDDD01;
}

.bg-amarillo-sumario{
  background-color: #FDDD01;
  margin-top: -10px;
}

.sumario{
  padding: 3em 0 1em 0;
  
}

.sumario p {
  border-left: 20px solid #000000;
  font-family: 'Georgia', serif !important;
  font-weight: 300;
  line-height: 1.3;
  font-size: 1.6em;
  text-align: left;
  color: #000000;
  padding-left: 3%;
}


.s-1{
  margin: 3em 0 0 0;
}

.s-2{
  margin: 1em 0;
}

.s-3{
  margin-top:0;
}

.pleca-negra{
  background-color: #000000;
  width: 100%;
  height:10px;
}

.quote-numero{
	padding: 30px;
  background-color: #FDDD01;
}
.quote-numero h3{
  font-family: 'Druk Text Web Bold', serif !important;
  font-weight: 700;
  color: #000000;
	font-size: 10em;
	line-height: .8;
  text-align: right;
}
.quote-numero h4{
  color: #000000;
	font-size: 7em;
  text-align: right;
}

.quote-numero h5{
  color: #000000;
	line-height: 1.2;
  text-align: right;
}

.foto-quote{
  background-color: #FDDD01;
  padding: 5%;
}

.foto-quote h4{
  font-size: 80px;
  margin: 0;
  text-align: right;
}

.foto-quote h3{
  text-align: right;
}

.foto-quote p{
  text-align: right;
  font-size: 22px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: lighter;
  line-height: 1.3;
}

.vertical-row {
  Float:left;
  margin: 1em;
  width: 2px;
  background-color: #000000;
}
.vertical-row-large {
  Float:left;
  margin: 1em;
  width: 2px;
  background-color: #000000;
}

.quote-numero-report{
	padding: 10px;
  text-align: center;
}
.quote-numero-report h3{
  color: #000000;
	font-size: 150px;
	line-height: 1.2;
}
.quote-numero-report h4{
  font-family: 'Druk Text Web Medium', serif !important;
  font-weight: 500;
  color: #000000;
	font-size: 2.5em;
	line-height: 1.2;
}

.icono-sector-1{
  position: absolute;
  left: -90px;
  top: 530px;
  max-width: 160px;
}

.icono-sector-2{
  position: absolute;
 right: 0;
  top: 240px;
  max-width: 160px;
}

.icono-sector-3{
  padding-top: 30px;
  max-width: 160px;
}

.card-body{
  background-color: #EEEEEE;
}

.card-body p{
  padding: 0 2%;
}


/*    CSS filtrado */ 
.head_exp{top:0px;background-color: #ed1c24;padding: 0.7em;left: 0px;position: fixed;display: block;width: 100%; border-bottom-color: #000;
  border-right-width: 2px;border-bottom-style:solid;z-index: 99; -webkit-transition: background-color 0.5s ease-out; -moz-transition: 
  background-color 0.5s ease-out; -o-transition: background-color 0.5s ease-out; transition: background-color 0.5s ease-out;}
.head_exp:hover{ background-color: #000; }


.mobile{
  display: none;
}
.desk{
  display: block;
}
/*    Termina CSS Filtrado */

button, button::after {
  width: 200px;
  height: 60px;
  font-size: 36px;
  font-family: 'Druk Text Web Medium', serif !important;
  background: linear-gradient(45deg, transparent 5%, #FF013C 5%);
  border: 0;
  color: #fff !important;
  letter-spacing: 3px;
  line-height: 88px;
  box-shadow: 6px 0px 0px #00E6F6;
  outline: transparent;
  position: relative;
  margin-top: 4%;
  z-index: 100;
}

button::after {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(80% -6px 0 0);
  --slice-2: inset(50% -6px 30% 0);
  --slice-3: inset(10% -6px 85% 0);
  --slice-4: inset(40% -6px 43% 0);
  --slice-5: inset(80% -6px 5% 0);
  
  content: 'VER BIO';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 3%, #00E6F6 3%, #00E6F6 5%, #FF013C 5%);
  text-shadow: -3px -3px 0px #F8F005, 3px 3px 0px #00E6F6;
  clip-path: var(--slice-0);
}

button:hover::after {
  animation: 1s glitch;
  animation-timing-function: steps(2, end);
}

@keyframes glitch {
  0% {
    clip-path: var(--slice-1);
    transform: translate(-20px, -10px);
  }
  10% {
    clip-path: var(--slice-3);
    transform: translate(10px, 10px);
  }
  20% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 10px);
  }
  30% {
    clip-path: var(--slice-3);
    transform: translate(0px, 5px);
  }
  40% {
    clip-path: var(--slice-2);
    transform: translate(-5px, 0px);
  }
  50% {
    clip-path: var(--slice-3);
    transform: translate(5px, 0px);
  }
  60% {
    clip-path: var(--slice-4);
    transform: translate(5px, 10px);
  }
  70% {
    clip-path: var(--slice-2);
    transform: translate(-10px, 10px);
  }
  80% {
    clip-path: var(--slice-5);
    transform: translate(20px, -10px);
  }
  90% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 0px);
  }
  100% {
    clip-path: var(--slice-1);
    transform: translate(0);
  }
}


@media (min-width: 320px) and (max-width: 700px) {
  .hamburger {
		left: 15px;
		top: 70px;
		height: 25px;
		width: 30px;
	}
	.sidebar {
		height: 70vh;
		width: 190px;
		background: #000000;
		opacity: 0.87;
		padding: 30px 40px;
	}
	.sidebar__menu {
		font-size: 15px;
		font-weight: 500;
		margin: 120px 10px 10px 10px;
	}
  .s-1 {
    margin: 2em 0;
  }
  .mobile img {
    margin-top: 58px;
  }

  .sumario{
    padding: 25px 15px;
  }
  .sumario h2 {
    font-size: 23px;
    text-align: center;
  }

  .credito {
    margin: 25px 0;
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 1em;
  }
  .location-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    z-index: 1;
    position: absolute;
    border-radius: 0;
    height: 30%;
    width: 100%;
    bottom: 0 !important;
    transition: none;
    background: #ffffffc4;
    padding-bottom: 5px;
  }
  .location-image img {
    filter: none;
    width: 150px;
  }
  
  .desk {
    display: none;
  }
  .mobile {
    display: block;
  }

  .circle-txt {
    font-size: 26px;
    line-height: 1.1;
    bottom: 30%;
    width: 100%;
  }
  .jurado h2 {
    font-size: 16px;
  }
  .texto p{
    padding-right: 15px;
    padding-left: 15px;
  }
  .texto h2{
    padding-right: 15px;
    padding-left: 15px;
  }
  .pleca-empresa {
    margin: 20px !important;
    box-shadow: #929292 4px 5px 9px;
  }

  .nombre-titular h2 {
    font-size: 3.1em;
    padding: 0.5em 0;
    line-height: 1.1;
  }
  .icono-sector-1 {
    left: 200px;
    top: 370px;
    max-width: 150px;
  }
  .icono-sector-2 {
    right: 10px;
    top: 170px;
    max-width: 150px;
  }
  .icono-sector-3 {
    padding-top: 0;
    max-width: 150px;
  }
  .pleca-empresa img {
    width: 80%;
  }
  .quote-numero h3 {
    font-size: 98px;
    line-height: 1.2;
  }
  .quote-numero h4 {
    font-size: 3.2em;
  }

  .quote-numero h5{
   font-size: 2.2em;
  }
  
  .quote-numero-intext h3 {
    font-size: 80px;
    line-height: 1.1;
  }
  .quote-numero-intext h4 {
    font-size: 2.3em;
    line-height: 1.1;
  }
  .quote-numero-bgrose h3 {
    font-size: 110px;
  }
  .quote-numero-bgrose h4 {
    font-size: 2.2em;
    line-height: 1.1;
    padding: 0 15px;
  }
  .vertical-row {
    height: 100px;
  }
  .vertical-row-large {
    height: 100px;
  }
  .seccion-report h2 {
    padding-top: 35px;
    font-size: 3.2em;
    text-align: center;
  }
  .sumario-report p {
    padding: 15px;
    text-align: center;
    font-size: 23px;
    line-height: 1.2;
    color: #6A6A6A;
  }
  .quote-numero-report h3 {
    font-size: 150px;
    line-height: 0.8;
  } 

  .col-12 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .container {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  
}

.creditos h6{
	font-size: 0.8em;
	padding-bottom: 7px;
	color: #000000 !important;
}

.creditos p{
	font-family: 'Georgia',serif !important;
	font-size: 1.1em;
	color: #000000 !important;
}

.creditos strong{
	font-family: 'Roboto',sans-serif;
}

@media (min-width: 200px) and (max-width: 675px) {
  .nombre-titular h2 {
    font-size: 2.6em;
    padding: 0.5em 0;
    line-height: 1.1;
  }
  .quote-numero h3 {
    font-size: 110px;
    line-height: 1.2;
  }
  .quote-numero-intext h3 {
    font-size: 70px;
    line-height: 1.1;
  }
  .icono-sector-1 {
    left: 170px;
    top: 330px;
    max-width: 140px;
  }
  .icono-sector-2 {
    right: 10px;
    top: 155px;
    max-width: 140px;
  }
  .icono-sector-3 {
    padding-top: 0;
    max-width: 140px;
  }
  
	.hamburger {
		left: 15px;
		top: 70px;
		height: 25px;
		width: 30px;
	}
	.sidebar {
		height: 85vh;
		width: 263px;
		background: #000000;
		opacity: 0.95;
		padding: 30px 40px;
	}
	.sidebar__menu {
		font-size: 15px;
		font-weight: 500;
		margin: 120px 10px 10px 10px;
	}

  .personaje{
    position: relative;
    top: 10px;
  }


.bg-amarillo-sumario{
  margin-top: -1px;
}

.bg-amarillo{
  background-color: #FDDD01;
  margin-top: -32px;
}

.datos-perfil h2{
  font-size: 4.6em;
}

.datos-perfil h3{
  font-size: 2em;
}

.pie-foto {
  padding-left: 0px;
}

.s-3{
  top:-33px;
}

}
