body {
  font-family: "Open Sans", sans-serif;
  background-color: #000000;
  color: #ffffff;
  margin: 0;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 15px;
}

.container-fluid {
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.top-banner {
  display: flex;
  flex-direction: column;
  background-image: url("../img/banner-top.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.top-banner .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 32px;
}
.top-banner .bottom {
  max-width: 700px;
  margin: 10% auto;
  padding: 15px;
}
@media (max-width: 991px) {
  .top-banner .bottom {
    margin: 100px auto;
  }
}
.top-banner .title {
  font-size: 4rem;
  font-weight: 600;
  margin: 0 0 0.1em 0;
  line-height: 1em;
}
.top-banner .sub-title {
  font-size: 2.2rem;
  font-weight: 400;
  margin: 7% 0;
}
.top-banner .description {
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0.2em auto 0;
}
@media (max-width: 600px) {
  .top-banner .title {
    font-size: 3.2rem;
  }
  .top-banner .sub-title {
    font-size: 1.8rem;
  }
  .top-banner .description {
    font-size: 1.1rem;
  }
}

.col {
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.card-container .col {
  border-top: 6px solid #444;
  padding: 70px 20px;
}
.card-container .col:nth-child(even) .card {
  flex-direction: row-reverse;
  text-align: left;
}

.card {
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  text-align: right;
  justify-content: space-evenly;
}

.inner-col {
  width: 50%;
  padding: 15px;
  position: relative;
}
.inner-col:first-of-type {
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner-col:last-of-type {
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 991px) {
  .card {
    flex-wrap: wrap;
  }
  .card .inner-col {
    width: 100%;
    text-align: center;
  }
}
.card h2.title {
  width: 100%;
  font-size: 3.1rem;
  font-weight: 600;
  margin: 0 0 0.4em;
}
.card .thumbnail {
  position: relative;
}
.card .thumbnail:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  box-shadow: inset 0 0 3px 10px #000;
}
.card .thumbnail img {
  width: 100%;
  height: auto;
}
.card p.description {
  font-size: 1.9rem;
}
@media (max-width: 992px) {
  .card p.description {
    font-size: 1.7rem;
    margin: 0;
  }
}
@media (max-width: 600px) {
  .card h2.title {
    font-size: 2.8rem;
  }
  .card p.description {
    font-size: 1.5rem;
  }
}

.col:nth-child(even) .card .thumbnail {
  margin-right: -500px;
  margin-left: 500px;
}
.col:nth-child(odd) .card .thumbnail {
  margin-left: -500px;
  margin-right: 500px;
}

.card .thumbnail {
  opacity: 0;
  transition: opacity 0.7s ease-in, margin 0.7s ease-out;
}
.card.in-view .thumbnail {
  opacity: 1;
  margin: 0 !important;
}

.button-wrapper .button {
  margin-left: 12px;
}
.button-wrapper .button:first-of-type {
  margin-left: 0;
}

.button {
  background-color: #2A93E5;
  color: #fff;
  padding: 8px 16px;
  border-radius: 2px;
  text-decoration: none;
  min-width: 90px;
  text-align: center;
  transition: background-color 0.2s ease;
}
.button:hover {
  background-color: #6eb6ed;
}

footer {
  border-top: 6px solid #444;
  padding: 35px 0 25px;
}
footer .col {
  text-align: center;
}
footer a {
  color: #fff;
}

footer .row.bottom {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .row.bottom .col {
  width: 33.333%;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  footer .row.bottom .col {
    width: 100%;
  }
}

.social .col {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 450px;
  margin: 0 auto;
}

.social-icon {
  color: #fff;
  padding: 12px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.social-icon svg {
  width: 34px;
  height: auto;
  fill: currentColor;
}
.social-icon:hover {
  background-color: #2A93E5;
}

.app-stores {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 450px;
  margin: 0 auto;
}
@media (max-width: 450px) {
  .app-stores {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.app-store {
  display: inline-block;
  border: 1px solid #555;
  border-radius: 2px;
  background-color: #444;
  color: #fff;
  padding: 4px 12px;
  min-width: 140px;
  margin: 0 12px 7px;
  text-decoration: none;
}
.app-store:hover {
  border: 1px solid #999;
  background-color: #777;
  color: #fff;
}
.app-store .tagline {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 12px;
}
.app-store svg {
  fill: currentColor;
  width: 20px;
  height: auto;
}
.app-store .store {
  display: flex;
  font-weight: 700;
  font-size: 18px;
}
.app-store .store span {
  margin-left: 5px;
}

.privacy-policy h4 {
  color: #2A93E5;
}
.privacy-policy a {
  color: #6eb6ed;
}
.privacy-policy a:hover {
  color: #2A93E5;
}

/*# sourceMappingURL=style.css.map */
