* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  font-family: "Helvetica Now Text", sans-serif;
  font-weight: 100;
  font-size: 12px;
  color: #fff;
  height: 100%;
}

.global-container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.popin {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .8);
  overflow: hidden;
}

.popin.open {
  width: 100%;
  height: 100%;
  z-index: 10;
}

.panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  transform: translateX(-100%);
  transition: transform .5s;
  background: #fff;
  display: flex;
  align-items: center;
  overflow-y: scroll;
}

.popin.open .panel {
  transform: translateX(0);
}

.button-close {
  position: absolute;
  top: 20px;
  left: calc(5vw - 5px);
  width: 15px;
  height: 15px;
  padding: 5px;
  cursor: pointer;
}

.panel-wrapper {
  width: 100%;
  padding: 0 5vw;
  color: #212121;
}

.panel-title {
  color: inherit;
  font-size: 16px;
  font-weight: 300;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
}
.panel-title b {
  font-weight: 700;
}

.image-qrcode {
  display: block;
  width: 100%;
}

.panel-text {
  color: inherit;
  font-size: 15px;
}

.background-image {
  position: absolute;
  z-index: -10;
  width: 100%;
  height: 100%;
  background-image: url("../media/background_mobile.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-container {
  margin: 0 auto;
  width: 90vw;
  max-width: 960px;
}

.header {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  z-index: 5;
  text-align: center;
}

.header-logo {
  width: 140px;
  fill: #fff;
}

.first-title {
  font-family: "RolexFont-S", Helvetica, sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
  letter-spacing: .05em;
}

.first-title,
.subtitle {
  margin-bottom: 30px;
}

.subtitle {
  font-size: 16px;
  line-height: 1.7;
}

.link-list {
  list-style: none;
  max-width: 360px;
  columns: 2;
}

.link-list li {
  margin-bottom: 10px;
  font-size: 16px;
  display: inline-block;
}

.link-list a {
  display: flex;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  transition: color .3s ease;
}

.link-list svg {
  fill: #fff;
  transition: fill .7s ease;
}

.link-list a:hover {
  color: rgba(255, 255, 255, .5);
}

.link-list a:hover svg {
  fill: rgba(255, 255, 255, .5);
}

.link-list p {
  margin-left: 20px;
}

@media screen and (min-width: 768px) {
  .background-image {
    background-image: url("../media/background_desktop.jpg");
  }

  .first-title {
    font-size: 40px;
  }

  .subtitle {
    font-size: 20px;
  }

  .panel {
    width: 50%;
  }

  .panel-title {
    font-size: 20px;
    padding-bottom: 20px;
  }

  .panel-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .panel-wrapper {
    padding-top: 40px;
  }
}

@media screen and (max-width: 380px) {
  .link-list>li {
    font-size: 15px;
  }
}
