html, body {
    width: 100%;
    height: 100%;
}
.embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	margin-bottom: 30px;
}
.embed iframe, .embed object, .embed embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
main {
    width: 100%;
}
.ico{
    width: 100%;
    text-align: center;
}
.ico img {
   display: inline-block
}
section {
    background-size: cover;
    background-position: center;
}
section .main {
    max-width: 900px;    
    padding: 50px auto 100px 10%;
    margin: auto;
    text-align: left;
    position: relative;
    z-index: 10
}

section .label {
    width: 50%;
    height: 140px;
    background-color: #f6911e;
    top: 460px;
    position: absolute;
    vertical-align: middle
}
section .label h1 {
    padding: 15px;
    height: 140px;
    width: 280px;
    background-color: #006594;
    font-size: 1.2em;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-align: right;
    border-right: solid 4px #fff;
    float: left;
    display: inline-block;
}
section .label p{
    width: 50%;
    float: left;
    color: #000;
    padding: 18px;
}
section h1 {
    margin-bottom: 25px;
    font-family: 'Oswald', sans-serif;
	font-size: 2em;
    color: #FEBE10;
    
}
section h2 {
	font-size: 1.2em;
	font-weight: 200;
	color: #ddd;
}
section p {
	margin-bottom: 20px;
    color: #fff;
    font-size: 1.3em;
	line-height: eem;
	font-weight: 400;
}
#playlist {
    width: 100%;
    text-align: center;
}
#playlist li {
    width: 120px;
    height: 120px;
    margin:  auto 60px;
    display: inline-block
}
#playlist li span {
	font-family: 'Open Sans', serif;
    font-size: 0.9em;
    color: #006594;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 10px
}
article .main {
    max-width: 800px;
    padding: 40px 10px 25px 10px;
    margin: auto;
}
article img {
    display: block;
}
article h1 {
    margin-bottom: 10px;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
	font-size: 1.3em;
    color: #006594
}
article h2 {
    margin-bottom: 15px;
	font-size: 1.2em;
	font-weight: 200;
	color: #696969;
}
article p {
	font-size: 1em;
	line-height: 1.em;
	font-weight: 400;
	margin-bottom: 20px;
}
article p.column {
    width: 40%;
    margin-left: 5%;
    float: right;
}
.designer {
    width: 100%;
    margin: auto;
    background-color: #f0f0f0;
}
.designer li {
    text-align: left;
    width: 49.8%;
    display: inline-block;
    vertical-align: top
}
.designer li img {
    width: 100%
}
.designer2 {
    width: 100%;
    margin: auto;
    background-color: #f0f0f0;
    display: none
}
.designer2 li {
    text-align: left;
    width: 100%;
    display: inline-block;
    vertical-align: top
}
.designer2 li img {
    width: 100%
}
@media screen and (max-width: 600px) {
    article p.column {
        width: 90%;
        margin: auto;
        float: none;
    }
    .designer{
    display: none
    }
    .designer2 {
    display: block
}    
}
blockquote {
    color: #7e7e7e;
	width: 80%;
    margin: 30px auto;
    padding: 0 0 0 20px;
	font-family: 'Open Sans', serif;
    font-size: 1.1em;
    font-weight: 600;	
    border-left: #febe10 10px solid;
}
blockquote span {
	margin-top: 15px;
	font-family: 'Open Sans', serif;
	font-size: 0.9;
    color: #006494;
}
.question {
    vertical-align: top;
    margin: auto;
    width: 33%;
    height: 720px;
    display: inline-block;
    padding: 20px;
}
.question h1{
    text-align: center
}
.question img {
    width: 100%
}

/*OTROS*/
.arrow {
    width: 50px;
    height: 50px;
    display: block;
    margin-top: 20px;
    border-radius: 50%;
    background-color: #006594;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .5s ease;
}
.arrow.down {
    background-image: url(/gnfactory/LNC/GNF/2017/07/28/0007/svg/arrow_down.svg);
}
.arrow:hover {
    opacity: 1;
}

/**
 * Material Modal CSS
 */
.modal {
  will-change: visibility, opacity;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition-delay: $modal-delay;
          transition-delay: $modal-delay;
}
.modal img {
    display: inline-block
}

.modal--active {
  visibility: visible;
  opacity: 1;
}
.modal--align-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.modal__bg {
  background: transparent;
}
.modal__dialog {
  max-width: 600px;
  padding: 1.2rem;
}
.modal__content {
  will-change: transform, opacity;
  position: relative;
  padding: 2.4rem;
  background: #fff;
  background-clip: padding-box;
  box-shadow: 0 12px 15px 0 rgba(0,0,0,0.25);
  opacity: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal__content--active {
  opacity: 1;
}
.modal__close {
  z-index: 1100;
  cursor: pointer;
}
.modal__trigger {
  margin-left: 1px;
  height: 220px;
  width: 33%;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 1.2rem 2.4rem;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal__trigger--active {
  z-index: 10;
}
.modal__trigger:hover {
  background: #fff;
}
#modal__temp {
  will-change: transform, opacity;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  -webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.1s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-btns header {
  padding: 7vh 10vw;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.demo-btns header h1 {
  margin: 0;
  color: #006594;
  font-weight: 700;
}
.modal__trigger .btn {
    width: 170px;
    margin: auto;
    border-radius: 5px;
    border: 2px solid #fff;
    padding: 15px;
}
.modal__trigger .btn a:link{
    color: #fff;
}
.btn a:active{
    color: #fff;
}
.modal__trigger .btn a:visited{
    color: #fff;
}
.demo-btns p {
  text-align: center;
  color: #fff;
}
.demo-btns .link {
  font-size: 1em;
  color: #fff
}
.demo-btns .modal__trigger {
  margin-right: 3px;
}
@media (max-width: 640px) 
  .demo-btns .modal__trigger {
    margin-bottom: 0.8rem;
  }
@media (max-width: 800px) {
    .modal__trigger {
    width: 100%
  }
.question {
    width: 100%;
    height: 720px
    }
section h1 {
	font-size: 1.3em;
    padding: 10px;
}
section p {
    font-size: 1em;
    padding: 10px    
    }
article h1 {
    font-size: 1.4em    
    }
}
.demo-close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1.2rem;
  padding: 0.6rem;
  background: #f6911e;
  border-radius: 50%;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.demo-close svg {
  width: 24px;
  fill: #fff;
  pointer-events: none;
  vertical-align: top;
}
.demo-close:hover {
  background: #fdbd10
}

