/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Share:wght@400;700&display=swap');
/* font-family: 'Share', cursive; */

html { font-size: 62.5%; } /* =10px */


/* Global Styles */
* {
	box-sizing: border-box;
}

ul {
	padding: 0;
	margin: 0;
}

li {
	list-style-type: none;
}

a {
	font-family: 'Share', cursive;
	color: #ebebeb;
	text-decoration: none;
	letter-spacing: 1px;
}

body {
	background-color: #000;
	margin: 0;
}

h1, h2, h3 {
	font-family: 'Share', cursive;
	margin: 0;
}

section {
	background-image: url('../assets/images/fire-bg.jpg');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-attachment: fixed;
	background-size: 100%;
	height: 100vh;
}

.social-button {
	background: transparent;
	border: 1px solid #000;
	border-radius: 15px;
	transition: all .2s ease-in-out;
}

.social-button:hover {
	background: #000;
	border: 1px solid #000;
}

.social-button:hover a {
	color: #fff;
}

.social-button:hover img {
	filter: invert(1);
}

.social-button a  {
	color: #000;
}

.social-button img {
	margin-right: 1rem;
	width: 3rem;
}

/* Specific Styles */
#el-as-container {
	margin: 0 auto;
	max-width: 1440px;
	text-align: center;
}

#el-as-container .landing h1 {
	font-size: 40px;
}

#el-as-container .landing {
	padding: 20px 20px 0;
	position: relative;
}

#el-as-container .landing .el-as-logo {
	display: block;
	max-width: 765px;
	margin: 0 auto;
	width: 100%;
}

#el-as-container .landing .upper-menu {
	position: relative;
}

#el-as-container .landing .upper-menu li {
	position: absolute;
	font-size: 25px;
}

#el-as-container .landing .upper-menu > li:first-child {
	left: 20px;
}

#el-as-container .landing .upper-menu > li:last-child {
	right: 20px;
}

#el-as-container .landing .upper-menu li a {
	transition: color .1s ease-in-out; 
}

#el-as-container .landing .upper-menu li a:hover {
	color: #b1aeae;
}

#el-as-container .landing .medium-content-wrapper {
	position: absolute;
	bottom: 28px;
	top: 36%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

#el-as-container .landing .social-links-wrapper {
	display: inline-block;
	clear: both;
	overflow: hidden;
	margin-top: 25px;
}

#el-as-container .landing .social-links-wrapper li {
	float: left;
	margin: 0 35px;
}

#el-as-container .landing .social-links-wrapper li.instagram-logo {
	width: 39px;
}

#el-as-container .landing .social-links-wrapper li.instagram-logo a img {
	opacity: .8;
}

#el-as-container .landing .social-links-wrapper li a img {
	display: block;
	width: 100%;
}

#el-as-container .landing .next-show-btn {
	display: block;
	position: absolute;
	bottom: 2%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 135px;
}

#el-as-container .landing .next-show-btn a span {
	display: block;
	font-family: 'Share', cursive;
	font-size: 22px;
	color: #ebebeb;
	letter-spacing: 1px;
	margin-bottom: 10px;
	transition: color .1s ease-in-out; 
}

#el-as-container .landing .next-show-btn a:hover span {
	color: #b1aeae;
}

#el-as-container .landing .next-show-btn a .down-arrow {
	width: 25px;
}

/* SHOWS SECTION */
#el-as-container .next-show {
	padding: 0 10px;
	position: relative;
}

#el-as-container .next-show img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 500px;
	width: 100%;
}

#el-as-container .next-show h1 {
	font-size: 4vw;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

#el-as-container .next-show a {
    position: absolute;
    right: 3%;
    width: 30px;
    bottom: 6%;
}

#el-as-container .next-show a .up-arrow {
    display: block;
    transform: rotate(180deg);
    width: 100%;
}

@media screen and (-webkit-min-device-pixel-ratio: 1) and (max-width: 1600px) and (min-width: 1200px) {
	#el-as-container .landing .el-as-logo {
		max-width: 640px;
	}
}

/* 				   */
/* TABLET PORTRAIT */
/* 				   */
@media screen 
  and (min-width: 768px) 
  and (max-width: 1023px) {

  	#el-as-container .landing .medium-content-wrapper {
  		top: 40%;
  	}

  	#el-as-container .landing .el-as-logo {
  		width: 87%;
  		max-width: 665px;
  	}

  	#el-as-container .landing .social-links-wrapper {
  		margin-top: 55px;
  	}
}

/* 				    */
/* TABLET LANDSCAPE */
/* 				    */
@media screen 
  and (min-width: 1024px) 
  and (max-width: 1200px) {

  	#el-as-container .landing .medium-content-wrapper {
  		top: 37%;
  	}

  	#el-as-container .landing .el-as-logo {
  		max-width: 600px;
  	}

  	#el-as-container .next-show img {
  		max-width: 400px;
  	}
}

/* 				    */
/*     MOBILE		*/
/* 				    */
@media screen 
  and (min-width: 320px) 
  and (max-width: 767px) {
  	#el-as-container .landing .el-as-logo {
  		width: 90%;
  	}

  	#el-as-container .landing .upper-menu > li {
  		font-size: 18px;
  	}

  	#el-as-container .landing .social-links-wrapper li a img {
  		height: 22px;
  	}

  	#el-as-container .landing .upper-menu > li:first-child {
  		left: 0;
  	}

  	#el-as-container .landing .upper-menu > li:last-child {
  		right: 0;
  	}

  	#el-as-container .landing .next-show-btn a span {
  		font-size: 18px;
  	}

  	#el-as-container .landing .social-links-wrapper li {
  		margin: 0 10px;
  	}

  	#el-as-container .landing .medium-content-wrapper {
  		top: 45%;
  	}

  	#el-as-container .next-show img {
  		width: 90%;
  	}
}

/* 				    */
/*  Fix for height	*/
/* 				    */


/* 				    */
/*  REDES			*/
/* 				    */
section#redes {
	background: none;
}

section#redes header {
	display: flex;
    justify-content: center;
    align-items: center;
	background-image: url(../assets/images/banner-redes_v2.jpg);
    background-repeat: no-repeat;
    background-position: 0 -107px;
    background-attachment: fixed;
    background-size: 100%;
    height: 360px;
}

section#redes .upper-content {
	display: flex;
    justify-content: center;
    align-items: center;
}

section#redes header img {
	box-shadow: 0px 0px 13px 0px rgba(255,255,255,1);
	max-width: 300px;
	width: 30%;
}

section#redes .content-wrapper {
	background: #eee;
	text-align: center;
	padding: 4rem;
}

section#redes h1 {
	font-size: 5.5rem;
    margin-bottom: 1rem;
}

section#redes h2 {
	font-size: 2rem;
    font-weight: 500;
}

section#redes .social-wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
    margin: 3rem auto;
	width: 700px;
}

section#redes .social-wrapper .social-button {
	display: flex;
	justify-content: center;
	margin: 0 1rem 1.5rem;
	height: 5.2rem;
	width: 25rem;
}

section#redes .social-wrapper .social-button.apple-music img {
	width: 2.5rem;
}

section#redes .social-wrapper .social-button a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
    letter-spacing: 0;
	padding: 1rem 0;
	width: 100%;
	height: 100%;
}

section#redes .social-wrapper-bottom {
	display: flex;
	justify-content: center;
}

section#redes .social-wrapper-bottom li {
	margin: 0 1rem;
}

section#redes .social-wrapper-bottom img {
	width: 3.8rem;
}

section#redes .social-wrapper-bottom a {
	transition: all .2s ease-in-out;
}

section#redes .social-wrapper-bottom a:hover {
	opacity: .7;
}

@media screen and (max-width: 768px) {
	section#redes header {
		height: 160px;
		background-position: top;
		background-size: contain;
	}

	section#redes .content-wrapper {
		padding: 2rem;
	}

	section#redes .social-wrapper {
		width: 100%;
	}

	section#redes header img {
		max-width: 130px;
		width: 40%;
	}

	section#redes h1 {
		font-size: 4rem;
	}
}