@font-face {
    font-family: 'Fira Sans', sans-serif;
    src: url('https://fonts.googleapis.com/css?family=Fira+Sans:400,700');

}


body {
	font-family: 'Fira Sans', sans-serif;
  margin: 0;
}

.grid, footer {
width: 100%;
height: 100vh;
text-align: center;
	color: #e61f73;
	background: #bc1e5d;
	z-index: 0;
}


footer {
  position: relative;
  z-index: 3;
	background-color: #ffffff;
}

.title,
.title-filler {
  width: 100%;
  height: 100vh;
background: #bc1e5d;
  text-align: center;
	color: #fff;
}

.copy {
  padding: 16px;
	font-size: 20px;
	
}



h1 {
  margin-top: 0;
}

img {
  max-width: 100%;
  display: block;
}

.section-container:before {
  content: '';
  display: table;
}

.section-container:after {
  content: '';
  display: block;
  clear: both;
}


@media screen and (min-width : 739px ){
  .copy {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px 50px;
  }

  .item {
    width: 50%;
    height: 100vh;
    text-align: center;
    float: left;
  }

  .item img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
  }

  h1 {
    font-size: 40px;
  }

  .left-side,
  .right-side {
    width: 50%;
  }

  .left-side .item,
  .right-side .item {
    width: 100%;
    float: none;
    margin-bottom: 0;
  }

  .dot-nav {
    display: block;
  }
}


#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}


.vermasanimado{
	
	  -webkit-animation: pulsate 1.5s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.0
}
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}