/* media queries */


body {
  font-family: "Avenir Next", sans-serif;
  font-weight: 500;
  color: #062644;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #FFFFFF;
  margin: 0;
}

.header {
  padding: 10px 16px;
  background: #555;
  color: #f1f1f1;
}

.sticky {
  position: fixed;
  top: 0;
}

.sticky + .full-width {
  padding-top: 80px;
}

.navbar {
  width: calc(100vw - 180px);
  height: 80px;
  background-color: white;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 90px;
}

.navbar.sticky {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 9px 20px, rgba(0, 0, 0, 0.1) 0px 0px 1px;
}

.nav-link {
  color: #000;
  opacity: 0.6;
  text-decoration: none;
  margin-left: 45px;
  font-size: 18px;
  font-weight: 400;
}

.nav-link.active{
  opacity: 1;
  background: none;
}

.nav-link:hover {

}

.navbar.transparent-navbar {
  background-color: transparent;
}

.navbar.transparent-navbar.default-fixed {
  box-shadow: none;
  position: fixed;
  top: 0;
}


.navbar.transparent-navbar .navbar-links .nav-link {
  color: #fff;
  opacity: 0.8;
}

.navbar.transparent-navbar .navbar-links .nav-link:hover {
  opacity: 1;
}

.full-width {
  display: flex;
  overflow: hidden;
}

.left-content {
  width: 40%;
  height: 100vh;
}

.left-content-scrollbox {
  margin-top: 80px;
  height: calc(100vh - 80px);
  overflow: scroll;
}

.left-content-inner {
  padding: 50px 90px;
}

.right-content {
  width: 60%;
  height: 100vh;
  background-color: #000;
}

.right-content-inner {
}

.hero-image-container {
}

.hero-image-full {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  width: 100px;
  height: 18px;
  margin: 0;
}

.title.hero {
  font-family: "Avenir Next", sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 55px;
  margin: 20px 0 30px 0;
  color: #1366B2;
}

.cover {
  object-fit: cover;
}

#app-list {
  display: flex;
  flex-direction: column;
}

.app-icon {
  margin-right: 20px;
  height: 50px;
}

.app {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 6px;
  border-radius: 10px;
  margin-bottom: 5px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.app:hover, .active {
  background: #D0E6FB;
  transition: all 0.2s ease;
}

.app a {
  color: #9BA8B4;
  transition: all 0.2s ease;
  font-size: 20px;
  cursor: pointer;
}

.app.active a {
  color: #1366B2;
  transition: all 0.2s ease;
}

.content {
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  height: 100%;
  width: 60%;
  position: absolute;
  top: 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content.selected {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease;
  text-decoration: none;
}

.content-text {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
}

.content h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
}

.content span {
  color: #ffffff;
  font-size: 14px;
  line-height: 140%;
  width: 235px;
}

.screenshot {
}

.download-buttons-container {
  flex-direction: column !important;
  margin-top: 4vh !important;
}

.download-buttons-container a {
  z-index: 1;
  text-decoration: none;
}

.download-button {
  width: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin-bottom: 10px;
}

.download-button.web {
  background-color: #1366B2;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  letter-spacing: 1px;
}

.download-button.web:hover {
  filter: brightness(90%);
  transition: all 0.2s ease;
}

.download-button.web span {
  width: auto;
  text-decoration: none;
  font-weight: 600;
}

.download-button.app-store, .download-button.play-store {
  background-color: #000000;
}

.app-store-img, .play-store-img {
  width: 150px;
}

.footer-links {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
}

.social-link {
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}

.social-link:hover {
  opacity: .9;
}

.social-link:not(:last-child) {
  margin-right: 8px;
}

.social-icon {
  height: 16px;
}


#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  z-index: 100;
  display: none;
}
.popup{
  display: none;
  position: fixed;
  z-index: 101;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup-content{
  width: 50vw;
  min-height: 150px;
  background: #f3f3f3;
  position: relative;
  z-index: 103;
  padding: 15px 35px 35px 35px;
  border-radius: 10px;
  box-shadow: 0 2px 10px #444;
}

.close-popup {
  width: 26px;
  height: 26px;
}
.close-popup:hover {
  opacity: 0.6;
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-content p{
  clear: both;
  color: #555555;
  /* text-align: justify; */
  font-size: 20px;
  font-family: sans-serif;
}

@media screen and (max-width: 1263px) {
  .title.hero {
    font-size: 4vw;
    line-height: 4.5vw;
  }
}


@media screen and (max-width: 992px) {

  .navbar, .navbar.transparent-navbar.default-fixed {
    height: 40px;
    padding: 0 20px;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar.transparent-navbar.default-fixed {
    position: static;
  }

  .navbar.transparent-navbar .navbar-links .nav-link {
    color: #000;
  }

  .full-width {
    flex-direction: column;
  }

  .left-content {
    width: 100%;
    height: auto;
  }

  .left-content-scrollbox {
    margin-top: inherit;
    height: inherit;
    overflow: inherit;
  }

  .left-content-inner {
    padding: 5px;
  }

  .right-content {
    width: 100%;
    height: 920px;
  }

  .content {
    width: 100%;
    height: auto;
    top: auto;
    flex-direction: column;
    justify-content: normal;
    height: 920px;
  }

  .content-text {
    order: 1;
    text-align: center;
    align-items: center;
    margin: 0 0 40px 0;
  }

  .screenshot {
    order: 2;
    height: 54%;
  }

  .download-button.web {
    display: none;
  }

  #app-list {
    flex-direction: row;
  }

  .app {
    flex-direction: column;
    width: calc((100vw - 10px) / 6 - 8px);
    text-align: center;
    padding: 5px 4px;
  }

  .app a {
    font-size: 12px;
    font-weight: 600;
  }

  .app-icon {
    margin: 0 0 10px 0;
  }

  .title.hero {
    display: none;
  }

  .footer-links {
    right: unset;
  }

  .popup-content {
    width: 80vw;
    padding: 15px;
    font-size: 13px;
  }
}
