
/*  PRESENTION PAGE   */

/* Section Components */

.presentation-page{
  overflow-x: hidden;
}

.section-components .title{
    margin-top: 60px;
    margin-bottom: 5px;
}
.section-components .description{
    margin-top: 35px;
}

.section-components .image-container{
    height: 560px;
    position: relative;
}

.section-components .components-macbook{
    width: auto;
    left: -100px;
    top: 0;
    height: 100%;
    position: absolute;
}

.section-components .table-img,
.section-components .share-btn-img,
.section-components .coloured-card-btn-img,
.section-components .coloured-card-img,
.section-components .social-img,
.section-components .pin-btn-img{
    position: absolute;
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.section-components  .coloured-card-img{
    left: 90%;
    top: 11%;
    height: 90px;
    border-radius: 2px;
}
.section-components .social-img{
    left: 70%;
    top: 67%;
    height: 40px;

}
.section-components .coloured-card-btn-img{
    left: 35%;
    top: 2%;
    height: 125px;
    border-radius: 6px;
}
.section-components .table-img{
    left: -13%;
    top: 27%;
    height: 175px;
    border-radius: 2px;
}
.section-components .pin-btn-img{
    left: 0%;
    top: 68%;
    height: 25px;
    border-radius: 3px;
}
.section-components .share-btn-img{
    left: 3%;
    top: -3%;
    height: 25px;

}

/* Section Content */

.section-content .section-description{
    margin-top: 100px;
}
.section-content .title{
    margin-bottom: 5px;
}

.section-content .section-description .title + .description{
    margin-top: 0;
}
.section-content .description{
    margin-top: 35px;
}

.section-content .image-container{
        max-width: 900px;
        position: relative;
}
.section-content .image-container .ipad-img{
    width: 100%;
    transition: transform .6s .9s;
    z-index: 2;
}
.section-content .image-container .area-img,
.section-content .image-container .info-img{
    position: absolute;
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translate3D(0px, 100px, 0px);
    -webkit-transform: translate3D(0px, 100px, 0px);
}
.section-content .image-container .area-img{
    top: 10%;
    left: 60%;
    height: 300px;
    width: 250px;
    z-index: 2;
    -webkit-transition: all 1s ease-out 0s;
    -moz-transition: all 1s ease-out 0s;
    -o-transition: all 1s ease-out 0s;
    -ms-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s;
}
.section-content .image-container .info-img{
    top: 50%;
    left: 0%;
    height: 200px;
    width: 300px;
    -webkit-transition: all 1s ease-out 0s;
    -moz-transition: all 1s ease-out 0s;
    -o-transition: all 1s ease-out 0s;
    -ms-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s;
}
.animated{
    transform: translate3D(0px, 0px, 0px) !important;
    -webkit-transform: translate3D(0px, 0px, 0px) !important;
    opacity: 1 !important;
}


/*  animated images  */

@-webkit-keyframes Floatingy{
    from {-webkit-transform:translate(0, 0px);}
    65% {-webkit-transform:translate(50px, 0);}
    to {-webkit-transform: translate(0, -0px);}
}
@-moz-keyframes Floatingy{
    from {-moz-transform:translate(0, 0px);}
    65% {-moz-transform:translate(50px, 0);}
    to {-moz-transform: translate(0, -0px);}
}
@-webkit-keyframes Floatingx{
    from {-webkit-transform:translate(50px, 0px);}
    65% {-webkit-transform:translate(0, 0);}
    to {-webkit-transform: translate(50px, -0px);}
}
@-moz-keyframes Floatingx{
    from {-moz-transform:translate(50px, 0px);}
    65% {-moz-transform:translate(0, 0);}
    to {-moz-transform: translate(50px, -0px);}
}


.table-img, .coloured-card-img, .coloured-card-btn-img, .pin-btn-img, .share-btn-img, .social-img{
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    -webkit-animation-name: Floatingy;
    -moz-animation-name: Floatingy;
    float: left;
}
.table-img{
    -webkit-animation-duration: 14s;
    -moz-animation-duration: 14s;
    -webkit-animation-name: Floatingx;
    -moz-animation-name: Floatingx;
}

.coloured-card-img{
    -webkit-animation-duration: 10s;
    -moz-animation-duration: 10s;
    -webkit-animation-name: Floatingx;
    -moz-animation-name: Floatingx;
}

.coloured-card-btn-img{
    -webkit-animation-duration: 18s;
    -moz-animation-duration: 18s;
}
.pin-btn-img{
    -webkit-animation-duration: 15s;
    -moz-animation-duration: 15s;
}
.share-btn-img{
   -webkit-animation-duration: 11s;
   -moz-animation-duration: 11s;
}
.social-img{
    -webkit-animation-duration: 16s;
    -moz-animation-duration: 16s;
    -webkit-animation-name: Floatingx;
    -moz-animation-name: Floatingx;
}

/* Presentation Page OnScroll Animation */

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}


.fixed-section{
    top: 90px;
    max-height: 71vh;
    overflow: scroll;
    border-bottom: 1px solid rgba(220,220,220, .8);
}
.fixed-section ul li{
    list-style: none;
}
.fixed-section li a{
    font-size: 14px;
    padding: 2px;
    display: block;
    color: #666666;
}
.fixed-section li a.active{
    color: #00bbff;
}
.fixed-section.float{
    position: fixed;
    top: 100px;
    width: 200px;
    margin-top: 0;
}
@media (max-width: 991px) {
  .fixed-section.affix {
    position: relative;
    margin-bottom: 100px;
  }
}

#images h4{
    margin-bottom: 30px;
}
#javascriptComponents{
    padding-bottom: 0;
}
#javascriptComponents .btn-raised{
    margin: 10px 0px;
}

/*body {
  align-items: center;
  background: #e3e3e3;
  display: flex;
  height: 100vh;
  justify-content: center;
}*/

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 6));
            transform: translateX(calc(-250px * 6));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 6));
            transform: translateX(calc(-250px * 6));
  }
}
.slider2 {
  background: white;
/*  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
*/  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding:0px 20px 0px 20px;
}
.slider2::before, .slider2::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider2::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.slider2::before {
  left: 0;
  top: 0;
}
.slider2 .slide-track {
  -webkit-animation: scroll 30s linear infinite;
          animation: scroll 30s linear infinite;
  display: flex;
  width: calc(250px * 6);
}
.slider2 .slide2 {
  height: 100px;
  width: 250px;
}

.slide2 img{
    height:100px;
    width:250px;
}

/*body {
  margin: 0;
  font-size: 42px;
  font-family: sans-serif;
  color: #333;
  overflow: hidden;
}*/

.orb {

  float: left;
  transition: all .2s ease-out;
}

.orb:hover {
  transform: scale(1);
  opacity: .5;
  cursor: pointer;
}

.red {background:red;}
.yellow {background:yellow;}
.blue {background:blue;}
.orange {background:orange;}
.purple {background:purple;}
.green {background:green;}

.marquee {
  height: 200px;
  width: 100%;
/*  border: 2px solid #eee;
*/  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.marquee--inner {
  display: block;
  width: 900%;
  position: absolute;
  animation: marquee 34s linear  infinite;
}
.marquee-inner span img{
    height:200px;
    width: 200px;
}
.marquee--inner:hover {
  animation-play-state: paused;
}

/*.half {
  float: left;
  width: 10%;
}*/

/*span {
  float: left;
  width: 50%:
}
*/
@keyframes marquee {
  0% { transform: translateX(-0); }
  100% { transform: translateX(calc(-670px * 11))}
}



/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
/*.Movil-Element {
      display: none !important
    }*/

@media (min-width: 1281px) {
  
  .Movil-Element {
      display: none !important
    }
    .Desktop-Element {
    display: initial !important
  }
  /*.square {
      position: absolute;
       width: 30%;
       height: 100%;
       background: red;
     }*/
  .triangle-bottomleft {
    position: absolute;
    width: 490px;
    height: 100%;
    padding: 0px;
    /*margin-left: 30%;*/
    border-bottom: 340px solid red;
    border-right: 165px solid transparent;
  }
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  .Desktop-Element {
    display: initial !important
  }
  .Movil-Element {
    display: none !important;
  }
 /* .square {
       width: 100px;
       height: 100px;
       background: red;
     }
  */
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  .Desktop-Element {
    display: initial !important;
  }
  .Movil-Element {
    display: none !important;
  }
  /*.square {
       width: 100px;
       height: 100px;
       background: red;
     }*/
  .tipoEmpresaDiv{
    padding: 0px
  }
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .Desktop-Element {
  display: initial !important;
  }
  .Movil-Element {
    display: none !important;
  }
  /*.square {
       width: 100px;
       height: 100px;
       background: red;
     }*/
  .tipoEmpresaDiv{
    padding: 0px
  }
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  .Desktop-Element {
  display: none !important;
  }
  .Movil-Element {
    display: initial !important;
  }
  /*.square {
       width: 100px;
       height: 100px;
       background: red;
     }*/
  .tipoEmpresaDiv{
    padding: 0px
  }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

/*celular*/
@media (min-width: 1px) and (max-width: 480px) {
  
  .Desktop-Element {
    display: none !important
  }
  .Movil-Element {
    display: initial !important;
  }
  /*.triangle-bottomleft {
    position: absolute;
    height: 100%;
    padding: 0px;
    margin-left: 30%;
    border-bottom: 200px solid red;
    border-right: 100px solid transparent;
  }*/

  .tipoEmpresaDiv{
    padding: 0px
  }
  .triangle-bottomleft {
    position: absolute;
              width: 0vh;
              height: 100%;
              padding: 0px;
              /*margin-left: 30%;*/
              border-bottom: 12vh solid transparent;
              top:-15vh;
              border-right: 100vw solid transparent;
  }
  .square {
    position: absolute;
       width: 100%;
       bottom: 0px;
       height: 15vh;
       background: white;
     }
  #carouselExampleIndicators {
    /*height: 50vh*/
  }
  #bannerIndex {
    padding: 0px
  }
  .text-banner-presentation{
    position: absolute;
    /*height:100%;*/
    bottom: 3vh;
    padding: 1vh;
     font-family: Roboto,Helvetica,Arial,sans-serif !important;
     font-size: 2.5vh;
     max-width: 50vh;
      min-height:3.5em;
  }
  .text-banner{
    position: absolute;
    /*height:100%;*/
    bottom: 3vh;
    padding: 1vh;
     font-family: Roboto,Helvetica,Arial,sans-serif !important;
     font-size: 2vh;
     max-width: 50vh;
      min-height:3.5em;
  }
  .text-banner-presentation img {
    width: 20vh;
    margin-bottom: 2vh;
  }
  .text-banner-tittle{
    position: absolute;
    /*height:100%;*/
    bottom: 3vh;
    padding: 1vh;
    font-family: Roboto,Helvetica,Arial,sans-serif !important;
    font-size: 2.5vh;
    max-width: 50vh;
    margin-bottom: 8vh;
    font-weight: bold;
    min-height:3.5em;
  }
  .Movil-Element.imgBanner {
    /*height: 50vh;*/
      width: 100%;
      /*max-width: 678px;*/
      /*float: right;*/
      /*clear: both;*/
  }
}
.banner-white{
  border-bottom: 12vh solid white;
}
.banner-orange{
  border-bottom: 12vh solid #ff8329;
}
.banner-purple{
  border-bottom: 12vh solid #3f51b5;
}
.banner-rose{
  border-bottom: 12vh solid #8c52ff;
}
.banner-red{
  border-bottom: 12vh solid #ff5757;
}

.banner-square-white{
  background: white;
}
.banner-square-orange{
  background: #ff8329;
}
.banner-square-purple{
  background: #3f51b5;
}
.banner-square-rose{
  background: #8c52ff;
}
.banner-square-red{
  background: #ff5757;
}

.white{
  color: white
}