*, :after, :before {
	box-sizing: border-box;
}
*, *:focus {
	outline: none;
	background: none;
	transition: .3s;
}
body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-size: 90%;
	color: #fff;
	background: #000;
	transition: .3s all;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-font-variant-ligatures: no-common-ligatures;
	font-variant-ligatures: no-common-ligatures;
	font-family: 'MigraLight', "Helvetica Neue", Helvetica, Arial, sans-serif;
  transition-timing-function: cubic-bezier(.55,.01,.34,1);
}
#loader {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999999;
	background: #000;
	overflow: hidden;
	top: 0
}
#loader_logo {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -10px 0 0 -10px;
	background: url(../img/loader.png) no-repeat center center;
	background-size: cover;
	z-index: 999999;
	-webkit-animation: blinker 2s linear infinite;
	-moz-animation: blinker 2s linear infinite;
	animation: blinker 2s linear infinite !important;
}
@-moz-keyframes blinker {
	0% {
		opacity:1.0;
	}
	50% {
		opacity:0.0;
	}
	100% {
		opacity:1.0;
	}
}
@-webkit-keyframes blinker {
	0% {
		opacity:1.0;
	}
	50% {
		opacity:0.0;
	}
	100% {
		opacity:1.0;
	}
}
@keyframes blinker {
	0% {
		opacity:1.0;
	}
	50% {
		opacity:0.0;
	}
	100% {
		opacity:1.0;
	}
}
body, p, h1, h2, h3 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}
section {
	display: table;
	width: 100%;
	box-sizing: border-box;
}
h1 {
	font-size: 80px;
	line-height: 0.9;
	text-transform: uppercase;
	text-align: center;
}
h2 {
	font-size: 80px;
	line-height: 0.9;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 60px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 25px;
	padding-top: 30px;
	font-family: 'CircularBold', "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
}
p {
	font-size: 20px;
	font-size: 1.15rem;
	letter-spacing: 0;
	letter-spacing: .02rem;
	line-height: 1.3;
	margin-bottom: 20px;
	font-family: 'CircularBold', "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
}
p:last-child {
	margin-bottom: 0 !important
}
p strong {
	font-style: italic;
	font-size: 110%;
	color: #aaa;
	font-family: 'MigraLight', "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 0.9
}
abbr {
  font-family: 'CircularBold', "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: rgba(0,0,0,0.05);
  border-radius: 100%;
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto 30px;
  font-size: 14px;
  padding: 10px;
  box-sizing: content-box;
	background: white;
	color: #A16C54;
	border: 2px solid #a16c54
}
em {
	text-transform: initial;
}
li {
	font-family: 'CircularBold', "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a:hover:not(header a):not(.card a):not(.pyramid a) {
	opacity: .3
}
a:not(header a) {
	color: #ff4027;
	font-family: 'CircularBold', "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
}
p a {
	text-decoration: underline !important
}
sup {
	font-size: 50%
}
button{
	font-family: 'CircularBold', "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background: transparent;
  text-transform: uppercase;
  font-size: ;
  text-indent: 0;
  text-align: center;
  border: 2px solid #ff4027;
  color: #ff4027;
  padding: 6px 13px;
  border-radius: 100vw;
	margin: 3vw 0;
  min-width: 130px;
}
button:hover {
  background: #ff4027;
  color: white;
}
::-moz-selection {
	background-color:#ff4027;
	color:#fff
}
::-webkit-selection {
	background-color:#ff4027;
	color:#fff
}
::selection {
	background-color: #ff4027;
	color: #fff
}
iframe {
	width: 100%;
	height: auto;
	border: none;
	margin: 0;
	padding: 0;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––  PRINCIPALS  */
.content {
	width: 100%;
	margin: 0 auto;
	padding: 120px 0
}
.center {
	text-align: center;
	margin: 0 auto;
	left: 0;
	right: 0
}
.center-x {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.opacity {
	opacity: .3
}
.noOverflow {
	overflow: hidden;
}
.swhite {
	background: white;
	color: black
}
.fullH {
	min-height: 100vh;
	height: 100vh;
	display: block;
}
.maxH{
	height: 100vh;
	display: block;
}
.fullH .col-2, .xlH .col-2 {
	height: 100%;
}
.medH {
	height: 50vh;
	display: block;
	max-height: 400px
}
.xlH {
	height: 120vh;
	display: block;
}
.col-1 {
	width: 100%;
	float: left;
	position: relative;
}
.col-2{
	width: 50%;
	float: left;
	position: relative;
}
.col-3{
	width: 33%;
	float: left;
	position: relative;
}
.smallP {
	font-size: 66% !important
}
.card {
	border-radius: 10px;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	height: auto;
	display: block;
}
.hidden {
	display: none
}
.shown {
	display: block;
}
.jump_fullH {
	margin-top: 100vh
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––  AGE VERIFICATION  */
.overlay-verify {
  position:fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999993;
	background-size: 160%;
	background: #000
}
.wrap_box .logo {
  width: 100%;
	margin-bottom: 30px
}
.wrap_box .card {
  background: black;
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999999;
  width: 90%;
	max-width: 350px;
  height: auto;
  display:table;
}
.wrap_box .card p {
	margin: auto;
}
.wrap_box .card button {
	display: inline-block;
	margin: 40px 10px
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––  INDEX  */
.index {
	background-color: #000;
	position: relative;
}
.videoH {
	display: block;
}
.index p {
	width: 80%;
	max-width: 550px;
	margin: 0 auto 20px;
	text-transform: uppercase;
	text-align: center;
}
.container {
	-webkit-align-items: center;
	align-items: center;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	position: relative;
	width: 100%;
}
.container .content {
	color: #fff;
	margin: 0 auto;
	text-align: center;
}
.parallax-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 130%;
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}
.pyramid .parallax__container .parallax {
	background-size: 70% !important
}
.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -100;
}
.parallax__container .parallax {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
}
.bg1 {
	background-image: url(../img/index/PERRANEGRA_mezcal_artesanal_mexico_oaxaca_espadin_cafe_cannabis.webp);
	background-color: black
}
#bg3 {
	background-image: url(../img/index/PERRANEGRA_mezcal_artesanal_mexico_oaxaca_espadin_cafe_cannabis.webp);
}
.arrow {
	-webkit-animation: bounce 3s infinite;
	animation: bounce 3s infinite;
	bottom: 35px;
	left: calc(50% - 19px);
	position: absolute;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: opacity 250ms ease-in-out;
	width: 38px;
}
.arrow--hide {
	opacity: 0;
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}
.index_1 {
	overflow: hidden;
	position: fixed !important;
	top: 0;
	background-image: url(../img/index/PERRANEGRA_mezcal_artesanal_mexico_o axaca_espadin_cafe_cannabis.jpg);
	background-position: center;
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #000
}
.index_1 video {
  width: auto;
  height: 110%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  filter: grayscale(100%) brightness(50%) contrast(300%) saturate(100%);
	mix-blend-mode: screen;
}
.wrap_msk {
	width: 250px;
	height: 250px;
  display: block;
	position: relative;
	margin: 0 auto;
}
.msk {
	background: url(../img/msk.png) no-repeat center center;
  margin: 0 auto;
  background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5
}
.gold {
	background: url(../img/copper1.jpg) no-repeat center center;
	background: url(../img/copper2.png) no-repeat center center;
  background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.rotating {
  -webkit-animation: rotating 9s linear infinite;
  -moz-animation: rotating 9s linear infinite;
  -ms-animation: rotating 9s linear infinite;
  -o-animation: rotating 9s linear infinite;
  animation: rotating 9s linear infinite;
}
.slogan {
	background: url(../img/index/PERRANEGRA_slogan.svg) no-repeat center center;
	height: 230px;
	width: 230px;
	display: block;
	margin: 0 auto 30px;
	background-size: 100% 100%
}
.presentation {
	position: relative;
	background: #0b0b0b;
	z-index: 3
}
.presentation .center-x {
	right: 0;
	margin: 0 auto;
}
.bottleMain {
	background: url(../img/index/PERRANEGRA_mezcal_bottle_mexico_oaxaca.webp) no-repeat center center;
	background-size: auto 100%;
	border: 90px solid #0b0b0b;
	border-right: none
}
.mezcalFrom {
	position: relative;
	z-index: 3;
	background-color: #000;
	padding: 100px 0;
	text-align: center;
}
.mezcalFrom p {
	margin: 20px auto 0;
	color: #a16c54;
}
.marquee {
	padding: 40px 0;
	width: 95%;
	max-width: 500px;
	margin: 0 auto;
  box-sizing: border-box;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	left: 0;
	right: 0;
	bottom: 0;
	background: black;
	height: 120px;
	position: relative;
}
.marquee:before, .marquee:after {
  position: absolute;
  top: 10px;
  width: 30px;
  height: calc(100% - 20px);
  content: "";
  z-index: 1;
}
.marquee:before {
  left: 0;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.marquee:after {
  right: 0;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.marquee iframe {
	height: 50px;
	width: 95%;
	max-width: 500px;
	left: 0;
	right: 0;
	margin: 0 auto;
	position: absolute;
	border-top: 1px solid #a16c54;
	border-bottom: 1px solid #a16c54;
}
.marquee iframe body:after {
  right: 0;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}


.marquee span, .marquee img {
	padding: 0 30px
}
.jump_marquee {
	padding-top: 90px
}
.pyramid, .shot {
	z-index: 3
}
.pyramid {
	background-image: url(../img/index/PERRANEGRA_mezcal_background_black_mexico.jpg);
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: center center;
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––  MEZCAL  */
.btn_case_info {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block !important;
	height: 40px;
	width: 40px;
	cursor: pointer;
	margin-right: 0;
	right: 80px;
	top: 80px;
	background: white;
	border-radius: 100%;
	position: absolute;
}
#btn2 {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .6s;
	-moz-transition: .6s;
	-o-transition: .6s;
	transition: .6s;
	cursor: pointer;
	z-index: 9;
}
#btn2 span {
	display: block;
	position: absolute;
	height: 2px;
	width: 40%;
	background: #000;
	border-radius: 5px;
	opacity: 1;
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	top: 50%;
}
#btn2 span:last-child {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
#btn2.open {
	position: fixed;
	background: rgba(0,0,0,0.05)
}
#btn2.open span {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#btn2.open span:last-child {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.case_info{
	position: fixed;
	width: 100%;
	height: 100%;
	padding-bottom: 0;
	left: 0;
	top: -100%;
	z-index: 8;
	background: white;
	color: black;
	padding: 90px 5vh 5vh;
	box-sizing: border-box;
	overflow: auto;
	text-align: center;
}
.case_info_shown {
  transform: translate(0,100%);
}
.wrap_process {
	width: 1000px;
	box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
	display: flex;
	justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
	gap: 20px 20px;
	margin: 0 auto;
}
.wrap_process .card .icon_taste {
	background-size: auto 80%;
	width: 100%;
}
.mezcal_cultivate {
	background-image: url(../img/icons/icon_perranegra_mezcal_process_cultivate.svg);
}
.mezcal_cooking {
	background-image: url(../img/icons/icon_perranegra_mezcal_process_cooking.svg);
}
.mezcal_grinding {
	background-image: url(../img/icons/icon_perranegra_mezcal_process_grinding.svg);
}
.mezcal_ferment {
	background-image: url(../img/icons/icon_perranegra_mezcal_process_ferment.svg);
}
.mezcal_distillation {
	background-image: url(../img/icons/icon_perranegra_mezcal_process_distillation.svg);
}
.mezcal_distillation_cannabis {
	background-image: url(../img/icons/icon_perranegra_mezcal_process_distillation_cannabis.svg);
}
.mezcal_distillation_coffee {
	background-image: url(../img/icons/icon_perranegra_mezcal_process_distillation_coffee.svg);
}
.wrap_process .card h3 {
	margin: 0 auto 10px;
}
.case_info .card {
	width: 32%;
	background: rgba(0,0,0,0.05);
	padding: 40px 30px
}
.case_info p:not(.card p) {
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}
.case_info p:last-of-type {
	margin-bottom: 50px;
}
.products {
	text-align: center;
	margin: 0 auto;
}
.wrap_tablinks {
	height: 90px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 3
}
.switch {
  position: relative;
  width: 220px;
	height: 34px;
	background: #333;
	margin: 0 auto 0;
	border-radius: 30px;
	top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.switch__label {
  display: inline-block;
	height: 32px;
  padding: 1px 0;
  text-align: center;
  cursor: pointer;
  transition: color 200ms ease-out;
	width: 24%;
	box-sizing: border-box;
}
.switch__label:hover {
	opacity: .5
}
.switch__label img {
	height: 32px;
	width: 36px
}
.switch__indicator {
  width: 56px;
  height: 56px;
  position: absolute;
  top: -11px;
  left: 0;
  border-radius: 50%;
  transition: transform 600ms cubic-bezier(.02,.94,.09,.97), background 300ms cubic-bezier(.17,.67,.14,1.03);
  transform: translate3d(1rem,0,0);
}
.switch input:checked ~ .switch__indicator {
	background-position: center;
	background-size: 70%;
	background-repeat: no-repeat;
}
.switch input#one:checked ~ .switch__indicator {
  background-color: #F7B916;
	background-image: url(../img/icons/icon_perranegra_mezcal_espadin.png);
  transform: translate3d(0,0,0);
}
.switch input#two:checked ~ .switch__indicator {
	background-color: #F45A00;
	background-image: url(../img/icons/icon_perranegra_mezcal_cafe.png);
	transform: translate3d(97%,0,0);
}
.switch input#three:checked ~ .switch__indicator {
  background-color: #E20B7C;
	background-image: url(../img/icons/icon_perranegra_mezcal_tobala.png);
  transform: translate3d(198%,0,0);
}
.switch input#four:checked ~ .switch__indicator {
  background-color: #00A66A;
	background-image: url(../img/icons/icon_perranegra_mezcal_cannabis.png);
	transform: translate3d(295%,0,0);
}
.switch input[type="radio"], .switch input[type="radio"]:not(:checked), .switch input[type="radio"]:checked {
  display: none;
}
.wrap_tabcontent {
	height: 100vh;
	background:  ;
	position: relative;
	overflow-x: hidden;
}
.swiper-container {
  width: 100%;
  height: 100vh;
	cursor: grab;
	background-color:
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
	display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
	background-size: cover !important;
}
.swiper-slide * {
	text-align: center;
}
.swiper-slide h2 {
	margin-bottom: 30px
}
.swiper-slide li {
	text-align: left;
}
.swiper-slide div {
	max-width: 600px;
	margin: 0 auto;
	width: 75%;
  top: 50%;
  -webkit-transform: translateX(-50%) !important;
  -moz-transform: translateX(-50%) !important;
  -ms-transform: translateX(-50%) !important;
  transform: translateY(-50%) !important;
  position: absolute;
  left: 0;
  right: 0;
}
.swiper-wrapper p:not(.notes p) {
	margin-left: auto;
	margin-right: auto;
	max-width: 550px
}
.notes div {
	max-width: initial
}
.notes p {
	max-width:;
}
.swiper-slide aside {
	width: 33%;
	display: inline-block;
	vertical-align: top;
	padding: 0 10px;
	box-sizing: border-box;
}
.mezcal_sight {
	background-image: url(../img/icons/icon_perranegra_mezcal_sight.svg);
}
.mezcal_smell {
	background-image: url(../img/icons/icon_perranegra_mezcal_smell.svg);
}
.mezcal_taste {
	background-image: url(../img/icons/icon_perranegra_mezcal_taste.svg);
}
.swiper-slide aside * {
	margin: 0 auto;
}
.swiper-slide aside .icon_taste {
	width: 50px;
	height: 50px;
	border: 2px solid #A16C54
}
.swiper-slide aside h3 {
	margin: 15px auto 10px;
}
#espadin .swiper-slide:nth-child(1) {
	background: url(../img/mezcal/espadin/PERRANEGRA_mezcal_artesanal_espadin_mexico.webp) no-repeat;
	background-size: cover;
	background-position: center;
}
#espadin .swiper-slide:nth-child(2) {
	background: url(../img/mezcal/espadin/PERRANEGRA_mezcal_artesanal_espadin_mexico_2.webp) no-repeat;
	background-position: bottom center;
}
#espadin .swiper-slide:nth-child(3) {
	background: url(../img/mezcal/espadin/PERRANEGRA_mezcal_artesanal_espadin_mexico_3.webp) no-repeat;
	background-size: contain !important;
	background-position: center;
}
#espadin .swiper-slide:nth-child(4) {
	background: url(../img/mezcal/espadin/PERRANEGRA_mezcal_artesanal_espadin_mexico_5.webp) no-repeat;
	background-size: auto 100% !important;
	background-position: center;
}

#tobala .swiper-slide:nth-child(1) {
	background: url(../img/mezcal/tobala/PERRANEGRA_mezcal_artesanal_tobala_mexico.webp) no-repeat;
	background-size: auto 100% !important;
	background-position: center;
}
#tobala .swiper-slide:nth-child(2) {
	background: url(../img/mezcal/tobala/PERRANEGRA_mezcal_artesanal_tobala_mexico_2.webp) no-repeat;
	background-size: auto 100% !important;
	background-position: -9vh center;
}
#tobala .swiper-slide:nth-child(3) {
	background: url(../img/mezcal/tobala/PERRANEGRA_mezcal_artesanal_tobala_mexico_3.webp) no-repeat;
	background-size: contain !important;
	background-position: center;
}
#tobala .swiper-slide:nth-child(4) {
	background: url(../img/mezcal/tobala/PERRANEGRA_mezcal_artesanal_tobala_mexico_4.webp) no-repeat;
	background-size: cover !important;
	background-position: center;
}
#cafe .swiper-slide:nth-child(1) {
	background: url(../img/mezcal/cafe/PERRANEGRA_mezcal_artesanal_cafe_mexico.webp) no-repeat;
	background-position: center;
	background-size: 100% auto !important
}
#cafe .swiper-slide:nth-child(2) {
	background: url(../img/mezcal/cafe/PERRANEGRA_mezcal_artesanal_cafe_mexico_2.webp) no-repeat;
	background-position: 25vw center;
	background-size: auto 100% !important;
}
#cafe .swiper-slide:nth-child(3) {
	background: url(../img/mezcal/cafe/PERRANEGRA_mezcal_artesanal_cafe_mexico_3.webp) no-repeat;
	background-size: contain !important;
	background-position: center;
}
#cafe .swiper-slide:nth-child(4) {
	background: url(../img/mezcal/cafe/PERRANEGRA_mezcal_artesanal_cafe_mexico_4.webp) no-repeat;
	background-size: auto 100% !important;
	background-position: center;
}

#cannabis .swiper-slide:nth-child(1) {
	background: url(../img/mezcal/cannabis/PERRANEGRA_mezcal_artesanal_cannabis_mexico.webp) no-repeat;
	background-size: auto 100% !important;
	background-position: center;
}
#cannabis .swiper-slide:nth-child(2) {
	background: url(../img/mezcal/cannabis/PERRANEGRA_mezcal_artesanal_cannabis_mexico_2.webp) no-repeat;
	background-position: 20vw center;
	background-size: auto 100% !important;
}
#cannabis .swiper-slide:nth-child(3) {
	background: url(../img/mezcal/cannabis/PERRANEGRA_mezcal_artesanal_cannabis_mexico_3.webp) no-repeat;
	background-size: contain !important;
	background-position: center;
}
#cannabis .swiper-slide:nth-child(4) {
	background: url(../img/mezcal/cannabis/PERRANEGRA_mezcal_artesanal_cannabis_mexico_4.webp) no-repeat;
	background-size: auto 100% !important;
	background-position: center;
}
.info_cont {
	position: absolute;
	bottom: 8.5vh;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-transform: uppercase;
	z-index: 2;
	font-size: 1.5vh;
  font-family: 'CircularBold', "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.info_cont span {
	display: inline-block;
	margin: 0 4vw
}
.swipe_shop {
	background-color: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
	max-width: 300px;
	width: 90%;
	padding: 70px 30px;
	margin: 0 auto;
}
.swipe_shop p {
	margin: 0 auto;
}
.swipe_shop button {
	margin: 30px auto 0
}
.icon_taste {
	width: 90px;
	height: 90px;
	border-radius: 100%;
	display: block;
	margin: 0 auto 30px;
	background-size:100%;
	background-position: center center;
	background-repeat: no-repeat;
}
.taste_espadin {
	background-image: url(../img/icons/icon_perranegra_taste_drink_shop_espadin.svg);
}
.taste_tobala {
	background-image: url(../img/icons/icon_perranegra_taste_drink_shop_tobala.svg);
}
.taste_coffee {
	background-image: url(../img/icons/icon_perranegra_taste_drink_shop_coffee.svg);
}
.taste_cannabis {
	background-image: url(../img/icons/icon_perranegra_taste_drink_shop_cannabis.svg);
}
.swiper-pagination {
	bottom: 4% !important
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––  CONTACT  */
.contact {
	background: black url(../img/contact/PERRA_NEGRA_mezcal_maguey_mexico.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 60vw
}
.contact .col-3 {
	margin-top: 80px;
	font-size: 35px;
	line-height: 1
}
.contact .col-3 a {
	color: #A16C54
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––  LEGALS  */
.legal .content {
	max-width: 700px;
}
.legal ul {
	list-style-type: circle;
}
.legal li{
	font-family: 'CircularBold', "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1.25rem;
  letter-spacing: 0;
  letter-spacing: .02rem;
  line-height: 1.3;
  margin-bottom: 20px;
	text-transform: uppercase;
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––  FOOTER  */
footer {
	padding: 60px 0;
	background: black;
	text-align: center;
	font-size: 20px;
	display: table;
	float: left;
	width: 100%;
	position: relative;
	z-index: 3;
	background-color: #000
}
footer * {
	text-align: center;
}
footer div {
	padding: 10px 0
}
footer span {
	width: 100%;
	display: block;
	line-height: 1.4
}
footer span:nth-child(2) a {
	margin: 0 6px
}
footer a {
	color: white !important;
	line-height: 1.2
}
footer .selected {
	opacity: .5
}
.instagram, .facebook, .spotify {
	background-size: 120%;
	background-position: center;
	background-repeat: no-repeat;
	height: 60px;
	width: 60px;
	margin: 0 8px;
	display: inline-block;
}
.instagram {
	background-image: url(../img/icons/icon_perranegra_instagram.svg);
}
.facebook {
	background-image: url(../img/icons/icon_perranegra_facebook.svg);
}
.spotify {
	background-image: url(../img/icons/icon_perranegra_spotify.svg);
}
footer .logo {
	margin: 10px auto;
}
.legal_links {
	margin-bottom: 20px
}
.legal_links a {
	margin: 0 10px;
	letter-spacing: 0.05em;
	font-size: 70%
}
.byNVN {
	font-size: 60%;
}
.byNVN a {
opacity: .5
}
.byNVN a:hover {
	color: #c19a5b !important;
	opacity: 1 !important
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––  COOKIES  */
#div-cookies {
	position: fixed;
	bottom: 15px;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 650px;
	background-color: #1b1b1b;
	text-align: center;
	z-index: 99999;
	margin: 0 auto;
	color: white;
	padding: 15px;
	box-sizing: border-box;
	border-radius: 5px;
}
#div-cookies a {
	opacity: .5;
	color: white
}
#div-cookies a:hover {
	opacity: 1
}
#div-cookies p {
	width: 85%;
	max-width: 450px;
  font-size: 12px;
  line-height: 1.5;
	padding-bottom: 15px;
	margin: 0 auto;
	text-transform: uppercase;
}
#div-cookies button {
	margin: 0;
  font-size: 14px;
  padding: 6px 15px;
  min-width: auto;
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––  TEMPORARY SHOP  */
.temp_shop {
	background: url(../img/shop/PERRA_NEGRA_mezcal_artesanal_cempansuchil_mexico.jpg) center no-repeat;
	height: 100%;
	width: 100%;
	background-size: 100%
}
.temp_shop .card {
	z-index: 9;
  background-color: rgba(0,0,0,.6);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
	left: 0;
	right: 0;
	margin: 0 auto;
  max-width: 380px;
	width: 85%;
  padding: 30px;
}
.wrap_badges {
	margin: 40px 0
}
.badge {
	margin: 10px auto;
	display: block;
	width: 260px;
	height: 100px;
	border-radius: 10px;
	background-color: rgba(255,255,255,1);
	background-position: center;
	background-repeat: no-repeat;
}
.badge:hover {
	background-color: rgba(255,255,255,0.6)
}
.amazon {
	background-image: url(../img/shop/PERRANEGRA_amazon_tienda_shop_mezcal.svg);
	background-size: 45%
}
.ml {
	background-image: url(../img/shop/PERRANEGRA_mercado_libre_tienda_shop_mezcal.svg);
	background-size: 55%
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––  ERRORS  */
.wrap_errors {
	width: 100%;
	height: 100%;
	position: relative;
	background: #000
}
.info_error {
	width: 90%;
	max-width: 600px;
	color: #fff;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	font-family: "Helvetica Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.info_error h4 {
	font-size: 1100%;
	padding-bottom: 0;
	font-family: 'MigraLight', "Helvetica Neue", Helvetica, Arial, sans-serif;
	padding: 0;
	margin: 0 auto 30px;
	font-weight: 100
}
.info_error ul {
	max-width: 220px;
	margin: 0 auto;
	padding: 0 0 50px;
}
.info_error li {
	list-style-type: none;
	text-transform: uppercase;
}
.info_error li:first-child {
	margin-bottom: 50px;
	position: relative;
}
.info_error li:first-child:after {
	content: "";
	height: 30px;
	width: 5px;
	position: absolute;
	border-left: 1px solid rgba(255,255,255,0.5);
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 135%;
}
.wrap_errors a:hover {
	opacity: 1 !important
}
.wrap_errors button {
	margin: 0 auto;
}
