*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Regular.woff2') format('woff2'),
        url('fonts/ProximaNova-Regular.woff') format('woff'),
        url('fonts/ProximaNova-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Semibold.woff2') format('woff2'),
        url('fonts/ProximaNova-Semibold.woff') format('woff'),
        url('fonts/ProximaNova-Semibold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Bold.woff2') format('woff2'),
        url('fonts/ProximaNova-Bold.woff') format('woff'),
        url('fonts/ProximaNova-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Extrabld.woff2') format('woff2'),
        url('fonts/ProximaNova-Extrabld.woff') format('woff'),
        url('fonts/ProximaNova-Extrabld.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}




body{
    font-family: 'Proxima Nova', sans-serif;
    color: #1C1C1C;
}

h1{
    font-size: 30px;
    font-weight: 700;
}

h2{
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

h3{
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 20px;
}

p{
    font-size: 20px;
    font-weight: 400;
    color: #757577;
    line-height: 28px;
}

.container{
    max-width: 980px;
    width: 100%;
    margin: auto;
    padding: 40px 0px;
}

.d-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.column{
    flex-direction: column;
}

.reverse{
    flex-direction: row-reverse;
}

.wrap{
    flex-wrap: wrap;
}

.mb-10{
    margin-bottom: 20px;
}

.mb-20{
    margin-bottom: 20px;
}

.mb-40{
    margin-bottom: 40px;
}

.mb-n10{
    margin-bottom: -10px;
}

.mb-n50{
    margin-bottom: -50px;
}

.mt-10{
    margin-top: 20px;
}

.mt-20{
    margin-top: 20px;
}

.mt-40{
    margin-top: 40px;
}

.m-20{
    margin: 20px;
}

.p-0{
    padding: 0px;
}

.center{
    justify-content: center;
}

.w-100{
    width: 100%;
}

ul{
    list-style: none;
    display: flex;
    align-items: center;
}

li{
    margin-right: 35px;
}

nav{
    font-size: 18px;
}


/******/

.navbar {
    font-size: 18px;
    background: white;
    border-bottom: 2px solid #EDF0F3;
    position: fixed;
    z-index: 9;
    width: 100%;
  }

.logo{
    max-width: 200px;
}

.logo img{
    width: 100%;
}
  
  .main-nav {
    list-style-type: none;
    display: none;
  }
  
  .nav-links,
  .logo {
    text-decoration: none;
    color: #1C1C1C;
  }
  
  .main-nav li {
    text-align: center;
    margin: 15px auto;
  }
  
  .logo {
    display: inline-block;
    font-size: 22px;
    margin-top: 10px;
    margin-left: 20px;
  }
  
  .navbar-toggle {
    position: absolute;
    top: 26px;
    right: 20px;
    cursor: pointer;
    color: #1C1C1C;
    font-size: 24px;
  }
  
  .active-nav {
    display: block;
  }

  .nav-mobile{
    display: flex;
}

  @media (max-width: 767px){
    .navbar button{
        position: absolute;
        top: 20px;
        right: 50px;
    }

    .logo{
        margin-left: 0px;
    }

    .nav-mobile{
        display: block;
    }

  }
  
  @media screen and (min-width: 768px) {
    .navbar {
      display: flex;
      justify-content: space-between;
      padding-bottom: 0;
      height: 100px;
      align-items: center;
      width: 100%;
    }

    .nav-container{
        width: 100%;
        max-width: 980px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: auto;
    }
  
    .main-nav {
      display: flex;
      margin-right: 30px;
      flex-direction: row;
      justify-content: flex-end;
    }
  
    .main-nav li {
      margin: 0;
    }
  
    .nav-links {
      margin-left: 40px;
    }
  
    .logo {
      margin-top: 0;
    }
  
    .navbar-toggle {
      display: none;
    }
  
    .logo:hover,
    .nav-links:hover {
      color: #43CCF8;
    }
  }

/*****/

a{
    text-decoration: none;
    color: #1C1C1C;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

a:hover{
    color: #43CCF8;
}

.nav-bar{
    position: fixed;
    width: 100%;
    top: 0px;
    background: white;
    border-bottom: 2px solid #F8F8F8;
    z-index: 99999;
}

.nav-bar .d-flex{
    padding: 10px;
}

.nav-bar img{
    width: 100%;
    max-width: 240px;
}

button{
    background: #43CCF8;
    border: 0px solid #43CCF8;
    outline: none;
    color: white;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.4s;
}

button:hover{
    background: #2882FB;
}

.video-hero{
    max-width: 490px;
    margin-top: 60px;

}

.video-hero video{
    max-width: 490px;
}

.ventajas-1{
    max-width: 480px;
}
.ventajas-2{
    max-width: 320px;
}
.ventajas-3{
    max-width: 320px;
}

.ventajas-img img{
    width: 100%;
}

.ventajas-txt{
    width: 100%;
    max-width: 540px;
}

.mw-420{
    max-width: 440px;
}

.box{
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background: #FFF;
    box-shadow: 0px 4px 41px -5px rgba(128, 154, 211, 0.20);
    padding: 50px 40px;
}

.box button{
    max-width: 200px;
    font-size: 20px;
    padding: 10px 40px;
}

.bg-img{
    background-image: url(images/bg.png);
    background-repeat: no-repeat;
    padding: 170px 20px;
    padding-bottom: 100px;
    background-position: bottom center;
    background-size: cover;
}

.bg-02{
    background-image: url(images/bg-02.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding: 40px 20px;
}

.success{
    max-width: 550px;
}

.success img{
    width: 100%;
}

.clients{
    max-width: 220px;
    margin: -5px;
}

.phone:nth-child(1){
    margin-bottom: 200px;
}

.phone:nth-child(2){
    margin-bottom: 100px;
}

.phone-mask{
    width: 300px;
    height: 500px;
    background-image: url(images/phone.png);
    background-repeat: no-repeat;
}

.video-influencer{
    position: relative;
    width: 200px;
    height: 418px;
    margin-bottom: -464px;
    margin-left: 55px;
    -webkit-mask-image:url(images/phone-mask.png);
    mask-image:url(images/phone-mask.png);
    -webkit-mask-position:top left;
    mask-position:top left;
    
    -webkit-mask-repeat:no-repeat;
    mask-repeat:no-repeat;
}

.poster-influencer{
    position: relative;
    width: 200px;
    height: 418px;
    margin-bottom: -484px;
    margin-left: 55px;
    -webkit-mask-image:url(images/phone-mask.png);
    mask-image:url(images/phone-mask.png);
    -webkit-mask-position:top left;
    mask-position:top left;
    
    -webkit-mask-repeat:no-repeat;
    mask-repeat:no-repeat;
}

.play-btn{
    width: 70px;
    height: 70px;
    position: absolute;
    background-image: url(images/play-btn.png);
    background-size: contain;
    margin: auto;
    margin-top: -270px;
    margin-left: 115px;
}

.show-btn{
    opacity: 1;
}

.hide{
    opacity: 0;
}

footer{
    background: #EDF0F3;
    height: 130px;
}

.footer-links a{
    font-weight: 400;
    color: #757577;
    margin-right: 20px;
    font-size: 14px;
}

.footer-links a:hover{
    color: #2882FB;
}

.social{
    margin-left: 20px;
}

.social a{
    opacity: 0.6;
    margin-right: 8px;
}

.social a:hover{
    opacity: 1;
}

/* CARRUEL CARD*/

.cards{
    display: flex;
    width: 100%;
    max-width: 840px;
    justify-content: space-between;
}

.card-influencer{
    width: 100%;
    max-width: 270px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 19px 0px rgba(2, 14, 77, 0.10);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.card-title{
    color: #414141;
    font-size: 30px;
    font-weight: 700;
}

.card-name{
    color: #757577;
    font-size: 22px;
    font-weight: 600;
    margin-top: 14px;
}

.card-category{
    color: #757577;
    font-size: 22px;
    font-weight: 700;
    margin-top: 14px;
}

.image-influencer{
    width: 100%;
    max-width: 82px;
    margin: auto;
}

.image-influencer img{
    width: 100%;
}

/* CARRUSEL */

.swiper {
    width: 100%;
    max-width: 840px;
    height: 350px;
    /* left: -50px !important; */
  }

.swiper-wrapper{
    margin-left: -70px;
}

.swiper-slide-next{
    margin-right: 80px;
}

.swiper-slide-prev{
    margin-left: 70px;
}

/* .swiper-wrapper{
    left: 5px;
} */
  

/* .swiper-cont{
    width: 800px;
} */
body  {
    --swiper-navigation-size: 44px;
    --swiper-navigation-top-offset: 50%;
    --swiper-navigation-sides-offset: 0px;
    --swiper-navigation-color: black;
  }
/* COLORES */

.light-blue{
    color: #43CCF8;
}

.middle-blue{
    color: #2882FB;
}

.dark-blue{
    color: #5432FF;
}

@media (max-width: 1080px){
    .container{
        padding: 40px;
    }
}

@media (max-width: 860px){
    .d-flex{
        flex-direction: column;
        flex-wrap: wrap;
        text-align: center;
    }

    .nav-bar .d-flex{
        flex-direction: row;
    }

    .container{
        padding: 20px 10px;
    }

    .ventajas{
        flex-direction: column-reverse;
    }

    .logo-cont{
        flex-direction: row;
    }

    .clients{
        flex-direction: row;
    }

    .video-hero video{
        max-width: 490px;
        width: 100%;
    }

    .video-influencer{
        margin-left: -207px;
    }

    .poster-influencer{
        margin-left: 9px;
        margin-bottom: -465px;
    }

    .phone{
        margin-bottom: 0px !important;
    }

    footer{
        height: auto;
    }

    footer .d-flex{
        flex-direction: row;
        justify-content: center;
    }

    .footer-links{
        display: flex;
        width: 100%;
        flex-direction: column;
        max-width: 242px;
        align-items: flex-start;
    }

    .footer-links a{
        margin: 0px;
        margin-bottom: 10px;
    }

    .col{
        flex-direction: column !important;
    }

    .social{
        margin: auto;
    }

    .social a{
        margin: 12px;
        margin-top: 5px;
    }

    .btn-expand-mobile{
        display: block !important;
        margin-bottom: 60px;
    }

    #show-div{
        display: none;
    }
}

@media (min-width: 861px) {
    #show-div{
        display: block !important;
    }    
}


@media (max-width: 640px){
    h1, h2{
        font-size: 24px;
    }
    
    h3{
        font-size: 20px;
    }

    p{
        font-size: 16px;
        line-height: 28px;
    }

    .ventajas-2, .ventajas-3{
        max-width: 280px;
    }

    .box{
        max-width: 380px;
    }

    .card-influencer{
        max-width: 250px;
        padding: 20px;
    }

    .card-title{
        font-size: 18px;
    }
    
    .card-name{
        font-size: 18px;
    }
    
    .card-category{
        font-size: 18px;
    }

    .swiper{
        height: 280px;
    }

    .swiper-wrapper{
        margin-left: auto;
    }
    
    .swiper-slide-next{
        margin-right: auto;
    }
    
    .swiper-slide-prev{
        margin-left: auto;
    }

    .swiper-button-next{
        right: 20px !important;
    }

    .swiper-button-prev{
        left: 20px !important;
    }
}

@media (max-width: 540px){
    .clients{
        max-width: 130px;
        margin: -10px;
    }

    .topnav img{
        max-width: 170px;
    }

    .navbar button{
        max-width: 120px;
        font-size: 12px;
        padding: 8px 20px;
    }

    .navbar-toggle {
        top: 22px;
        right: 20px;
      }

}

@media (max-width: 460px){
    .clients{
        max-width: 106px;
    }
}
/* SCROLL REVEAL */

.intro{
	top: 40;
	opacity: 0;
	transition: 1s;
    transform: scale(0.96);
}

.active {
	opacity: 1;
	top: 0;
    transform: scale(1);
}

.fade-in-left{
    opacity: 0;
    margin-left: -30px;
}

.fade-in-right{
    opacity: 0;
    margin-left: 50px;
}

.transition {
    transition: 0.9s;
}
