@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Arimo:400,400i,700,700i&display=swap');
@font-face {
  font-family: Aris;
  src: url("../fonts/Aris.ttf")
}
html, body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
h5 {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  color: white;
  font-size: 1.2em;
  line-height: 1.5;
  margin: 1.5em 0;
}
h6 {
  font-family: 'Aris', sans-serif;
  color: #27BDBE;
  font-size: 1.5em;
  margin: 0;
}
#logo {
  width: 30vw;
  height: auto;
  position: absolute;
  top: 40%;
  left: 51.3%;
  transform: translate(-50%, -100%);
  animation: fill 0.5s ease forwards 3s;
  -webkit-filter: drop-shadow(0 0 5px rgba(63, 231, 232, .5));
  filter: drop-shadow(0 0 5px rgba(63, 231, 232, .5));
  z-index: -10;
}
#logo path:nth-child(2) {
  stroke-dasharray: 199;
  stroke-dashoffset: 199;
  animation: line-anim 2s ease forwards;
}
#logo path:nth-child(4) {
  stroke-dasharray: 141;
  stroke-dashoffset: 141;
  animation: line-anim 2s ease forwards 0.3s;
}
#logo path:nth-child(5) {
  stroke-dasharray: 224;
  stroke-dashoffset: 224;
  animation: line-anim 2s ease forwards 0.6s;
}
#logo path:nth-child(1) {
  stroke-dasharray: 199;
  stroke-dashoffset: 199;
  animation: line-anim 2s ease forwards 0.9s;
}
#logo path:nth-child(3) {
  stroke-dasharray: 135;
  stroke-dashoffset: 135;
  animation: line-anim 2s ease forwards 1.2s;
}
#logo path:nth-child(6) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.9s;
}
#logo path:nth-child(7) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.8s;
}
#logo polygon:nth-child(8) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.7s;
}
#logo polygon:nth-child(9) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.6s;
}
#logo path:nth-child(10) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.5s;
}
#logo polygon:nth-child(11) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.4s;
}
#logo rect:nth-child(12) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.3s;
}
#logo path:nth-child(13) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.4s;
}
#logo path:nth-child(14) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.5s;
}
#logo polygon:nth-child(15) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.6s;
}
#logo rect:nth-child(16) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.7s;
}
#logo path:nth-child(17) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.8s;
}
#logo polygon:nth-child(18) {
  opacity: 0%;
  animation: com 0.5s ease-in forwards 3.9s;
}
@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fill {
  from {
    fill: transparent;
  }
  to {
    fill: #27BDBE;
  }
}
@keyframes com {
  from {
    opacity: 0%;
  }
  to {
    opacity: 100%;
  }
}
.center-main {
  position: absolute;
  text-align: center;
  top: 40%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -500;
}
.center-main h5 {
  opacity: .8;
  max-width: 800px;
}
.main-menu {
  display: flex;
  justify-content: space-between;
  width: 1024px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 20%);
}
.icon {
  fill: #334559;
}
button {
  width: 14rem;
  height: 4rem;
  border-radius: 5px;
  border-left: solid 70px #27BDBE;
  border-top: solid 2px #27BDBE;
  border-right: solid 2px #27BDBE;
  border-bottom: solid 2px #27BDBE;
  transform: skewX(-20deg);
  outline: none;
  cursor: pointer;
  transition: .5s ease-out;
  background: linear-gradient(90deg, var(--c1, transparent), var(--c2, transparent) 51%, var(--c1, transparent)) var(--x, 0)/ 200%;
}
button:hover {
  --x: 100%;
  --c1: transparent;
  --c2: rgba(63, 231, 232, .3);
}
button h6 {
  transform: skewX(20deg)
}
button svg {
  position: absolute;
  left: 0;
  margin-left: -50px;
  margin-top: -7px;
  transform: skewX(20deg)
}
.icon-sub {
  fill: rgba(255, 255, 255, .5)
}
.menu-sub h6 {
  margin-top: 1rem;
  color: rgba(255, 255, 255, .5)
}
.menu-sub {
  display: flex;
  justify-content: center;
  bottom: 10%;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  z-index: -10;
}
.page {
  margin: 0 40px;
  cursor: pointer;
  display: block;
  text-align: center;
}
.page:hover .icon-sub {
  fill: white;
}
.page:hover h6 {
  color: white;
  -webkit-filter: drop-shadow(0 0 5px rgba(63, 231, 232, 1));
  filter: drop-shadow(0 0 5px rgba(63, 231, 232, 1));
}
.container-main {
  margin: 2rem auto;
  display: flex;
  justify-content: space-between;
  width: 60vw;
}
.language {
  font-family: 'Arimo', sans-serif;
  color: white;
  font-size: 1.2rem;
}
a {
  cursor: pointer
}
a:active {
  color: #27BDBE
}
a:hover {
  color: #27BDBE
}
div.burger {
  height: 30px;
  width: 40px;
  position: absolute;
  top: 2%;
  right: 3%;
  cursor: pointer;
  z-index: 1;
}
div.x, div.y, div.z {
  position: absolute;
  margin: auto;
  top: 0px;
  bottom: 0px;
  background: rgba(255, 255, 255, .7);
  border-radius: 2.5px;
  -webkit-transition: all 200ms ease-out;
  -moz-transition: all 200ms ease-out;
  -ms-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}
div.x, div.y, div.z {
  height: 5px;
  width: 40px;
}
div.y {
  top: 18px;
}
div.z {
  top: 37px;
}
div.collapse {
  top: 20px;
  background: #27BDBE;
  -webkit-transition: all 70ms ease-out;
  -moz-transition: all 70ms ease-out;
  -ms-transition: all 70ms ease-out;
  -o-transition: all 70ms ease-out;
  transition: all 70ms ease-out;
}
div.rotate30 {
  -ms-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-transition: all 50ms ease-out;
  -moz-transition: all 50ms ease-out;
  -ms-transition: all 50ms ease-out;
  -o-transition: all 50ms ease-out;
  transition: all 50ms ease-out;
}
div.rotate150 {
  -ms-transform: rotate(150deg);
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
  -webkit-transition: all 50ms ease-out;
  -moz-transition: all 50ms ease-out;
  -ms-transition: all 50ms ease-out;
  -o-transition: all 50ms ease-out;
  transition: all 50ms ease-out;
}
div.rotate45 {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 100ms ease-out;
  -moz-transition: all 100ms ease-out;
  -ms-transition: all 100ms ease-out;
  -o-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}
div.rotate135 {
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 100ms ease-out;
  -moz-transition: all 100ms ease-out;
  -ms-transition: all 100ms ease-out;
  -o-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}
div.circle {
  border-radius: 0;
  width: 0px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #334559;
  opacity: .9;
  -webkit-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  -moz-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  -ms-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  -o-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  overflow: hidden;
}
div.circle.expand {
  width: 330px;
  height: 100%;
  top: 0;
  right: 0;
  -webkit-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  -moz-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  -ms-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  -o-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.menu {
  height: 568px;
  width: 325px;
  position: absolute;
  top: 10%;
  right: 0px;
}
.menu h6:hover {
  color: white;
  -webkit-filter: drop-shadow(0 0 5px rgba(63, 231, 232));
  filter: drop-shadow(0 0 5px rgba(63, 231, 232));
}
div.menu ul li {
  list-style: none;
  position: absolute;
  top: 50px;
  left: 0;
  opacity: 0;
  width: 320px;
  text-align: center;
  font-size: 0px;
  -webkit-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  -moz-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  -ms-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  -o-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.menu ul li a {
  color: #334559;
  text-decoration: none;
}
div.menu li.animate {
  font-size: 1em;
  opacity: 1;
  -webkit-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  -moz-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  -ms-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  -o-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
  transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.menu li.animate:nth-of-type(1) {
  top: 120px;
  transition-delay: 0.0s;
}
div.menu li.animate:nth-of-type(2) {
  top: 190px;
  transition-delay: 0.03s;
}
div.menu li.animate:nth-of-type(3) {
  top: 260px;
  transition-delay: 0.06s;
}
div.menu li.animate:nth-of-type(4) {
  top: 330px;
  transition-delay: 0.09s;
}
div.menu li.animate:nth-of-type(5) {
  top: 400px;
  transition-delay: 0.12s;
}
div.menu li.animate:nth-of-type(6) {
  top: 470px;
  transition-delay: 0.15s;
}
.header {
  position: absolute;
  top: 2%;
  left: 2%;
}
.vid {
  opacity: .3;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  position: fixed;
}
.background {
  background: url("../img/bg.jpg") no-repeat center top;
  background-size: cover;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  position: fixed;
}
@media (min-aspect-ratio:16/9) {
  .vid {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio:16/9) {
  .vid {
    width: auto;
    height: 100%;
  }
}
@media only screen and (max-width: 1440px) {
  #logo {
    top: 35%;
    width: 40vw
  }
  .center-main {
    top: 35%
  }
  h5 {
    font-size: 1em;
  }
}
@media only screen and (min-width: 2048px) {
  .menu-sub {
    bottom: 30%;
  }
}
@media (max-width: 1024px) {
  #logo {
    top: 35%;
    width: 50vw;
  }
  .center-main {
    top: 35%;
    width: 70vw;
  }
  h5 {
    font-size: 1em;
  }
  .main-menu {
    width: 48vw;
    -webkit-flex-flow: row wrap;
    justify-content: space-between;
  }
  button {
    margin: .5rem 0;
  }
  .menu-sub {
    bottom: 5%
  }
}
@media only screen and (max-width: 768px) {
  #logo {
    top: 30%;
    width: 60%;
  }
  .center-main {
    top: 30%;
  }
  .main-menu {
    display: block;
    top: 80%;
  }
  button {
    margin: 0.5em;
  }
}
@media only screen and (max-height: 480px) {
  #logo {
    left: 54%;
    top: 40%;
  }
  .menu-sub {
    display: none;
  }
  .main-menu {
    width: 60vw;
    margin-bottom: 30px;
    top: 70%;
  }
  .center-main {
    transform: translate(-50%, 20%);
  }
}
@media only screen and (max-width: 480px) {
  #logo {
    left: 54%;
  }
  .menu-sub {
    display: none;
  }
  .main-menu {
    width: 95vw;
    transform: translate(-50%, 15%);
    margin-bottom: 30px;
  }
  .header {
    left: 20px;
    top: 30px
  }
  div.circle.expand {
    width: 100%;
    opacity: 1;
  }
  div.menu {
    right: 50%;
    transform: translateX(50%);
  }
  button {
    height: 3.5rem
  }
  .vid {
    transform: translateX(50%)
  }
}
.list a {
    margin-right: 20px;
    color: #fff;
    text-decoration: none;
    font-family: sans-serif;
	font-size: 14px;}  