* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  flex-flow: column nowrap;
  justify-content: space-between;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.generic-anchor {
  color: #999;
}
.generic-anchor:visited {
  color: #ccc;
}
.generic-anchor:hover {
  color: #ff0000;
}

.flex-rw {
  display: flex;
  flex-flow: row wrap;
  text-align: center;
}
footer {
  background: #F5F6F7;
  margin-top: auto;
  width: 100%;
}

.footer-list-top {
  width: 33.333%;
  font: .8em "Montserrat Medium", sans-serif;
}

.footer-list-top > li {
  text-align: center;
  padding-bottom: 0px;
}

.footer-list-header {
  padding: 10px 0 5px 0;
  color: #000000;
  font: 2vw "Montserrat Medium", sans-serif;
}

.footer-list-anchor {
  font: 1em "Montserrat Medium", sans-serif;
}

.footer-social-section {
  width: 100%;
  align-items: center;
  justify-content: space-around;
  position: relative;
  margin-top: 1px;
}

.footer-social-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 5%;
  left: 10px;
  border-top: 1px solid #ccc;
  width: calc(100% - 20px);
}


.footer-social-connect {
  display: flex;
  align-items: center;
  font: 1.3em "Oswald", sans-serif;
  color: #000000;
}

.footer-social-small {
  font-size: 0.6em;
  padding: 0px 20px;
}

.footer-social-overlap > a {
  font-size: 1.5em;
}

.footer-social-overlap > a:not(:first-child) {
  margin-left: 0;
}

.footer-bottom-section {
  width: 100%;
  padding: 10px;
  border-top: 1px solid #ccc;
  margin-top: 10px;
}

.footer-bottom-section > div:first-child {
  margin-right: auto;
}

.footer-bottom-wrapper {
  font: .9em "Montserrat Medium", sans-serif;
  color: #999;
}

.footer-address {
  display: inline;
  font-style: normal;
}

@media only screen and (max-width: 768px) {
  .footer-list-header {
    font-size: .8em;
  }

  .footer-list-anchor {
    font-size: .5em;
  }

  .footer-social-connect {
    font-size: 1.5em;
  }

  .footer-social-overlap > a {
    font-size: 1.5em;
  }

  .footer-bottom-wrapper {
    font-size: .8em;
  }
}
@media only screen and (max-width: 568px) {
  main {
    font-size: 5em;
  }

  .footer-list-top {
    width: 100%;
  }

  .footer-list-header {
    font-size: 2em;
  }

  .footer-list-anchor {
    font-size: 1em;
  }

  .footer-social-section {
    justify-content: center;
  }

  .footer-social-section::after {
    top: 25%;
  }

  .footer-social-connect {
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .footer-social-overlap {
	display: flex;
    justify-content: center;
  }

  .footer-social-icons-wrapper {
    
	width: 100%;
    padding: 0;
  }

  .footer-social-overlap > a:not(:first-child) {
    margin-left: 20px;
  }

  .footer-bottom-section {
    padding: 0 5px 10px 5px;
  }

  .footer-bottom-wrapper {
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .footer-social-overlap > a {
    margin: auto;
  }

  .footer-social-overlap > a:not(:first-child) {
    margin-left: 0;
  }

  .footer-bottom-rights {
    display: block;
  }
}
@media only screen and (max-width: 320px) {
  .footer-list-header {
    font-size: 1em;
  }

  .footer-list-anchor {
    font-size: .5em;
  }

  .footer-social-connect {
    font-size: 1em;
  }

  .footer-social-overlap > a {
    font-size: 2em;
  }

  .footer-bottom-wrapper {
    font-size: .5em;
  }
}



.background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: 130vh;
  position: fixed;
  width: 100%;
  transform: translateY(30vh);
  transition: all 1.2s cubic-bezier(0.22, 0.44, 0, 1);
}
.background:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.background:first-child {
  background-image: url(01.jpg);
  transform: translateY(-15vh);
}
.background:first-child .content-wrapper {
  transform: translateY(15vh);
}
.background:nth-child(2) {
  background-image: url(02.jpg);
}
.background:nth-child(3) {
  background-image: url(03.jpg);
}

/* Set stacking context of slides */
.background:nth-child(1) {
  z-index: 3;
}

.background:nth-child(2) {
  z-index: 2;
}

.background:nth-child(3) {
  z-index: 1;
}

.content-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-flow: column nowrap;
  color: #fff;
  font-family: Montserrat;
  text-transform: uppercase;
  transform: translateY(40vh);
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 1.7s cubic-bezier(0.22, 0.44, 0, 1);
}
.content-title {
  font-size: 12vh;
  line-height: 1.4;
}

.background.up-scroll {
  transform: translate3d(0, -15vh, 0);
}
.background.up-scroll .content-wrapper {
  transform: translateY(15vh);
}
.background.up-scroll + .background {
  transform: translate3d(0, 30vh, 0);
}
.background.up-scroll + .background .content-wrapper {
  transform: translateY(30vh);
}

.background.down-scroll {
  transform: translate3d(0, -130vh, 0);
}
.background.down-scroll .content-wrapper {
  transform: translateY(40vh);
}
.background.down-scroll + .background:not(.down-scroll) {
  transform: translate3d(0, -15vh, 0);
}
.background.down-scroll + .background:not(.down-scroll) .content-wrapper {
  transform: translateY(15vh);
}
/* Start: Video Responsive */
.video-responsive {
    overflow:hidden;
    padding-bottom:400px; /* Adecua este valor para controlar la altura del video */
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
/* End: Video Responsive */
