.u-color--black {
  color: #000;
}
.u-fill--black {
  fill: #000;
}
.u-stroke--black {
  stroke: #000;
}
.u-bg--black {
  background: #000;
}
.u-color--white {
  color: #fff;
}
.u-fill--white {
  fill: #fff;
}
.u-stroke--white {
  stroke: #fff;
}
.u-bg--white {
  background: #fff;
}
.u-color--grey {
  color: #7f7f7f;
}
.u-fill--grey {
  fill: #7f7f7f;
}
.u-stroke--grey {
  stroke: #7f7f7f;
}
.u-bg--grey {
  background: #7f7f7f;
}
.u-color--red {
  color: #d8353c;
}
.u-fill--red {
  fill: #d8353c;
}
.u-stroke--red {
  stroke: #d8353c;
}
.u-bg--red {
  background: #d8353c;
}
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
html {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga", "kern";
  text-rendering: optimizelegibility;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  color: #fff;
  background: #000;
  overflow: hidden;
}
.c-anim,
.c-anim--slide-y,
.c-anim--slide-left,
.c-anim--slide-x,
.c-anim--fade {
  transition: transform 0.8s cubic-bezier(0.49, 0.01, 0.27, 1), opacity 0.5s cubic-bezier(0.49, 0.01, 0.27, 1);
  -ms-transition: transform 0.8s cubic-bezier(0.49, 0.01, 0.27, 1), opacity 0.5s cubic-bezier(0.49, 0.01, 0.27, 1);
  will-change: transform, opacity;
}
.is-active .c-anim,
.is-active .c-anim--slide-y,
.is-active .c-anim--slide-left,
.is-active .c-anim--slide-x,
.is-active .c-anim--fade,
.no-js .c-anim,
.no-js .c-anim--slide-y,
.no-js .c-anim--slide-left,
.no-js .c-anim--slide-x,
.no-js .c-anim--fade {
  transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
}
.has-played .c-anim,
.has-played .c-anim--slide-y,
.has-played .c-anim--slide-left,
.has-played .c-anim--slide-x,
.has-played .c-anim--fade {
  transition: none !important;
  transform: none !important;
  opacity: 1;
  visibility: visible;
  will-change: unset;
}
.c-anim--slide-y {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateY(10vh) translateZ(0);
  -ms-transform: translateY(100px) translateZ(0);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.is-active .c-anim--slide-y,
.no-js .c-anim--slide-y {
  transform: translateY(0px) translateZ(0);
  -ms-transform: translateY(0px) translateZ(0);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
}
.has-played .c-anim--slide-y {
  transition: none !important;
  transform: none !important;
  opacity: 1;
  visibility: visible;
  will-change: unset;
}
.c-anim--slide-left {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateX(10vh) translateZ(0);
  -ms-transform: translateX(100px) translateZ(0);
}
.is-active .c-anim--slide-left,
.no-js .c-anim--slide-left {
  transform: translateX(0px) translateZ(0);
  -ms-transform: translateX(0px) translateZ(0);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
}
.has-played .c-anim--slide-left {
  transition: none !important;
  transform: none !important;
  opacity: 1;
  visibility: visible;
  will-change: unset;
}
.c-anim--slide-x {
  will-change: opacity, transform;
  opacity: 0;
}
.is-prev .c-anim--slide-x {
  transform: translateX(-10vh) translateZ(0);
  -ms-transform: translateX(-100px) translateZ(0);
}
.is-next .c-anim--slide-x {
  transform: translateX(10vh) translateZ(0);
  -ms-transform: translateX(100px) translateZ(0);
}
.is-active .c-anim--slide-x,
.no-js .c-anim--slide-x {
  transform: translateX(0px) translateZ(0);
  -ms-transform: translateX(0px) translateZ(0);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
}
.has-played .c-anim--slide-x {
  transition: none !important;
  transform: none !important;
  opacity: 1;
  visibility: visible;
  will-change: unset;
}
.c-anim--fade {
  will-change: opacity;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.49, 0.01, 0.27, 1);
  -ms-transition: opacity 1s cubic-bezier(0.49, 0.01, 0.27, 1);
}
.c-anim--fade.is-fast {
  transition-duration: 0.6s;
}
.is-active .c-anim--fade,
.no-js .c-anim--fade {
  transition: opacity 1.8s cubic-bezier(0.49, 0.01, 0.27, 1);
  -ms-transition: opacity 1.8s cubic-bezier(0.49, 0.01, 0.27, 1);
  opacity: 1;
}
.is-active .c-anim--fade.is-fast,
.no-js .c-anim--fade.is-fast {
  transition-duration: 0.8s;
}
.has-played .c-anim--fade {
  transition: none !important;
  transform: none !important;
  opacity: 1;
  visibility: visible;
  will-change: unset;
}
.c-anim--0,
.is-active .c-anim--0,
.no-js .c-anim--0 {
  transition-delay: 0s !important;
  -ms-transition-delay: 0s !important;
}
.is-next .c-anim--0,
.is-prev .c-anim--0 {
  transition-delay: 0s !important;
  -ms-transition-delay: 0s !important;
}
.is-active .c-anim--slow.c-anim--0,
.no-js .c-anim--slow.c-anim--0 {
  transition-delay: 0s !important;
  -ms-transition-delay: 0s !important;
}
.c-anim--1,
.is-active .c-anim--1,
.no-js .c-anim--1 {
  transition-delay: 0.075s !important;
  -ms-transition-delay: 0.075s !important;
}
.is-next .c-anim--1,
.is-prev .c-anim--1 {
  transition-delay: 0.075s !important;
  -ms-transition-delay: 0.075s !important;
}
.is-active .c-anim--slow.c-anim--1,
.no-js .c-anim--slow.c-anim--1 {
  transition-delay: 0.1s !important;
  -ms-transition-delay: 0.1s !important;
}
.c-anim--2,
.is-active .c-anim--2,
.no-js .c-anim--2 {
  transition-delay: 0.15s !important;
  -ms-transition-delay: 0.15s !important;
}
.is-next .c-anim--2,
.is-prev .c-anim--2 {
  transition-delay: 0.15s !important;
  -ms-transition-delay: 0.15s !important;
}
.is-active .c-anim--slow.c-anim--2,
.no-js .c-anim--slow.c-anim--2 {
  transition-delay: 0.2s !important;
  -ms-transition-delay: 0.2s !important;
}
.c-anim--3,
.is-active .c-anim--3,
.no-js .c-anim--3 {
  transition-delay: 0.225s !important;
  -ms-transition-delay: 0.225s !important;
}
.is-next .c-anim--3,
.is-prev .c-anim--3 {
  transition-delay: 0.225s !important;
  -ms-transition-delay: 0.225s !important;
}
.is-active .c-anim--slow.c-anim--3,
.no-js .c-anim--slow.c-anim--3 {
  transition-delay: 0.3s !important;
  -ms-transition-delay: 0.3s !important;
}
.c-anim--4,
.is-active .c-anim--4,
.no-js .c-anim--4 {
  transition-delay: 0.3s !important;
  -ms-transition-delay: 0.3s !important;
}
.is-next .c-anim--4,
.is-prev .c-anim--4 {
  transition-delay: 0.3s !important;
  -ms-transition-delay: 0.3s !important;
}
.is-active .c-anim--slow.c-anim--4,
.no-js .c-anim--slow.c-anim--4 {
  transition-delay: 0.4s !important;
  -ms-transition-delay: 0.4s !important;
}
.c-anim--5,
.is-active .c-anim--5,
.no-js .c-anim--5 {
  transition-delay: 0.375s !important;
  -ms-transition-delay: 0.375s !important;
}
.is-next .c-anim--5,
.is-prev .c-anim--5 {
  transition-delay: 0.375s !important;
  -ms-transition-delay: 0.375s !important;
}
.is-active .c-anim--slow.c-anim--5,
.no-js .c-anim--slow.c-anim--5 {
  transition-delay: 0.5s !important;
  -ms-transition-delay: 0.5s !important;
}
.c-anim--6,
.is-active .c-anim--6,
.no-js .c-anim--6 {
  transition-delay: 0.45s !important;
  -ms-transition-delay: 0.45s !important;
}
.is-next .c-anim--6,
.is-prev .c-anim--6 {
  transition-delay: 0.45s !important;
  -ms-transition-delay: 0.45s !important;
}
.is-active .c-anim--slow.c-anim--6,
.no-js .c-anim--slow.c-anim--6 {
  transition-delay: 0.6s !important;
  -ms-transition-delay: 0.6s !important;
}
.c-anim--7,
.is-active .c-anim--7,
.no-js .c-anim--7 {
  transition-delay: 0.525s !important;
  -ms-transition-delay: 0.525s !important;
}
.is-next .c-anim--7,
.is-prev .c-anim--7 {
  transition-delay: 0.525s !important;
  -ms-transition-delay: 0.525s !important;
}
.is-active .c-anim--slow.c-anim--7,
.no-js .c-anim--slow.c-anim--7 {
  transition-delay: 0.7s !important;
  -ms-transition-delay: 0.7s !important;
}
.c-anim--8,
.is-active .c-anim--8,
.no-js .c-anim--8 {
  transition-delay: 0.6s !important;
  -ms-transition-delay: 0.6s !important;
}
.is-next .c-anim--8,
.is-prev .c-anim--8 {
  transition-delay: 0.6s !important;
  -ms-transition-delay: 0.6s !important;
}
.is-active .c-anim--slow.c-anim--8,
.no-js .c-anim--slow.c-anim--8 {
  transition-delay: 0.8s !important;
  -ms-transition-delay: 0.8s !important;
}
.c-anim--9,
.is-active .c-anim--9,
.no-js .c-anim--9 {
  transition-delay: 0.675s !important;
  -ms-transition-delay: 0.675s !important;
}
.is-next .c-anim--9,
.is-prev .c-anim--9 {
  transition-delay: 0.675s !important;
  -ms-transition-delay: 0.675s !important;
}
.is-active .c-anim--slow.c-anim--9,
.no-js .c-anim--slow.c-anim--9 {
  transition-delay: 0.9s !important;
  -ms-transition-delay: 0.9s !important;
}
.c-anim--10,
.is-active .c-anim--10,
.no-js .c-anim--10 {
  transition-delay: 0.75s !important;
  -ms-transition-delay: 0.75s !important;
}
.is-next .c-anim--10,
.is-prev .c-anim--10 {
  transition-delay: 0.75s !important;
  -ms-transition-delay: 0.75s !important;
}
.is-active .c-anim--slow.c-anim--10,
.no-js .c-anim--slow.c-anim--10 {
  transition-delay: 1s !important;
  -ms-transition-delay: 1s !important;
}
.c-anim--11,
.is-active .c-anim--11,
.no-js .c-anim--11 {
  transition-delay: 0.825s !important;
  -ms-transition-delay: 0.825s !important;
}
.is-next .c-anim--11,
.is-prev .c-anim--11 {
  transition-delay: 0.825s !important;
  -ms-transition-delay: 0.825s !important;
}
.is-active .c-anim--slow.c-anim--11,
.no-js .c-anim--slow.c-anim--11 {
  transition-delay: 1.1s !important;
  -ms-transition-delay: 1.1s !important;
}
.c-anim--12,
.is-active .c-anim--12,
.no-js .c-anim--12 {
  transition-delay: 0.9s !important;
  -ms-transition-delay: 0.9s !important;
}
.is-next .c-anim--12,
.is-prev .c-anim--12 {
  transition-delay: 0.9s !important;
  -ms-transition-delay: 0.9s !important;
}
.is-active .c-anim--slow.c-anim--12,
.no-js .c-anim--slow.c-anim--12 {
  transition-delay: 1.2s !important;
  -ms-transition-delay: 1.2s !important;
}
.c-anim--13,
.is-active .c-anim--13,
.no-js .c-anim--13 {
  transition-delay: 0.975s !important;
  -ms-transition-delay: 0.975s !important;
}
.is-next .c-anim--13,
.is-prev .c-anim--13 {
  transition-delay: 0.975s !important;
  -ms-transition-delay: 0.975s !important;
}
.is-active .c-anim--slow.c-anim--13,
.no-js .c-anim--slow.c-anim--13 {
  transition-delay: 1.3s !important;
  -ms-transition-delay: 1.3s !important;
}
.c-anim--14,
.is-active .c-anim--14,
.no-js .c-anim--14 {
  transition-delay: 1.05s !important;
  -ms-transition-delay: 1.05s !important;
}
.is-next .c-anim--14,
.is-prev .c-anim--14 {
  transition-delay: 1.05s !important;
  -ms-transition-delay: 1.05s !important;
}
.is-active .c-anim--slow.c-anim--14,
.no-js .c-anim--slow.c-anim--14 {
  transition-delay: 1.4s !important;
  -ms-transition-delay: 1.4s !important;
}
.c-anim--15,
.is-active .c-anim--15,
.no-js .c-anim--15 {
  transition-delay: 1.125s !important;
  -ms-transition-delay: 1.125s !important;
}
.is-next .c-anim--15,
.is-prev .c-anim--15 {
  transition-delay: 1.125s !important;
  -ms-transition-delay: 1.125s !important;
}
.is-active .c-anim--slow.c-anim--15,
.no-js .c-anim--slow.c-anim--15 {
  transition-delay: 1.5s !important;
  -ms-transition-delay: 1.5s !important;
}
.c-anim--16,
.is-active .c-anim--16,
.no-js .c-anim--16 {
  transition-delay: 1.2s !important;
  -ms-transition-delay: 1.2s !important;
}
.is-next .c-anim--16,
.is-prev .c-anim--16 {
  transition-delay: 1.2s !important;
  -ms-transition-delay: 1.2s !important;
}
.is-active .c-anim--slow.c-anim--16,
.no-js .c-anim--slow.c-anim--16 {
  transition-delay: 1.6s !important;
  -ms-transition-delay: 1.6s !important;
}
.c-anim--17,
.is-active .c-anim--17,
.no-js .c-anim--17 {
  transition-delay: 1.275s !important;
  -ms-transition-delay: 1.275s !important;
}
.is-next .c-anim--17,
.is-prev .c-anim--17 {
  transition-delay: 1.275s !important;
  -ms-transition-delay: 1.275s !important;
}
.is-active .c-anim--slow.c-anim--17,
.no-js .c-anim--slow.c-anim--17 {
  transition-delay: 1.7s !important;
  -ms-transition-delay: 1.7s !important;
}
.c-anim--18,
.is-active .c-anim--18,
.no-js .c-anim--18 {
  transition-delay: 1.35s !important;
  -ms-transition-delay: 1.35s !important;
}
.is-next .c-anim--18,
.is-prev .c-anim--18 {
  transition-delay: 1.35s !important;
  -ms-transition-delay: 1.35s !important;
}
.is-active .c-anim--slow.c-anim--18,
.no-js .c-anim--slow.c-anim--18 {
  transition-delay: 1.8s !important;
  -ms-transition-delay: 1.8s !important;
}
.c-anim--19,
.is-active .c-anim--19,
.no-js .c-anim--19 {
  transition-delay: 1.425s !important;
  -ms-transition-delay: 1.425s !important;
}
.is-next .c-anim--19,
.is-prev .c-anim--19 {
  transition-delay: 1.425s !important;
  -ms-transition-delay: 1.425s !important;
}
.is-active .c-anim--slow.c-anim--19,
.no-js .c-anim--slow.c-anim--19 {
  transition-delay: 1.9s !important;
  -ms-transition-delay: 1.9s !important;
}
.c-anim--20,
.is-active .c-anim--20,
.no-js .c-anim--20 {
  transition-delay: 1.5s !important;
  -ms-transition-delay: 1.5s !important;
}
.is-next .c-anim--20,
.is-prev .c-anim--20 {
  transition-delay: 1.5s !important;
  -ms-transition-delay: 1.5s !important;
}
.is-active .c-anim--slow.c-anim--20,
.no-js .c-anim--slow.c-anim--20 {
  transition-delay: 2s !important;
  -ms-transition-delay: 2s !important;
}
.c-overlay {
  transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s 1s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.c-overlay.is-fast {
  transition-duration: 0.6s;
}
.c-overlay.is-active,
.c-overlay.is-ready {
  pointer-events: auto;
  transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s;
  visibility: visible;
  opacity: 1;
}
.c-overlay.is-active.is-fast,
.c-overlay.is-ready.is-fast {
  transition-duration: 0.6s;
}
.c-main-overlay__bg {
  overflow: hidden;
}
.c-main-overlay__bg.is-bottom {
  transform: translateY(100%) translateZ(0);
}
.c-main-overlay__bg.is-bottom .c-main-overlay__inner {
  transform: translateY(-90%) translateZ(0);
}
.c-main-overlay__bg.is-top {
  transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(-105%) translateZ(0);
}
.c-main-overlay__bg.is-top .c-main-overlay__inner {
  transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(90%) translateZ(0);
}
.c-main-overlay__bg.is-active {
  transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(0%) translateZ(0);
}
.c-main-overlay__bg.is-active .c-main-overlay__inner {
  transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(0%) translateZ(0);
}
.dg.ac {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: 1 !important;
}
.play-btn {
  border: none;
  padding: 0;
  -webkit-appearance: none;
  background: transparent;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  opacity: 1 !important;
  text-transform: uppercase;
  outline: none;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  font-weight: bold;
  cursor: pointer;
}
.play-btn:after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: #000;
  transform: scaleX(0);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.play-btn:hover:after,
.play-btn:focus:after {
  transform: scaleX(1);
}
.infos {
  font-size: 14px;
  z-index: 2;
  line-height: 1.4;
  color: #000;
  font-weight: 300;
  margin: 30px 0;
}
.is-dark .btn,
.is-dark .infos {
  color: #fff;
}
.is-dark .btn {
  border-color: #fff;
}
.c-360__switch-btn {
  -webkit-appearance: none;
  background: transparent;
  border: none;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  color: #fff;
  bottom: 7vh;
}
.c-360__switch {
  width: 40px;
  height: 40px;
  font-size: 0;
  overflow: hidden;
  border-radius: 100%;
  position: relative;
  vertical-align: middle;
  display: inline-block;
}
.c-360__switch .c-360__block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-360__switch .c-360__day {
  z-index: 4;
  stroke: #000;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateX(-100%) rotate(-110deg) translateZ(0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-360__switch .c-360__night__1 {
  z-index: 4;
  transition: transform 0.8s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateX(0%) translateZ(0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.c-360__switch .c-360__night__2 {
  z-index: 4;
  transition: transform 0.8s 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateZ(0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.c-360__switch .c-360__circle__out,
.c-360__switch .c-360__circle__bg {
  z-index: 5;
  transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-360__switch .c-360__circle__out circle,
.c-360__switch .c-360__circle__bg circle {
  fill: none;
  stroke: rgba(0,0,0,0.5);
  stroke-width: 1;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.is-dark .c-360__switch .c-360__circle__out circle,
.is-dark .c-360__switch .c-360__circle__bg circle {
  stroke: #fff;
}
.c-360__switch-btn.is-day .c-360__switch .c-360__day {
  transition: transform 0.8s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateX(0%) translateZ(0);
}
.c-360__switch-btn.is-day .c-360__switch .c-360__night__1 {
  transition: transform 0.8s 0.03s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateX(100%) scale(1.1) translateZ(0);
}
.c-360__switch-btn.is-day .c-360__switch .c-360__night__2 {
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateX(100%) translateZ(0);
}
/**
 * INTRO
 */
.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: #ebf2f8;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s 0.3s;
}
.intro.is-active {
  opacity: 1;
  pointer-events: auto;
}
.intro:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}
.intro__block {
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  transition: opacity 1s;
}
.intro__block.is-active {
  opacity: 1;
}
.intro__block h3 {
  margin: 0;
  font-size: 12px;
  color: #000;
  letter-spacing: 0.1em;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-weight: normal;
}
.intro__block ul,
.intro__block li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.intro__block li {
  margin: 0 10px;
}
.intro__block button {
  font-size: 12px;
  color: #000;
  opacity: 0.6;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
}
.intro__block button.is-selected {
  opacity: 1;
  font-weight: bold;
}
.social-link {
  display: inline-block;
  vertical-align: middle;
  opacity: 0.4;
  text-decoration: none;
  width: 12px;
  height: 15px;
  margin-left: 10px;
}
.social-link svg {
  fill: #000;
  width: 100%;
  height: 100%;
}
.is-dark .social-link svg {
  fill: #fff;
}
.social-link:hover {
  opacity: 1;
}
.sound-btn {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  fill: #000;
  border: solid 1px rgba(0,0,0,0.2);
  border-radius: 100px;
  -webkit-appearance: none;
  background: transparent;
  padding: 0;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.sound-btn:hover {
  opacity: 1;
}
.sound-btn svg {
  display: block;
  width: 100%;
  height: 100%;
}
.sound-btn span {
  height: 4px;
  width: 4px;
  display: inline-block;
  background: #000;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.sound-btn.is-active span {
  opacity: 1;
}
.is-dark .sound-btn {
  border: solid 1px rgba(255,255,255,0.4);
}
.is-dark .sound-btn span {
  background: #fff !important;
}
.nav--br {
  position: absolute;
  bottom: 7vh;
  right: 5vw;
  z-index: 10000;
}
