/* >> Import Reset
--- --- --- --- --- --- --- --- --- --- --- --- --- ---*/
/* >> Reset
--- --- --- --- --- --- --- --- --- --- --- --- --- --- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-style: inherit;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

code {
  font-family: monospace;
}

b,
strong {
  font-weight: bold;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  position: relative;
}

img {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  display: block;
}

a {
  outline: none;
  text-decoration: none;
}

.chromeframe {
  margin: 0;
  padding: 0;
}

/* >> Import Variables
--- --- --- --- --- --- --- --- --- --- --- --- --- ---*/
/* --- --- --- --- --- --- --- --- --- --- --- --- --- --- *\
Scss - Variables
\* --- --- --- --- --- --- --- --- --- --- --- --- --- --- */
/* >> Teva Colors
--- --- --- --- --- --- --- --- --- --- --- --- --- --- */
/* >> Other
--- --- --- --- --- --- --- --- --- --- --- --- --- --- */
/* >> Breakpoints
--- --- --- --- --- --- --- --- --- --- --- --- --- --- */
/* >> Import Mixins
--- --- --- --- --- --- --- --- --- --- --- --- --- ---*/
/* >> Mixins
--- --- --- --- --- --- --- --- --- --- --- --- --- --- */
/* >> Import Groups
--- --- --- --- --- --- --- --- --- --- --- --- --- ---*/
/* >> Groups
--- --- --- --- --- --- --- --- --- --- --- --- --- --- */
body {
  display: flex;
  flex-direction: column;
}
body .sticky-wrapper {
  flex: 1 1 auto;
  display: flex;
  flex-flow: column wrap;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
body .sticky-wrapper .page-wrapper {
  width: 100%;
  flex: 1 1 auto;
}

footer .footer-wrapper, body .link_wrapper, body .content_wrapper {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

/* >> Import Layouts
--- --- --- --- --- --- --- --- --- --- --- --- --- ---*/
/* >> Main Layout
--- --- --- --- --- --- --- --- --- --- --- --- --- --- */
html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
}
body ::-moz-selection {
  background: rgba(19, 156, 234, 0.5); /* WebKit/Blink Browsers */
}
body ::selection {
  background: rgba(19, 156, 234, 0.5); /* WebKit/Blink Browsers */
}
body ::-moz-selection {
  background: rgba(19, 156, 234, 0.5); /* Gecko Browsers */
}
body #main_container {
  background-image: linear-gradient(#ffffff, #0f5094);
}
body #main_container .page-wrapper {
  display: flex;
}
body .content_wrapper {
  width: 90%;
  max-width: 1920px;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  body .content_wrapper {
    align-items: center;
    justify-content: center;
  }
}
body .content_wrapper .content_wrapper-item {
  width: 100%;
}
@media only screen and (min-width: 960px) {
  body .content_wrapper .content_wrapper-item {
    width: 50%;
    max-width: 1920px;
  }
}
@media only screen and (min-width: 960px) {
  body .content_wrapper .content_wrapper-item:first-child {
    width: 40%;
  }
}
body .content_wrapper a {
  transition: all linear 0.4s;
  font-weight: 600px;
  color: #ffffff;
}
body .content_wrapper a:hover {
  transition: all linear 0.4s;
  color: rgba(19, 156, 234);
}
body .page_title {
  font-size: 2.3em;
  line-height: 1;
  padding: 1em 0;
  font-weight: 800;
  text-align: center;
  margin: 0 auto 0 0;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(15, 80, 148, 0.3);
}
body .page_title b {
  display: block;
  font-size: 3em;
  font-weight: 900;
  font-style: italic;
}
body .lead {
  width: 100%;
  padding: 1em 0;
  font-weight: 475;
  text-align: justify;
  text-justify: inter-word;
}
body .lead p {
  margin: 1em 0;
}
body .link_wrapper {
  justify-content: center;
}
body .link_wrapper .link_item {
  width: 50%;
  text-align: center;
}

.btn {
  display: inline-block;
}
.btn.btn--google {
  margin-top: 20px;
  width: 164px;
  height: 45px;
  background: url(../images/google-play-btn.png) no-repeat center center;
  background-size: 168px;
}
.btn.btn--ios {
  margin-top: 20px;
  width: 164px;
  height: 45px;
  background: url(../images/ios-btn.svg) no-repeat center center;
  background-size: 164px;
}
.btn.btn--download {
  position: relative;
  padding: 20px 25px;
}
.btn.btn--download:first-child {
  margin-right: 30px;
}
.btn.btn--download:before {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 30px;
  background: rgba(19, 156, 234, 0.5);
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
}
.btn.btn--download span {
  transition: all linear 0.4s;
  color: #ffffff;
  font-weight: 300;
  z-index: 2;
}
.btn.btn--download:hover:before {
  width: 100%;
  background: rgba(19, 156, 234);
}
.btn.btn--download:hover span {
  transition: all linear 0.4s;
  color: #2d2d2d;
}

.mobile_mockup {
  display: none;
}
@media only screen and (min-width: 960px) {
  .mobile_mockup {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    animation: y-move 10s alternate infinite linear;
  }
}
@keyframes y-move {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/* --- --- --- --- --- --- --- --- --- --- --- --- --- ---*\
Import BEM
\* --- --- --- --- --- --- --- --- --- --- --- --- --- ---*/
/* >> Header
--- --- --- --- --- --- --- --- --- --- --- --- --- ---*/
header .logo {
  display: block;
  margin: 0 auto;
  padding: 1em 0;
  width: 200px;
  max-width: 90%;
}
header .logo img {
  display: block;
  width: 100%;
}
header .seo-wrapper {
  display: none;
}

/* >> Footer
--- --- --- --- --- --- --- --- --- --- --- --- --- ---*/
footer {
  display: flex;
  background-color: #000000;
}
footer .footer-wrapper {
  width: 90%;
  max-width: 1920px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 10px;
  padding: 5px 0;
}
@media only screen and (min-width: 960px) {
  footer .footer-wrapper {
    align-items: center;
    justify-content: space-between;
  }
}
footer a {
  transition: all linear 0.4s;
  color: #ffffff;
  margin: 0 10px;
}
footer a:hover {
  transition: all linear 0.4s;
  color: rgba(19, 156, 234);
}

/* >> Animation
--- --- --- --- --- --- --- --- --- --- --- --- --- ---*/
.animate {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.one {
  animation-delay: 0.5s;
}

.two {
  animation-delay: 1.25s;
}

.three {
  animation-delay: 2s;
}

.four {
  animation-delay: 2.75s;
}

.five {
  animation-delay: 3.5s;
}

.six {
  animation-delay: 4.25s;
}

.seven {
  animation-delay: 5s;
}

/*=== FADE IN  ===*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}/*# sourceMappingURL=main.css.map */