/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:focus {
        color: white;
    text-shadow: none;
    background-color: #00C2B0;
    border-radius: 2rem;
    border: none;
}

.btn-secondary:hover{
        color: #00C2B0;
    background-color: #fff;
}

.cd-nav-trigger{display: none;}

.cd-nav-trigger {
  top: 18px;
  right: 5%;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}
.cd-nav-trigger .cd-icon,
.cd-nav-trigger .cd-icon::before,
.cd-nav-trigger .cd-icon::after {
  /* icon created in CSS */
  position: absolute;
  background-color: #FFFFFF;
  border-radius: 2px;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.no-touch .cd-nav-trigger:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.cd-nav-trigger .cd-icon {
  /* middle line of the menu icon */
  display: inline-block;
  width: 18px;
  height: 2px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
  -moz-transition: -moz-transform 0.3s, background-color 0.3s;
  transition: transform 0.3s, background-color 0.3s;
}
.cd-nav-trigger .cd-icon::before, .cd-nav-trigger .cd-icon::after {
  /* upper and lower lines of the menu icon */
  content: '';
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-nav-trigger .cd-icon::before {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}
.cd-nav-trigger .cd-icon::after {
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}
.cd-nav-trigger.project-open .cd-icon {
  /* user selects a projects - transform the icon into a 'X' */
  background-color: rgba(255, 255, 255, 0);
}
.cd-nav-trigger.project-open .cd-icon::before, .cd-nav-trigger.project-open .cd-icon::after {
  background-color: white;
}
.cd-nav-trigger.project-open .cd-icon::before {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.cd-nav-trigger.project-open .cd-icon::after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
.cd-nav-trigger.nav-open .cd-icon {
  /* user opens the navigation - transform the icon into an arrow */
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  -o-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
.cd-nav-trigger.nav-open .cd-icon::after {
  -webkit-transform: translateX(-5px) translateY(3px) rotate(45deg) scaleX(0.5);
  -moz-transform: translateX(-5px) translateY(3px) rotate(45deg) scaleX(0.5);
  -ms-transform: translateX(-5px) translateY(3px) rotate(45deg) scaleX(0.5);
  -o-transform: translateX(-5px) translateY(3px) rotate(45deg) scaleX(0.5);
  transform: translateX(-5px) translateY(3px) rotate(45deg) scaleX(0.5);
}
.cd-nav-trigger.nav-open .cd-icon::before {
  -webkit-transform: translateX(-5px) translateY(-3px) rotate(-45deg) scaleX(0.5);
  -moz-transform: translateX(-5px) translateY(-3px) rotate(-45deg) scaleX(0.5);
  -ms-transform: translateX(-5px) translateY(-3px) rotate(-45deg) scaleX(0.5);
  -o-transform: translateX(-5px) translateY(-3px) rotate(-45deg) scaleX(0.5);
  transform: translateX(-5px) translateY(-3px) rotate(-45deg) scaleX(0.5);
}

/* -------------------------------- 

 Navigation

-------------------------------- */
ul {
    list-style: none;
}

#navlinkSeparator{
margin-left: 0.5rem;
    margin-right: -1rem;
}

.cd-nav-trigger {
  position: absolute;
  z-index: 3;
}
button {
  border: none;
  outline: none;
  cursor: pointer;
}

#ctaTop {
    color: white;
    text-shadow: none;
    background-color: transparent;
    border-radius: 2rem;
    border: 1px solid white;
    padding: .75rem 1.75rem;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: -0.5rem;
}

#ctaTop:hover {
    color: #00C2B0;
    background-color: white;
}


.cd-primary-nav {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  /* height = (100% - 9%) - 9% is the space taken by the projects when the navigation is open */
  height: 100%;
  width: 100%;
  overflow: auto;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0s 0.4s;
  -moz-transition: opacity 0s 0.4s;
  transition: opacity 0s 0.4s;
  /* vertically align its content */
  display: table; 
}
.cd-primary-nav {
  display: none; 
}

.cd-primary-nav ul {
  /* vertically align inside nav */
  display: table-cell;
  vertical-align: middle;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
}
.cd-primary-nav a {
  display: inline-block;
  padding: .4em 1em;
  border-radius: 4px;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.no-touch .cd-primary-nav a:hover {
  background-color: none;
}
.cd-primary-nav .cd-label {
display: none;
}
.cd-primary-nav .cd-label::after {
  /* line below .cd-label*/
  content: '';
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -16px;
  height: 1px;
  width: 40px;
  background-color: currentColor;
}
.cd-primary-nav.nav-open {
  opacity: 1;
  -webkit-transition: opacity 0s;
  -moz-transition: opacity 0s;
  transition: opacity 0s;  
    background: #00C2B0;    
}
.cd-primary-nav.nav-open ul {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  list-style: none;    
}
@media only screen and (min-width: 1170px) {
  .cd-primary-nav a {
    font-size: 4rem;
  }
}

/* -------------------------------- 

 Support for no js 

-------------------------------- */
.no-js .cd-nav-trigger, .no-js .cd-scroll {
  display: none;
}

.no-js .cd-primary-nav {
  position: relative;
  height: auto;
  min-height: 94px;
  display: block;
  opacity: 1;
}
.no-js .cd-primary-nav::after {
  clear: both;
  content: "";
  display: table;
}
.no-js .cd-primary-nav ul {
  display: block;
  padding-left: calc(5% + 60px);
  float: right;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.no-js .cd-primary-nav ul::after {
  clear: both;
  content: "";
  display: table;
}
.no-js .cd-primary-nav li {
  display: inline-block;
  float: left;
  margin-top: 1.4em;
}
.no-js .cd-primary-nav li.cd-label {
  display: none;
}
.no-js .cd-primary-nav a {
  font-size: 1.6em;
}
/*
 * Base structure
 */

html,
body {
  height: 100%;
  background-color: white;
    font-family: 'Poppins', sans-serif;
}
body {
  color: #353535;
  text-align: left;
}

/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
  display: table;
  width: 100%;
  height: 100%; /* For at least Firefox */
  min-height: 100%;
background: url(../images/hero.jpg) no-repeat;
    background-size: contain;
    margin-bottom: 6rem;

}
.site-wrapper-inner {
  display: table-cell;
  vertical-align: top;
}
.cover-container {
  margin-right: auto;
  margin-left: auto;
}

/* Padding for spacing */
.inner {
    padding-left: 2rem;
    padding-top: 3rem;
}
/*
 * Header
 */

.masthead {
  margin-bottom: 2rem;
}

.masthead-brand {
  margin-bottom: 0;
}

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 400;
    font-size: .9rem;
  color: rgba(255,255,255,.5);
  background-color: transparent;
}

main h1 {
    color: white;
    font-weight: 600;
    font-size: 3rem;
    line-height: 3.5rem;
    margin-bottom: 1.5rem;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  color:white;
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 2rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

@media (min-width: 48em) {
  .masthead-brand {
    float: left;
  }
  .nav-masthead {
    float: right;
  }
}


/*
 * Cover
 */

.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg, .footer .btn-lg {
    padding: .75rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
}

.footerSM p{    text-align: center;
    color: #5D5D5D;
    font-size: 0.7rem;}

.footerSM{    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center
    
}

.social{

background: url("../images/spriteSM.png");
      display: inline-block;
  height: 61px;
  width: 61px;
    margin-right: 1rem;    

}

.iconsSocial{margin-left: -1.5rem}

#facebook:hover{
  background-position: 0px 61px;

}

#twitter{

  background-position: -94px 0px;

}

#twitter:hover{

  background-position: -94px 61px;

}


#linkedin{

  background-position: -176px 0px;

}

#linkedin:hover{

  background-position: -176px 61px;

}

#medium{

  background-position: -269px 0px;

}

#medium:hover{

  background-position: -269px 61px;

}


/*
 * Features
 */

.marketing h5{    color: #838385;
    font-size: 0.6rem;
    letter-spacing: 0.2rem;
    text-align: center;
    margin-bottom: .5rem;
    font-weight: 200;}



.marketing h1{ 
    font-size: 2rem;
    text-align: center;
    margin-bottom: .75rem;
    font-weight: 500;
    line-height: 2.75rem;
}
    
    
.backIphones{
    position: absolute;
    left: -300px;
    z-index: -1;
    width: 300%;
    height: 945px;
    top:670px;
}

.features{text-align: center;
margin-bottom: 6rem}

.features .h2, h2 {
    font-size: 1.3rem;
}

.features p ,.circle_icons p{
    color: #9B9B9B;
    font-size: 0.8rem;
    font-weight: 100;
}

#iphone2{
    margin-top: -5rem;
}

.how-it-works{margin-bottom: 2rem}

.featurette {text-align: left}
.featurette-heading{text-align: left !important}

.circle_icons{text-align: center}

.featurette h1 {
    font-size: 2.4rem;
    line-height: 3.25rem;
    font-weight: 600;
}

.lead {
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: 200;
    color: #9B9B9B;
}

.demo{position: relative}

.demoback{
    width: 100%;
    height: 1150px;
    position: absolute;
    z-index: -1;
    top: 1769px;}

.illus{margin-bottom: 2rem}

.moto{position: absolute;
    top: 85px;}

.vaso-agua {
    position: absolute;
    top: 45px;
    left: 50%;
    margin-left: 33px;
}
.nice {
    top: -10px;
    left: 51%;
    position: absolute;
    margin-left: 34px;
}
.circleDots {
    background: url(../images/circle_dots.svg) no-repeat;
    width: 595px;
    height: 595px;
    margin-left: 315px;
    margin-top: 100px;
    position: relative;
    zoom: 0.9;
}

@keyframes rot {
	from {
		transform: rotate(0deg)
		           translate(-290px)
		           rotate(0deg);
	}
	to {
		transform: rotate(360deg)
		           translate(-290px)
		           rotate(-360deg);
	}
}

@-webkit-keyframes slidein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-moz-keyframes slidein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-o-keyframes slidein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slidein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


.smile {
    width: 114px;
    height: 114px;
    position: absolute;
    top: 257px;
    left: 257.5px;
    margin: -20px;
    animation: rot 10s infinite linear; 

}

.delay1{
    -webkit-animation-delay: 1.25s; /* Safari 4.0 - 8.0 */
    animation-delay: 1.25s;
}

.delay2{
    -webkit-animation-delay: 2.5s; /* Safari 4.0 - 8.0 */
    animation-delay: 2.5s;
}

.delay3{
    -webkit-animation-delay: 3.75s; /* Safari 4.0 - 8.0 */
    animation-delay: 3.75s;
}

.delay4{
    -webkit-animation-delay: 5s; /* Safari 4.0 - 8.0 */
    animation-delay: 5s;
}

.delay5{
    -webkit-animation-delay: 6.25s; /* Safari 4.0 - 8.0 */
    animation-delay: 6.25s;
}


.delay6{
    -webkit-animation-delay: 7.5s; /* Safari 4.0 - 8.0 */
    animation-delay: 7.5s;
}


.delay7{
    -webkit-animation-delay: 8.75s; /* Safari 4.0 - 8.0 */
    animation-delay: 8.75s;
}

.sentence {
    font-size: 1.4rem;
    color: #5D5D5D;
    font-weight: 100;
    padding-top: 270px;
    margin-left: -205px;
}

.itemsSlide{font-weight: 600}

/*Vertical Sliding*/
.slidingVertical{
	display: inline;
	text-indent: 8px;
}
.slidingVertical span{
	animation: topToBottom 12.5s linear infinite 0s;
	-ms-animation: topToBottom 12.5s linear infinite 0s;
	-webkit-animation: topToBottom 12.5s linear infinite 0s;
	color: #00C2B0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}
.slidingVertical span:nth-child(2){
	animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	-webkit-animation-delay: 2.5s;
}
.slidingVertical span:nth-child(3){
	animation-delay: 5s;
	-ms-animation-delay: 5s;
	-webkit-animation-delay: 5s;
}
.slidingVertical span:nth-child(4){
	animation-delay: 7.5s;
	-ms-animation-delay: 7.5s;
	-webkit-animation-delay: 7.5s;
}
.slidingVertical span:nth-child(5){
	animation-delay: 10s;
	-ms-animation-delay: 10s;
	-webkit-animation-delay: 10s;
}

/*topToBottom Animation*/
@-moz-keyframes topToBottom{
	0% { opacity: 0; }
	5% { opacity: 0; -moz-transform: translateY(-50px); }
	10% { opacity: 1; -moz-transform: translateY(0px); }
	25% { opacity: 1; -moz-transform: translateY(0px); }
	30% { opacity: 0; -moz-transform: translateY(50px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-webkit-keyframes topToBottom{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform: translateY(-50px); }
	10% { opacity: 1; -webkit-transform: translateY(0px); }
	25% { opacity: 1; -webkit-transform: translateY(0px); }
	30% { opacity: 0; -webkit-transform: translateY(50px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes topToBottom{
	0% { opacity: 0; }
	5% { opacity: 0; -ms-transform: translateY(-50px); }
	10% { opacity: 1; -ms-transform: translateY(0px); }
	25% { opacity: 1; -ms-transform: translateY(0px); }
	30% { opacity: 0; -ms-transform: translateY(50px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

/*Horizontal Sliding*/
.slidingHorizontal{
	display: inline;
	text-indent: 8px;
}
.slidingHorizontal span{
	animation: leftToRight 12.5s linear infinite 0s;
	-ms-animation: leftToRight 12.5s linear infinite 0s;
	-webkit-animation: leftToRight 12.5s linear infinite 0s;
	color: #00abe9;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}
.slidingHorizontal span:nth-child(2){
	animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	-webkit-animation-delay: 2.5s;
}
.slidingHorizontal span:nth-child(3){
	animation-delay: 5s;
	-ms-animation-delay: 5s;
	-webkit-animation-delay: 5s;
}
.slidingHorizontal span:nth-child(4){
	animation-delay: 7.5s;
	-ms-animation-delay: 7.5s;
	-webkit-animation-delay: 7.5s;
}
.slidingHorizontal span:nth-child(5){
	animation-delay: 10s;
	-ms-animation-delay: 10s;
	-webkit-animation-delay: 10s;
}

/*leftToRight Animation*/
@-moz-keyframes leftToRight{
	0% { opacity: 0; }
	5% { opacity: 0; -moz-transform: translateX(-50px); }
	10% { opacity: 1; -moz-transform: translateX(0px); }
	25% { opacity: 1; -moz-transform: translateX(0px); }
	30% { opacity: 0; -moz-transform: translateX(50px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-webkit-keyframes leftToRight{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform: translateX(-50px); }
	10% { opacity: 1; -webkit-transform: translateX(0px); }
	25% { opacity: 1; -webkit-transform: translateX(0px); }
	30% { opacity: 0; -webkit-transform: translateX(50px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes leftToRight{
	0% { opacity: 0; }
	5% { opacity: 0; -ms-transform: translateX(-50px); }
	10% { opacity: 1; -ms-transform: translateX(0px); }
	25% { opacity: 1; -ms-transform: translateX(0px); }
	30% { opacity: 0; -ms-transform: translateX(50px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

/*FadeIn*/
.fadeIn{
	display: inline;
	text-indent: 8px;
}
.fadeIn span{
	animation: fadeEffect 12.5s linear infinite 0s;
	-ms-animation: fadeEffect 12.5s linear infinite 0s;
	-webkit-animation: fadeEffect 12.5s linear infinite 0s;
	color: #00C2B0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}
.fadeIn span:nth-child(2){
	animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	-webkit-animation-delay: 2.5s;
}
.fadeIn span:nth-child(3){
	animation-delay: 5s;
	-ms-animation-delay: 5s;
	-webkit-animation-delay: 5s;
}
.fadeIn span:nth-child(4){
	animation-delay: 7.5s;
	-ms-animation-delay: 7.5s;
	-webkit-animation-delay: 7.5s;
}
.fadeIn span:nth-child(5){
	animation-delay: 10s;
	-ms-animation-delay: 10s;
	-webkit-animation-delay: 10s;
}

/*FadeIn Animation*/
@-moz-keyframes fadeEffect{
	0% { opacity: 0; }
	5% { opacity: 0; -moz-transform: translateY(0px); }
	10% { opacity: 1; -moz-transform: translateY(0px); }
	25% { opacity: 1; -moz-transform: translateY(0px); }
	30% { opacity: 0; -moz-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-webkit-keyframes fadeEffect{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform: translateY(0px); }
	10% { opacity: 1; -webkit-transform: translateY(0px); }
	25% { opacity: 1; -webkit-transform: translateY(0px); }
	30% { opacity: 0; -webkit-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes fadeEffect{
	0% { opacity: 0; }
	5% { opacity: 0; -ms-transform: translateY(0px); }
	10% { opacity: 1; -ms-transform: translateY(0px); }
	25% { opacity: 1; -ms-transform: translateY(0px); }
	30% { opacity: 0; -ms-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

/*Vertical Flip*/
.verticalFlip{
	display: inline;
	text-indent: 8px;
}
.verticalFlip span{
	animation: vertical 12.5s linear infinite 0s;
	-ms-animation: vertical 12.5s linear infinite 0s;
	-webkit-animation: vertical 12.5s linear infinite 0s;
	color: #00abe9;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}
.verticalFlip span:nth-child(2){
	animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	-webkit-animation-delay: 2.5s;
}
.verticalFlip span:nth-child(3){
	animation-delay: 5s;
	-ms-animation-delay: 5s;
	-webkit-animation-delay: 5s;
}
.verticalFlip span:nth-child(4){
	animation-delay: 7.5s;
	-ms-animation-delay: 7.5s;
	-webkit-animation-delay: 7.5s;
}
.verticalFlip span:nth-child(5){
	animation-delay: 10s;
	-ms-animation-delay: 10s;
	-webkit-animation-delay: 10s;
}

/*Vertical Flip Animation*/
@-moz-keyframes vertical{
	0% { opacity: 0; }
	5% { opacity: 0; -moz-transform: rotateX(180deg); }
	10% { opacity: 1; -moz-transform: translateY(0px); }
	25% { opacity: 1; -moz-transform: translateY(0px); }
	30% { opacity: 0; -moz-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0;}
}
@-webkit-keyframes vertical{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform: rotateX(180deg); }
	10% { opacity: 1; -webkit-transform: translateY(0px); }
	25% { opacity: 1; -webkit-transform: translateY(0px); }
	30% { opacity: 0; -webkit-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes vertical{
	0% { opacity: 0; }
	5% { opacity: 0; -ms-transform: rotateX(180deg); }
	10% { opacity: 1; -ms-transform: translateY(0px); }
	25% { opacity: 1; -ms-transform: translateY(0px); }
	30% { opacity: 0; -ms-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

/*Horizontal Flip*/
.horizontalFlip{
	display: inline;
	text-indent: 8px;
}
.horizontalFlip span{
	animation: horizontal 12.5s linear infinite 0s;
	-ms-animation: horizontal 12.5s linear infinite 0s;
	-webkit-animation: horizontal 12.5s linear infinite 0s;
	color: #00abe9;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}
.horizontalFlip span:nth-child(2){
	animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	-webkit-animation-delay: 2.5s;
}
.horizontalFlip span:nth-child(3){
	animation-delay: 5s;
	-ms-animation-delay: 5s;
	-webkit-animation-delay: 5s;
}
.horizontalFlip span:nth-child(4){
	animation-delay: 7.5s;
	-ms-animation-delay: 7.5s;
	-webkit-animation-delay: 7.5s;
}
.horizontalFlip span:nth-child(5){
	animation-delay: 10s;
	-ms-animation-delay: 10s;
	-webkit-animation-delay: 10s;
}

/*Horizontal Flip Animation*/
@-moz-keyframes horizontal{
	0% { opacity: 0; }
	5% { opacity: 0; -moz-transform: rotateY(180deg); }
	10% { opacity: 1; -moz-transform: translateX(0px); }
	25% { opacity: 1; -moz-transform: translateX(0px); }
	30% { opacity: 0; -moz-transform: translateX(0px); }
	80% { opacity: 0; }
	100% { opacity: 0;}
}
@-webkit-keyframes horizontal{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform: rotateY(180deg); }
	10% { opacity: 1; -webkit-transform: translateX(0px); }
	25% { opacity: 1; -webkit-transform: translateX(0px); }
	30% { opacity: 0; -webkit-transform: translateX(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes horizontal{
	0% { opacity: 0; }
	5% { opacity: 0; -ms-transform: rotateY(180deg); }
	10% { opacity: 1; -ms-transform: translateX(0px); }
	25% { opacity: 1; -ms-transform: translateX(0px); }
	30% { opacity: 0; -ms-transform: translateX(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

/*AntiClockWise Effect*/
.antiClock{
	display: inline;
	text-indent: 8px;
}
.antiClock span{
	animation: anti 12.5s linear infinite 0s;
	-ms-animation: anti 12.5s linear infinite 0s;
	-webkit-animation: anti 12.5s linear infinite 0s;
	color: #00abe9;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}
.antiClock span:nth-child(2){
	animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	-webkit-animation-delay: 2.5s;
}
.antiClock span:nth-child(3){
	animation-delay: 5s;
	-ms-animation-delay: 5s;
	-webkit-animation-delay: 5s;
}
.antiClock span:nth-child(4){
	animation-delay: 7.5s;
	-ms-animation-delay: 7.5s;
	-webkit-animation-delay: 7.5s;
}
.antiClock span:nth-child(5){
	animation-delay: 10s;
	-ms-animation-delay: 10s;
	-webkit-animation-delay: 10s;
}

/*AntiClockWise Effect Animation*/
@-moz-keyframes anti{
	0% { opacity: 0; }
	5% { opacity: 0; -moz-transform: rotateX(180deg); }
	10% { opacity: 1; -moz-transform: translateY(0px); }
	25% { opacity: 1; -moz-transform: translateY(0px); }
	30% { opacity: 0; -moz-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0;}
}
@-webkit-keyframes anti{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform: rotate(180deg); }
	10% { opacity: 1; -webkit-transform: translateY(0px); }
	25% { opacity: 1; -webkit-transform: translateY(0px); }
	30% { opacity: 0; -webkit-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes anti{
	0% { opacity: 0; }
	5% { opacity: 0; -ms-transform: rotate(180deg); }
	10% { opacity: 1; -ms-transform: translateY(0px); }
	25% { opacity: 1; -ms-transform: translateY(0px); }
	30% { opacity: 0; -ms-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

/*ClockWise Effect*/
.clockWise{
	display: inline;
	text-indent: 8px;
}
.clockWise span{
	animation: clock 12.5s linear infinite 0s;
	-ms-animation: clock 12.5s linear infinite 0s;
	-webkit-animation: clock 12.5s linear infinite 0s;
	color: #00abe9;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}
.clockWise span:nth-child(2){
	animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	-webkit-animation-delay: 2.5s;
}
.clockWise span:nth-child(3){
	animation-delay: 5s;
	-ms-animation-delay: 5s;
	-webkit-animation-delay: 5s;
}
.clockWise span:nth-child(4){
	animation-delay: 7.5s;
	-ms-animation-delay: 7.5s;
	-webkit-animation-delay: 7.5s;
}
.clockWise span:nth-child(5){
	animation-delay: 10s;
	-ms-animation-delay: 10s;
	-webkit-animation-delay: 10s;
}

/*ClockWise Effect Animation*/
@-moz-keyframes clock{
	0% { opacity: 0; }
	5% { opacity: 0; -moz-transform: rotate(-180deg); }
	10% { opacity: 1; -moz-transform: translateX(0px); }
	25% { opacity: 1; -moz-transform: translateX(0px); }
	30% { opacity: 0; -moz-transform: translateX(0px); }
	80% { opacity: 0; }
	100% { opacity: 0;}
}
@-webkit-keyframes clock{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform: rotate(-180deg); }
	10% { opacity: 1; -webkit-transform: translateX(0px); }
	25% { opacity: 1; -webkit-transform: translateX(0px); }
	30% { opacity: 0; -webkit-transform: translateX(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes clock{
	0% { opacity: 0; }
	5% { opacity: 0; -ms-transform: rotate(-180deg); }
	10% { opacity: 1; -ms-transform: translateX(0px); }
	25% { opacity: 1; -ms-transform: translateX(0px); }
	30% { opacity: 0; -ms-transform: translateX(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

/*Pop Effect*/
.popEffect{
	display: inline;
	text-indent: 8px;
}
.popEffect span{
	animation: pop 12.5s linear infinite 0s;
	-ms-animation: pop 12.5s linear infinite 0s;
	-webkit-animation: pop 12.5s linear infinite 0s;
	color: #00abe9;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}
.popEffect span:nth-child(2){
	animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	-webkit-animation-delay: 2.5s;
}
.popEffect span:nth-child(3){
	animation-delay: 5s;
	-ms-animation-delay: 5s;
	-webkit-animation-delay: 5s;
}
.popEffect span:nth-child(4){
	animation-delay: 7.5s;
	-ms-animation-delay: 7.5s;
	-webkit-animation-delay: 7.5s;
}
.popEffect span:nth-child(5){
	animation-delay: 10s;
	-ms-animation-delay: 10s;
	-webkit-animation-delay: 10s;
}

/*Pop Effect Animation*/
@-moz-keyframes pop{
	0% { opacity: 0; }
	5% { opacity: 0; -moz-transform: rotate(0deg) scale(0.10) skew(0deg) translate(0px); }
	10% { opacity: 1; -moz-transform: translateY(0px); }
	25% { opacity: 1; -moz-transform: translateY(0px); }
	30% { opacity: 0; -moz-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0;}
}
@-webkit-keyframes pop{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform: rotate(0deg) scale(0.10) skew(0deg) translate(0px);}
	10% { opacity: 1; -webkit-transform: translateY(0px); }
	25% { opacity: 1; -webkit-transform: translateY(0px); }
	30% { opacity: 0; -webkit-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes pop{
	0% { opacity: 0; }
	5% { opacity: 0; -ms-transform: rotate(0deg) scale(0.10) skew(0deg) translate(0px); }
	10% { opacity: 1; -ms-transform: translateY(0px); }
	25% { opacity: 1; -ms-transform: translateY(0px); }
	30% { opacity: 0; -ms-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

/*Push Effect*/
.pushEffect{
	display: inline;
	text-indent: 8px;
}
.pushEffect span{
	animation: push 12.5s linear infinite 0s;
	-ms-animation: push 12.5s linear infinite 0s;
	-webkit-animation: push 12.5s linear infinite 0s;
	color: #00abe9;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}
.pushEffect span:nth-child(2){
	animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	-webkit-animation-delay: 2.5s;
}
.pushEffect span:nth-child(3){
	animation-delay: 5s;
	-ms-animation-delay: 5s;
	-webkit-animation-delay: 5s;
}
.pushEffect span:nth-child(4){
	animation-delay: 7.5s;
	-ms-animation-delay: 7.5s;
	-webkit-animation-delay: 7.5s;
}
.pushEffect span:nth-child(5){
	animation-delay: 10s;
	-ms-animation-delay: 10s;
	-webkit-animation-delay: 10s;
}

/*Push Effect Animation*/
@-moz-keyframes push{
	0% { opacity: 0; }
	5% { opacity: 0; -moz-transform: rotate(0deg) scale(2) skew(0deg) translate(0px); }
	10% { opacity: 1; -moz-transform: translateX(0px); }
	25% { opacity: 1; -moz-transform: translateX(0px); }
	30% { opacity: 0; -moz-transform: translateX(0px); }
	80% { opacity: 0; }
	100% { opacity: 0;}
}
@-webkit-keyframes push{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform:rotate(0deg) scale(2) skew(0deg) translate(0px);}
		10% { opacity: 1; -webkit-transform: translateX(0px); }
	25% { opacity: 1; -webkit-transform: translateX(0px); }
	30% { opacity: 0; -webkit-transform: translateX(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes push{
	0% { opacity: 0; }
	5% { opacity: 0; -ms-transform: rotate(0deg) scale(2) skew(0deg) translate(0px); }
	10% { opacity: 1; -ms-transform: translateX(0px); }
	25% { opacity: 1; -ms-transform: translateX(0px); }
	30% { opacity: 0; -ms-transform: translateX(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
/*Footer*/
h3{
	color: #fff;
	font-size: 30px;
	margin-top: 20px;
	text-align: center;
}

.quotePerson{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    zoom:.6;
}

.comillasAbrir, .comillasCerrar{color: #D0D0CF; position: absolute; font-size: 5rem;margin-top: -1rem;}


.comillasAbrir{
    margin-left: -1.6rem;
}

.comillasCerrar{
    margin-left: .2rem;
}


.quote{
    font-size: 1.5rem;
}

.quoteName{
    font-size: .8rem;
    color: #5D5D5D;
    font-weight: 100;
    font-style: italic;
    
}

.quotePosition{
    color: #8E8E8E;
    font-size: .5rem;
}

.quoteComillasOpen {
    position: absolute;
    top: 257px;
    left: 414px;
}

.quoteComillasClose {
    position: absolute;
    top: 338px;
    left: 907px;
}

.quoteSection{text-align: center; position: relative}

.heart{width: 86px; height: 70px; margin-bottom: 1rem;}

.footer {text-align: center; background: #F8F8F8; padding-top: 3rem}
.footer h1{color: #00C2B0; font-size: 2rem; text-align: center; margin-bottom: 1rem;}
.footer p{    color: #5D5D5D;
    font-size: 0.8rem;
    font-weight: 100;}
.bg_grey{background: #F8F8F8}

.footer .btn-lg{margin-bottom: 4rem}

.itemsMobile{display: none}

#all-in-one{margin-top: -2.5rem}    
#flexible{margin-top: -1.3rem}    

/*
 * Affix and center
 */

/*// Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575px) {

.footer {
    padding-top: 6rem;
}    
        
    
p br { content: ' '; }   
h1 br { content: ' '; }    
    
.cd-nav-trigger{display: block;}    
.cd-primary-nav {
  display: table; 
}
    
.masthead-brand {
    margin-bottom: 0;
    width: 148px;
    height: 38px;
    margin-top: -40px;
    margin-left: -5px;
}
    
.nav-masthead .nav-link {
    display: none;
}

#title_iphone1{margin-top: -7rem}
    
.features p, p, .footer p {
font-size: 1rem;
text-align: center !important;
}    
.featurette {
    text-align: center;
}
#iphone2 {
    margin-top: 1rem;
}

.circleDots {
    display: none;
}
    
h5 .how-it-works{margin-bottom: -6.5rem}    

.demo {
    margin-top: -4rem;
}   
    
.featurette-image{
    width: 90%;
    text-align: center;
    margin-top: 1rem;
    margin-left: 6% !important;    
}
    
.marketing h1, .featurette  h1, .carousel h1, .footer h1 {
    font-size: 1.75rem;
    text-align: center !important; 
    margin-bottom: .75rem;
    font-weight: 500;
    line-height: 2.5rem;
}
    

.footer h1{
    font-size: 1.4rem;

}    
    
.features .h2, h2 {
    font-size: 1.25rem;
}
    
.col-lg-4{margin-bottom: 2rem}

main{display: none}

.site-wrapper {
    display: block;
    width: 100%;
    height: 62%;
    min-height: 62%;
    background-position: 260px 210px;
    background: url(../images/hero.jpg) no-repeat 50%;
    margin-bottom: 3rem;
    background-size: cover;
}
.circle_icons {
    text-align: center;
    margin-bottom: 6rem;
    margin-top: -5rem;
}    
.itemsMobile {
    display: block;
    left: 55%;
    position: absolute;
    margin-left: -11rem;
    zoom: .9;
}
.quote {
    font-size: 1rem;
    line-height: 1.75rem;
}    
.quoteName {
    font-size: .8rem;
    color: #5D5D5D;
    font-weight: 100;
    font-style: italic;
    margin-top: -0.4rem;
    margin-bottom: 0.2rem;
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 3rem;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}
.quoteComillasOpen {
    position: absolute;
    top: 214px;
    left: 40px;
    width: 16px;
    display: none;
}
.quoteComillasClose {
    position: absolute;
    top: 269px;
    left: 349px;
    width: 16px;
    display: none;
}
    
.comillasAbrir, .comillasCerrar{color: #D0D0CF; position: absolute; font-size: 5rem;margin-top: 1.8rem;}      
    
.quotePerson {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    width: 40%;
}    

.carousel {
    position: relative;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: -6rem;
}

.carousel-item {
    height: 28rem;
    background-color: white;
    text-align: center;
}

.cd-primary-nav.nav-open ul {
    margin: 0;
    padding: 0;
}   
}
    
/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767px) { 

p br { content: ' '; }   
h1 br { content: ' '; }    
    
.cd-nav-trigger{display: block;}    
.cd-primary-nav {
  display: table; 
}    
.masthead-brand {
    margin-bottom: 0;
    width: 148px;
    height: 38px;
    margin-top: -40px;
    margin-left: -5px;
}
    
.nav-masthead .nav-link {
    display: none;
}

#title_iphone1{margin-top: -7rem}
    
.features p, p, .footer p {
font-size: 1rem;
text-align: center !important;
}    
.featurette {
    text-align: center;
}
#iphone2 {
    margin-top: 1rem;
}

.circleDots {
    display: none;
}
    
h5 .how-it-works{margin-bottom: -6.5rem}    

.demo {
    margin-top: -4rem;
}   
    
.featurette-image{
    width: 90%;
    text-align: center;
    margin-top: 1rem;
    margin-left: 6% !important;    
}
    
.marketing h1, .featurette  h1, .carousel h1, .footer h1 {
    font-size: 1.75rem;
    text-align: center !important; 
    margin-bottom: .75rem;
    font-weight: 500;
    line-height: 2.5rem;
}

.footer h1{
    font-size: 1.4rem;

}   
    
.footer {
    padding-top: 6rem;
}    
    
.features .h2, h2 {
    font-size: 1.25rem;
}
    
.col-lg-4{margin-bottom: 2rem}

main{display: none}

.site-wrapper {
    display: block;
    width: 100%;
    height: 62%;
    min-height: 62%;
    background-position: 260px 210px;
    background: url(../images/hero.jpg) no-repeat 50%;
    margin-bottom: 3rem;
    background-size: cover;
}
.circle_icons {
    text-align: center;
    margin-bottom: 6rem;
    margin-top: -5rem;
}    
    


.itemsMobile {
    display: block;
    left: 55%;
    position: absolute;
    margin-left: -11rem;
    zoom: .9;
}
.quote {
    font-size: 1rem;
    line-height: 1.75rem;
}    
.quoteName {
    font-size: .8rem;
    color: #5D5D5D;
    font-weight: 100;
    font-style: italic;
    margin-top: -0.4rem;
    margin-bottom: 0.2rem;
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 3rem;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}
.quoteComillasOpen {
    position: absolute;
    top: 214px;
    left: 40px;
    width: 16px;
    display: none;
}
.quoteComillasClose {
    position: absolute;
    top: 269px;
    left: 349px;
    width: 16px;
    display: none;
}
    
.comillasAbrir, .comillasCerrar{color: #D0D0CF; position: absolute; font-size: 5rem;margin-top: 1.8rem;}    
    
.quotePerson {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    width: 40%;
}    

.carousel {
    position: relative;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: -6rem;
}

.carousel-item {
    height: 28rem;
    background-color: white;
    text-align: center;
}

.cd-primary-nav.nav-open ul {
    margin: 0;
    padding: 0;
}   
}


/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991px) {  

p br { content: ' '; }   
.featurette h1 br { content: ' '; }    
    
.masthead-brand {
    margin-bottom: 0;
    width: 148px;
    height: 38px;
    margin-top: -40px;
    margin-left: -5px;
}
    
.nav-masthead .nav-link {
    display: none;
}

.cd-nav-trigger{display: block;} 
.cd-primary-nav {
  display: table; 
}
    
main h1 {
    color: white;
    font-weight: 600;
    font-size: 2.25rem;
    line-height: 2.7rem;
    margin-bottom: 0.6rem;
    margin-top: 2.5rem;
}

#manos{    margin-top: -20rem;}  
    
h1 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: .75rem;
    font-weight: 500;
    line-height: 2rem;
}
    
.features .h2, h2 {
    font-size: 1rem;
}
.features p, .circle_icons p {
    color: #9B9B9B;
    font-size: 0.7rem;
    font-weight: 100;
} 
#manos img{zoom:.85}  
    
.demo {
    position: relative;
    margin-top: -3rem;
}    
.lead {
    font-size: 0.85rem;
    line-height: 1.6rem;
}    
.featurette h1 {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 600;
}
.circleDots {
    background: url(../images/circle_dots.svg) no-repeat;
    width: 595px;
    height: 595px;
    left: 50%;
    margin-left: -286px;
    margin-top: 100px;
    position: relative;
    zoom: 0.8;
}
.quoteComillasOpen,.quoteComillasClose {display: none}   

.footer h1 {
    color: #00C2B0;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}
    
.masthead-brand {
    margin-bottom: 0;
    width: 148px;
    height: 38px;
    margin-top: -26px;
    margin-left: -5px;
}   
    
main h1 {text-align: left}    
}

/*
 * Affix and center
 */

@media (min-width: 40em) {
  /* Pull out the header and footer */
  .masthead {
    position: absolute;
    top: 0;
  }
  .mastfoot {
    position: fixed;
    bottom: 0;
  }

  /* Start the vertical centering */
  .site-wrapper-inner {
    vertical-align: middle;
  }

  /* Handle the widths */
  .masthead,
  .mastfoot,
  .cover-container {
    width: 100%; /* Must be percentage or pixels for horizontal alignment */
  }
}

@media (min-width: 62em) {
  .masthead,
  .mastfoot,
  .cover-container {
    width: 72rem;
  }
}


@media (min-width: 769px) and (max-width: 992px) { 

.cover {
    padding: 0 4.5rem;
    margin-top: -15rem;
}

.marketing h1 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: .75rem;
    font-weight: 500;
    line-height: 2.75rem;
}   
#manos {
    margin-top: -13rem;
}    

.lead {
    font-size: 0.75rem;
    line-height: 1.6rem;
}
    
.features p, .circle_icons p {
    color: #9B9B9B;
    font-size: 0.75rem;
    font-weight: 100;
}    
.quote {
    font-size: 1.25rem;
}
    
#title_iphone1, #title_iphone2,#title_iphone3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: .75rem;
    font-weight: 500;
    line-height: 3rem;
        width: 130%;
}   
    
#title_iphone1 br, #title_iphone2 br { content: ' '; }        

.cd-primary-nav.nav-open {
    opacity: 1;
    -webkit-transition: opacity 0s;
    -moz-transition: opacity 0s;
    transition: opacity 0s;
    background: #00C2B0;
    height: 100%;
    min-height: 100vh;

}    
    
}

@media (min-width: 992px) and (max-width: 1180px) {
.masthead, .mastfoot, .cover-container {
    width: 62rem;
}
.cover {
    padding: 0 1.5rem;
    margin-top: -12rem;
}
.site-wrapper {
    display: table;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: url(../images/hero.jpg) no-repeat;
    background-size: contain;
    margin-bottom: 0rem;
}
.circleDots {
    margin-left: 270px;
    zoom: 0.8;    
    
}
    
.carousel {
    margin-top: -3rem;
}

.quoteComillasClose {
    position: absolute;
    top: 338px;
    left: 744px;
    width: 35px;
}
    
.quoteComillasOpen {
    position: absolute;
    top: 261px;
    left: 262px;
    width: 40px;
}
    
main h1 {
    color: white;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 3.1rem;
    margin-bottom: 1.5rem;
}    
    
}
