/* CSS Reset */
*,
*::before,
*::after{box-sizing:border-box;}
a{text-decoration:none; color:inherit; cursor:pointer;}
button{background-color:transparent; color:inherit; border-width:0; padding:0; cursor:pointer;}
figure{margin:0;}
input::-moz-focus-inner {border:0; padding:0; margin:0;}
ul, ol, dd{margin:0; padding:0; list-style:none;}
h1, h2, h3, h4, h5, h6{margin:0; font-size:inherit; font-weight:inherit;}
p{margin:0;}
cite {font-style:normal;}
fieldset{border-width:0; padding:0; margin:0;}

body {
  font-family: 'Montserrat', sans-serif;
}

a {
  transition: all ease-in-out 0.2s;
}

#dpi {
  height: 1in;
  left: -100%;
  position: absolute;
  top: -100%;
  width: 1in;
}

.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5vw;
  min-height: 50px;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding-left: 4%;
  padding-right: 4%;
  font-size: 14px;
  z-index: 1000;
}

.percentage,
.pixels,
.distance {
  font-variant-numeric: tabular-nums;
}

.percentage,
.pixels {
  margin-right: 4%;
}

.distance {
  margin-right: auto;
}

.percentage span:last-child,
.pixels span:last-child,
.distance span:last-child {
  color: #919191;
}

.arrow {
  display: inline-block;
  width: 2vw;
  height: 2vw;
  min-width: 15px;
  min-height: 15px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transition: border-color ease-in-out 0.2s;
  cursor: pointer;
}

.arrow:hover,
.arrow:focus {
  border-color: #919191;
}

.arrow-top {
  transform: rotate(-45deg) translateY(50%);
  margin-right: 10%;
}

.arrow-bottom {
  transform: rotate(135deg) translateY(40%);
}

.header {
  padding: 0 10% 15% 10%;
}

.brand {
  padding-top: 20%;
  padding-bottom: 20%;
  text-align: center;
}

.brand .logo {
  align-self: center;
  margin-bottom: 6%;
  transform: translateX(50%);
  width: 20vw;
  height: 20vw;
  border-radius: 50%;
  background-color: #EC0547;
}

.brand .text {
  text-align: left;
  font-size: 4.15vw;
  font-weight: 700;
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width ease 1s 0.5s;
}

.brand .text-en {
  letter-spacing: 0.45vw;
}

.brand .text span {
  color: #EC0547;
}

body.loaded .brand .text {
  max-width: 100%;
}

h1 {
  margin-bottom: 9%;
}

h1 img {
  width: 100%;
  height: auto;
}

.short {
  margin-bottom: 17%;
  font-size: 2.85vw;
  font-weight: 600;
  line-height: 1.9;
}

.header-hr .short-en,
.header-hr .text-en {
  display: none;
}

.header-eng .short-hr,
.header-eng .text-hr {
  display: none;
}

.lang-switcher {
  margin: 0;
  padding: 0;
  text-align: right;
}

.lang-switcher > li {
  display: inline-block;
  margin-left: 2%;
  font-size: 3vw;
  text-transform: uppercase;
  color: #EC0547;
}

.lang-switcher > li > a:hover,
.lang-switcher > li > a:focus {
  color: #000;
}

.section {
  position: relative;
}

.first-contact {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  padding-top: 10%;
  padding-bottom: 10%;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.8;
  font-size: 4vw;
}

.first-contact img {
  width: 6vw;
  height: auto;
  margin-top: 2%;
}

.first-contact a:hover,
.first-contact a:focus {
  opacity: 0.8;
}

.last-contact {
  text-align: center;
  background-color: #FFC800;
  padding-top: 15%;
  padding-bottom: 15%;
}

.last-contact a {
  display: inline-block;
  padding: 2vw;
  border-radius: 4vw;
  background-color: #ffffff;
  font-size: 4vw;
  font-weight: 600;
}

.last-contact a:hover,
.last-contact a:focus {
  background-color: #fbde75;
}

.image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 52.083333%; /* image height / width * 100% */
}

.image img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.image img:before {
  content: attr(alt);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  padding-left: 10%;
  padding-right: 10%;
  background-color: #fff;
  color: rgb(100, 100, 100);
  z-index: 2;
}

.neon-on img:last-child {
  transition: opacity ease-in-out 0.1s;
  opacity: 0;
}

footer {
  position: relative;
  margin-top: -4px;
  padding: 20px 10% 20px 10%;
  background-color: #0096FF;
  color: #ffffff;
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}

footer .copyright {
  margin-bottom: 10px;
}

footer .info-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  max-height: 0;
  background-color: #121212;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

footer h3 {
  padding: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

footer p {
  margin-bottom: 3%;
  font-size: 12px;
  line-height: 1.6;
}

footer .info {
  margin: -10px;
  padding: 20px 10% 20px 10%;
}

footer.expanded .info-wrap {
  max-height: 1000px;
}

@media (min-width: 500px) {
  .scroll-bar {
    font-size: 2vw;
  }
}

@media (min-width: 768px) {
  .arrow-top {
    transform: rotate(-45deg) translateY(50%);
    margin-right: 6%;
  }

  footer {
    padding: 3% 10% 3% 10%;
    font-size: 1.2vw;
    text-align: left;
  }

  footer p {
    font-size: 1.2vw;
  }

  footer h3 {
    font-size: 1.8vw;
  }

  footer .info {
    padding: 2% 10% 2% 10%;
  }

  footer .copyright {
    display: inline-block;
    margin-bottom: 0;
  }

  footer .company-info {
    float: right;
  }

  footer .left {
    display: inline-block;
    width: 49%;
    padding: 10px;
  }

  footer .right {
    display: inline-block;
    width: 49%;
    padding: 10px;
  }
}

@media (min-width: 1600px) {
  .brand {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  footer {
    font-size: 1vw;
  }

  footer p {
    font-size: 1.2vw;
  }
}

@media (min-width: 2800px) {
  footer p {
    font-size: 1vw;
  }
}
