@font-face {
  font-family: Museo;
  font-weight: 500;
  src: url("../fonts/500.ttf") format("truetype");
}

@font-face {
  font-family: Museo;
  font-weight: 700;
  src: url("../fonts/700.otf") format("truetype");
}

@font-face {
  font-family: Museo;
  font-weight: 900;
  src: url("../fonts/900.ttf") format("truetype");
}

@font-face {
  font-family: Lato-Bold;
  src: url("../fonts/Lato-Bold.ttf") format("truetype");
}

@font-face {
  font-family: Lato-Light;
  src: url("../fonts/Lato-Light.ttf") format("truetype");
}

@font-face {
  font-family: Lato-Regular;
  src: url("../fonts/Lato-Regular.ttf") format("truetype");
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#151e28), color-stop(70%, rgba(21, 30, 40, 0.5)), to(rgba(21, 30, 40, 0)));
  background: linear-gradient(to bottom, #151e28 0%, rgba(21, 30, 40, 0.5) 70%, rgba(21, 30, 40, 0) 100%);
  z-index: 110;
}

@media (min-width: 768px) {
  header {
    max-width: 90vw;
    margin: 0 auto;
    background: none;
    margin-left: 5vw;
  }
}

header .logo-wrapper {
  position: absolute;
  margin: 2vh auto;
  width: 100px;
  left: 0;
  right: 0;
}

@media (min-width: 768px) {
  header .logo-wrapper {
    margin: 6vh 0;
    left: calc(40px + 2%);
    width: 9.5vw;
  }
}

header .logo-wrapper .logo-abaco {
  position: absolute;
  width: 100%;
}

header .logo-wrapper .logo-punto {
  position: absolute;
  width: 8%;
  left: 2.5%;
  opacity: 0;
  -webkit-animation: 1.8s headerLogoDot forwards;
          animation: 1.8s headerLogoDot forwards;
}

@-webkit-keyframes headerLogoDot {
  0% {
    -webkit-transform: translateY(-300%);
            transform: translateY(-300%);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  37% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-75%);
            transform: translateY(-75%);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  73% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  82% {
    -webkit-transform: translateY(-21%);
            transform: translateY(-21%);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  91% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  96% {
    -webkit-transform: translateY(-6%);
            transform: translateY(-6%);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes headerLogoDot {
  0% {
    -webkit-transform: translateY(-300%);
            transform: translateY(-300%);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  37% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-75%);
            transform: translateY(-75%);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  73% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  82% {
    -webkit-transform: translateY(-21%);
            transform: translateY(-21%);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  91% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  96% {
    -webkit-transform: translateY(-6%);
            transform: translateY(-6%);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}

.main-wrapper {
  height: calc(100vh - 100px);
  margin-top: 9vh;
}

@media (min-width: 768px) {
  .main-wrapper {
    height: calc(100vh - 50px);
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.main-slider {
  height: 100%;
}

.main-slider .swiper-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 30px 0;
  color: #fff;
  text-align: center;
}

.main-slider .swiper-slide__title {
  font-family: 'Museo';
  font-size: 5.6vw;
  font-weight: 700;
}

.main-slider .swiper-slide__title span {
  font-family: 'Museo';
}

.main-slider .swiper-slide__text {
  font-family: Lato-Regular;
  font-weight: 500;
  font-size: 10pt;
  margin: 20px 0;
}

.main-slider .swiper-slide__img img {
  max-width: 100%;
}

.main-slider .swiper-slide__logo {
  display: none;
}

.main-slider .swiper-button-next {
  right: 5px;
}

.main-slider .swiper-button-next:after {
  background: url("../assets/flecha.png") no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  text-indent: -99999px;
  width: 100%;
  font-size: 14px;
}

.main-slider .swiper-button-prev {
  left: 5px;
}

.main-slider .swiper-button-prev:after {
  background: url("../assets/flecha.png") no-repeat center;
  background-size: contain;
  text-indent: -99999px;
  width: 100%;
  font-size: 14px;
}

.main-slider .swiper-pagination.swiper-pagination-bullets {
  bottom: auto;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
}

.main-slider .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: inherit;
  border-radius: 0;
  height: 2px;
  margin: 0;
  background: #fff;
}

.main-slider .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #fff;
}

.main-slider .secondary-slider {
  padding: 10px 10px 0;
}

.main-slider .secondary-slider .swiper-wrapper {
  -webkit-box-shadow: 4px 0px 5px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 4px 0px 5px -1px rgba(0, 0, 0, 0.2);
}

.main-slider .secondary-slider .swiper-slide {
  padding: 0;
}

.main-slider .secondary-slider .desktop-images {
  display: none;
}

.main-slider .stores-wrapper {
  display: none;
  margin-top: 20px;
}

.main-slider .stores-wrapper .btn {
  width: 120px;
  height: 35px;
  display: inline-block;
  background-size: 100% 100%;
  margin-right: 20px;
}

.main-slider .stores-wrapper .btn.btn-ios {
  background-image: url("https://abaco.app/assets/ios-play-badge.svg");
}

.main-slider .stores-wrapper .btn.btn-android {
  background-image: url("https://abaco.app/assets/google-play-badge.svg");
}

@media (min-width: 768px) {
  .main-slider {
    height: auto;
  }
  .main-slider .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px 40px 0;
  }
  .main-slider .swiper-slide__logo {
    display: block;
    position: relative;
    margin-top: 40px;
  }
  .main-slider .swiper-slide__logo .logo-abaco {
    width: 200px;
  }
  .main-slider .swiper-slide__logo .logo-punto {
    position: absolute;
    left: 6px;
    top: 0;
    width: 13px;
  }
  .main-slider .swiper-slide__title {
    font-size: 2.4vw;
    margin-top: 0;
    line-height: 1.2;
  }
  .main-slider .swiper-slide__title span {
    display: block;
    text-transform: uppercase;
  }
  .main-slider .swiper-slide__title br {
    display: none;
  }
  .main-slider .swiper-slide__text {
    font-size: 1.3vw;
    line-height: 1.4;
    width: 28vw;
  }
  .main-slider .secondary-slider {
    max-width: 46%;
    margin-left: 0;
    display: none;
  }
  .main-slider .swiper-slide-content {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 2%;
  }
  .main-slider .swiper-pagination {
    width: calc(50% - 40px);
    left: 40px;
    top: auto;
  }
  .main-slider .swiper-pagination.swiper-pagination-bullets {
    padding: 0 0 0 2%;
    top: auto;
    bottom: 0;
  }
  .main-slider .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    height: 4px;
  }
  .main-slider .swiper-button-next:after {
    font-size: 20px;
  }
  .main-slider .swiper-button-prev:after {
    font-size: 20px;
  }
  .main-slider .desktop-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 46%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 2%;
  }
  .main-slider .desktop-images img.two-items {
    width: 50%;
    margin-left: -25%;
    position: relative;
  }
  .main-slider .desktop-images img.two-items:first-child {
    margin-left: 0;
    z-index: 10;
  }
  .main-slider .desktop-images img.two-items:nth-child(2) {
    z-index: 9;
    margin-left: -30px;
    width: 40%;
  }
  .main-slider .desktop-images img.three-items {
    width: 50%;
    margin-left: -25%;
    position: relative;
  }
  .main-slider .desktop-images img.three-items:first-child {
    margin-left: 0;
    z-index: 10;
  }
  .main-slider .desktop-images img.three-items:nth-child(2) {
    z-index: 9;
    margin-left: -100px;
    width: 40%;
  }
  .main-slider .desktop-images img.three-items:nth-child(3) {
    z-index: 8;
    margin-left: -80px;
    width: 30%;
  }
  .main-slider .stores-wrapper {
    display: block;
  }
}

footer {
  position: fixed;
  bottom: 0;
  padding: 60px 15px 15px 15px;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#151e28), color-stop(70%, rgba(21, 30, 40, 0.5)), to(rgba(21, 30, 40, 0)));
  background: linear-gradient(to top, #151e28 0%, rgba(21, 30, 40, 0.5) 70%, rgba(21, 30, 40, 0) 100%);
  z-index: 10;
}

footer .footer-items-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  text-align: center;
  line-height: 20pt;
}

footer .footer-items-wrapper a {
  color: #fff;
  font-size: 12px;
  font-family: 'Lato-Light', serif;
}

footer .stores-wrapper {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

footer .btn {
  width: 140px;
  height: 40px;
  display: inline-block;
  background-size: 100% 100%;
}

footer .btn.btn-ios {
  background-image: url("https://abaco.app/assets/ios-play-badge.svg");
}

footer .btn.btn-android {
  background-image: url("https://abaco.app/assets/google-play-badge.svg");
}

footer .btn.btn-ismobile {
  width: 100%;
  text-align: center;
  background: linear-gradient(45deg, #2DBD9D 0%, #72DE93 100%);
  color: #fff !important;
  -webkit-box-shadow: 0px 5px 10px #0003;
          box-shadow: 0px 5px 10px #0003;
  font-size: 14pt;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  padding: 20px 0;
  height: 56px;
  display: none;
}

@media (min-width: 768px) {
  footer {
    max-width: 90vw;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: none;
    padding: 0px 40px 15px 40px;
  }
  footer .btn {
    width: 150px;
    height: 45px;
  }
  footer .footer-items-wrapper {
    width: 46%;
    margin-left: 0;
    padding-bottom: 10px;
    padding-left: 2%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  footer .footer-items-wrapper a {
    margin-right: 30px;
  }
  footer .stores-wrapper {
    display: none;
    width: 46%;
    margin-left: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 110px;
  }
  footer .stores-wrapper a {
    margin-right: 40px;
  }
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: 'Graphik-Regular-Web', sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  background: #161C24;
  height: 100%;
}

body {
  background: #161C24;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  body {
    background: -webkit-gradient(linear, left top, right bottom, color-stop(49.9%, #161C24), color-stop(50.1%, rgba(255, 255, 255, 0.05)));
    background: linear-gradient(to bottom right, #161C24 49.9%, rgba(255, 255, 255, 0.05) 50.1%);
  }
}

section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  max-width: 96vw;
  margin: 0 auto;
}

@media (min-width: 768px) {
  section {
    max-width: 90vw;
  }
}

.bg-effect {
  position: fixed;
  width: 100%;
  height: 50vh;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.05);
  -webkit-transform: skewY(-10deg);
          transform: skewY(-10deg);
  -webkit-box-shadow: -4px 0 6px rgab(#000, 0.6);
          box-shadow: -4px 0 6px rgab(#000, 0.6);
  display: block;
}

@media (min-width: 768px) {
  .bg-effect {
    display: none;
  }
}

.stores-wrapper .prez-btn {
  display: block;
  height: 56px;
  width: 100%;
  min-width: 136px;
  margin: 0 auto;
  padding: 20px 0;
  border: none;
  font-size: 14pt;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  background: linear-gradient(45deg, #2DBD9D 0%, #72DE93 100%);
  color: #fff !important;
  -webkit-box-shadow: 0px 5px 10px #0003;
          box-shadow: 0px 5px 10px #0003;
  -webkit-transform: translateY(0) translate3d(0, 0, 90px) scale(0.8);
          transform: translateY(0) translate3d(0, 0, 90px) scale(0.8);
  -webkit-transition: -webkit-box-shadow 0.4s ease, -webkit-transform 0.1s ease;
  transition: -webkit-box-shadow 0.4s ease, -webkit-transform 0.1s ease;
  transition: box-shadow 0.4s ease, transform 0.1s ease;
  transition: box-shadow 0.4s ease, transform 0.1s ease, -webkit-box-shadow 0.4s ease, -webkit-transform 0.1s ease;
}
/*# sourceMappingURL=styles.css.map */