@charset "UTF-8";
/* CSS Document */
@font-face {
	font-family: Futura;
	font-weight: normal;
	src: url(fonts/futura-medium.woff2);
}
:root{
    --c-light: #fff;
    --c-dark: #000;
    --c-red: #f00;
	--c-green: #24331a;
	--c-beige: #b3aea4;
	--c-pink: #d9c7bf;
	--c-grey: #d9d9d9;
}
html {
	font-family:  Futura, Noto Sans TC, Noto Sans SC, Microsoft JhengHei, Microsoft YaHei, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	
    min-height: 100%;
    min-height: fill-available;
    min-height: -webkit-fill-available;
}
body{
	margin: 0;
	
    min-height: 100%;
    min-height: fill-available;
    min-height: -webkit-fill-available;
}
body::-webkit-scrollbar{
    display: none;
}
a {
    text-decoration: none;
    color:var(--c-dark);
}

.cta {
	text-align: center;
}
.cta a.btn { 
color:#000;
    cursor: pointer;
    transition-duration: 0.2s;
    display: inline-block;
    border: 1px solid #000;
    padding: 0.8em 1.2em;
    border-radius: 2em;
	text-transform: uppercase;
}

.cta a.btn:hover  {
transform:scale(1.1);
	background-color:#000;
	color:#fff;
}
p {
	line-height: 2;
}
* {
    box-sizing: border-box;
}
.debug {
    position: fixed;
    bottom:1em;
    left:50%;
    transform:translateX(-50%);
    background-color:rgba(0,0,0,0.8);
    padding:0.5em;
    font-size:12px;
    color:#fff;
    border-radius:0.25em;
    z-index: 99;
    display: none;
}

  
.dark-overlay {
	position: fixed;
	z-index: 99;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	display: none;
	background-color: rgba(179,174,164,0.8);
}
.popup-container {
	position: fixed;
	z-index: 100;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	display: none;
	
    overflow: hidden;
}
.popup-container .close {
	
    display: block;
    width: 3em;
    height: 3em;
    background-image: url(images/nav_close.png);
    background-repeat: no-repeat;
    background-size: 1.5em;
    background-position: center;
    cursor: pointer;
	float: right;
	margin:-0.5em -0.5em 1em 0;
}
.popup{
	 background:var(--c-light);
	clear:both;
	overflow-y:auto;
	
	transition-duration: 0.4s;
	transition-timing-function: ease-out;
    width: 90vw;
	max-width:80em;
} 
.popup.txt{
	padding:1em;
    height:100%;
    max-width: 64em;
    max-height: 80vh;
}
@media screen and (min-width:48em) {
	
.popup.txt{
	padding:2em; 
	}
 
}
.popup video {
    width:100%;
    display: block;
}
  section {
    
      margin:0 0 0 0;
      position: relative;
      
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
.content-container{

    width: 100%;
}
  section.footer {
      margin: 0;
}

header {
/*    background-color:var(--c-grey);*/
    position: fixed;
    top:0;
    left:0;
    right:0;
    z-index: 9;
    
}

header hgroup h1 {
    
    margin: 0;
    font-size:100%; 
}
header hgroup h1 a {
    display: block;
    text-indent: -99999em;
    height: 5em;
    width: 20em;
    background-image: url(images/logo_ue_bi_w.png);
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: center;
}

.nav-active header hgroup h1 a {
    background-image: url(images/logo_ue_bi_b.png);
}
nav ul {
    margin: 0;
    padding: 0;
}
nav li {
    list-style: none;
}
nav li a {
    text-transform:uppercase;
	cursor: pointer;
}
@media screen and (max-width:1279px) {
    header .content-wrap {
        padding: 0;
    }
    header .mobile-wrap {
    display: flex;
    justify-content: space-between;
    align-items:center;
    padding: 0 ;
/*       background-color:var(--c-grey);*/
        position: relative;
        z-index: 2;
}
  .nav-active header   .mobile-wrap{
      background-color:var(--c-grey);
}
    .nav-toggle {
background-image: url(images/nav-toggle_icon_w.png);
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: center;
    width: 5em;
    height: 5em;
        transition-duration: 0.1s;
        transition-timing-function: ease-out;
        cursor: pointer;
    }
    
    .nav-toggle.active {
        
background-image: url(images/close_icon.png);
    }
    .nav-toggle:hover {
          transform:scale(1.2);
    }
    
      nav { 
        position: absolute;
        top:0;
        left:0;
          width:100%;
        z-index: 1; 
         background-color:var(--c-grey);
        transition-duration: 0.4s;
        transition-timing-function: ease-out;
          transform:translateY(-150%);
          padding-top:5em;
 padding-bottom:4em;
          max-height:100vh;
          overflow-y:auto;
    }
        nav.active { 
           
          transform:translateY(0%);
    }
    nav .main {
    }
    nav .main li a {
        padding:0.5em 1em;
        font-size:150%;
        display: block;
        transition-duration: 0.2s;
        transition-timing-function: ease-out;
        cursor: pointer;
    }
    
nav li[data-menuanchor="wsh"] a {
    display: block;
    height: 3em;
    background-image: url(images/logo_wsh_short_b.png);
    background-repeat: no-repeat;
    background-size: auto 40%;
    background-position: 1em;
    text-align: left;
    text-indent: -99999em;
    padding: 0;
	
}
    
    nav .main li a:hover {
        background-color:#eee;
        padding-left:1.5em;
    }
    
        
nav li[data-menuanchor="wsh"] a:hover {
    
    background-position: 1.5em;
    }
    nav .main li li a {
        font-size:100%;
        position: relative;
        padding:0.5em 3em;
    }
    
    nav .main ul {
        margin: 0.5em 0;
    }
    nav .main li li a::before {
        position: absolute;
        content:'';
        top:0;
        bottom:0;
        left:1.5em;
        width:1px;
        background-color:var(--c-dark);
        opacity: 0.5;
    }
    nav .main li li a:hover {
                padding-left:3.5em;
    }
    
    nav .main li li:hover a::before {
        
        transition-duration: 0.4s;
        transition-timing-function: ease-out;
        width:0.4em;
    }


    nav .main li a.inactive {
        opacity: 0.3;
        cursor: default;
    }
    nav .main li a:hover {
    }
    nav .main li a:hover {
    }
    nav .lang {
        display: flex;
        padding:1em 0.5em;
/*
        position: absolute;
        bottom:1em;
        left:0.5em;
*/
    }
    
    nav .lang a {
        display: block;
        text-align: center;
        width:3em;
        line-height: 3em;
        border-radius:100%;
    }
    
    nav .lang a:hover {
        background-color:#eee; 
        transition-duration: 0.4s;
        transition-timing-function: ease-out;
    }
    
header nav .music {
    position: absolute;
    bottom: 5em;
    right: 1em;
}
 header nav .music li a {
        display: block;
        text-align: center;
        width:3em;
        height: 3em;
        border-radius:100%;
    position: relative;
    cursor: pointer;
    }
    
header nav .music li a:hover {
        background-color:#eee; 
        transition-duration: 0.4s;
        transition-timing-function: ease-out;
    }

header nav .music li a span {
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

}



header nav .music li a span {
    width: 23px;
    height:23px;
    display:flex;
    align-items:end;
    justify-content: space-between;
}

header nav .music li a i {
    width:3px;
    height:100%;
    display: block;
    background-color:var(--c-dark);
    transition-duration: 0.2s;
}


@media screen and (min-width:80em) {
	
header nav .music li a i {
    background-color:#fff;
}

}
 
header nav .music li a:hover i,
header nav .music li a.playing i {
    animation-name: music;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes music {
       0% {
            height:20%;}

       50% {
            height:100%;
        }
       100% {
            height:20%;
        }
    }
header nav .music li a i:nth-child(1) {
    animation-delay:0.5s;
        height:10%;

}
header nav .music li a i:nth-child(2) {
    animation-delay:0s;
    height:50%;
}
header nav .music li a i:nth-child(3) {
    animation-delay:0.4s;
        height:20%;

}
header nav .music li a i:nth-child(4) {
    animation-delay:0.2s;
        height:30%;

}
header nav .music li a i:nth-child(5) {
    animation-delay:0.1s;
    height:40%;
}
@media screen and (min-width:80em) {
    .nav-toggle {display: none;}
header .content-wrap {
    display: flex;
    justify-content: space-between;
    align-items:center;

    padding: 0 0.5em;
}
    header nav {
         display: flex;
        align-items:center;
        position: relative;
    }
   header  nav>ul {
        display: flex;
        align-items:center;
        position: relative;
    }
    
 header  nav>ul>li>ul {
        display: none;
    }
    header  nav ul li {
        position: relative;
    }
    header  nav .main ul {
        background-color:var(--c-grey);
        position: absolute;
        top:2.8em;
        padding:0.5em 0;
        left:50%;
        z-index: 2;
        transform:translateX(-50%);
        
    }
header  nav ul li a {
        font-size:100%;
    cursor: pointer;
    padding: 1em 1em;
    white-space: nowrap;
    z-index: 2;
    position: relative;
    display: block;
    }
	
	
header  nav>ul>li>a {
	color:#fff;
	}
    header  nav .lang {
        padding: 0 0.5em;
    }
    


header  nav>ul>li>a.inactive {
        opacity: 0.4;
        cursor: default;
    }
nav li[data-menuanchor="wsh"] a  {
	display: block;
	width:calc(4.5em + 2em);
	height:1.5em;
    background-image: url(images/logo_wsh_short_w.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
	text-align: left;
	text-indent:-99999em;
	padding:0;
	
}
header  nav>ul>li.active>a::before,
header  nav>ul>li:hover>a::before    {
    position: absolute;
    content:'';
    bottom:0;
    left:50%;
    width:0.4em;
    height:0.4em;
    border-radius: 100%;
    background:#f00;
    margin-left:-0.1em;
}
    
header  nav>ul>li.active>a.inactive::before,
header  nav>ul>li:hover>a.inactive::before    {
    opacity: 0;
    cursor: default;
}
     
	header nav>ul>li[data-menuanchor="wsh"]:hover>a::before,
	header nav>ul>li[data-menuanchor="wsh"].active>a::before {
		bottom:-1em;

	}
    header  nav ul li:hover  ul {
        display: block;
    }
    
    header  nav ul ul li {
        margin:-0.5em 0;
    }
    header  nav ul ul li a {
        display: block;
        padding:1em 1.5em 1em 1em ;
        transition-duration: 0.2s;
        transition-timing-function: ease-out;
    }
    
    
    nav .main  ul li a:hover {
        background-color:#eee;
        padding-left:1.5em;
        padding-right:1em;
    }


    header  nav ul ul li a.inactive {
        opacity: 0.3;
        cursor: default;
    }
    header  nav ul ul li a.inactive:hover {
        padding-left:1em;
        padding-right:1.5em;
    }

/*
    
header  nav .lang li:nth-child(n+2) a::before {
        content:'';
position: absolute;
    left:0;
    top:50%;
    width:1px  ;
    height:1em;
    background: #ccc;
    display: block;
    margin-top:-0.5em;
    }
*/
    header  nav .lang li a {
        padding: 1em 0.5em;
    }
}  
/*
@media screen and (min-width:90em) {
    nav {
        font-size:150%;
    }
}*/



section h2 {
	font-size:250%;
    letter-spacing: 0.2em;
}

section h3 {
	margin:0 ;
    font-size: 150%;
    line-height: 1.5;
}
section h3 span{
    display:inline-block;
    padding:0 0.5em;
}

section p {
	margin: auto;
	margin-top:2em;
}
section.wsh p {
	max-width:91em;
    margin-top:3em;
}

@media screen and (min-width:48em) {
section h2{
	font-size:450%;
    margin:0 auto;

}
	
section h3 {
	margin:0;
	font-size:200%;
}
}
@media screen and (min-width:64em) {
section h2{
	font-size:600%;
}
	
section h3 { 
	font-size:250%;
}
}

.landing hgroup{
    width:100%;
    max-width:70em;
    margin: auto;
}
.landing h2 {
    font-size:100%!important;
    text-align: left;
    text-indent:-99999em;
    width:100%;
    padding-bottom:20%;
    background-image:url(images/logo_ue_full_w.png);
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
}
section .content-wrap {
    text-align: center;
	width:100%;
 height:100%;
	position: relative;
  vertical-align: middle;
    overflow-x: hidden;
    width: 100%;
}

.content-wrap .txt-wrap{
   
    padding: 0 1em 5em 1em;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; 
}

.content-wrap .disclaimer-hint {
    position: absolute;
    bottom: 1em;
    left: 0;
    right: 0;
    font-size: 0.75em;
    display: none;
}

@media screen and (min-width:48em) {
    .content-wrap .txt-wrap{
   
        padding: 0 2em 5em 2em; 
    }
    
}
.fp-scroll-mac .fp-overflow::-webkit-scrollbar {
	width:0;
}
.footer .content-container,
.wsh .content-container,
.landing .content-container {
display:table;
}

.footer .content-wrap,
.wsh .content-wrap,
.landing .content-wrap {
display:table-cell;
}
.footer .content-wrap .txt-wrap,
.wsh .content-wrap .txt-wrap,
.landing .content-wrap .txt-wrap{
   
    padding:  6em 2em 6em 2em;
    width: 100%; 
    position: relative;
    bottom: auto;
    left: auto;
}

section .media-wrap {
	
    text-align: center;
	width:100%;

    display: flex;
    align-items: center;
	position: relative;
	
    min-height: 100%;
    min-height: fill-available;
    min-height: -webkit-fill-available;
	
	background:#b3b995;
    
    overflow-x: hidden;
    width: 100%;
}

section .media-wrap video {
	margin: 0em auto 0 auto;
	width:100%;
}

section .media-wrap figure{
	margin: 0em auto 0 auto;
	width:100%;
	height: 100%;
}
section .media-wrap figure img{
display: block;
	width:100%;
}

main {
    position: relative;
    z-index: 2;
    color:var(--c-light);
}

.bg-media {
    position: fixed;
    z-index: 1;
    top:0;
    left:0;
    width:100vw;
    height: 100%;
    height: fill-available;
    height: -webkit-fill-available;
    background: #000;
}

.bg-media video {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 133%; 
    opacity: 0;
    transform: translate(-50%,-50%);
    transition-duration: 1s;
    transition-timing-function: ease-out;
}
.bg-media .img  {
    position: absolute;
    top: 50%;
    left: 50%;
    width:100%;
    height: 100%; 
    opacity: 0;
    transform: translate(-50%,-50%);
    transition-duration: 1s;
    transition-timing-function: ease-out;
    margin: 0;
}


.bg-media .img img {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%; 
    object-fit: cover;
}
.bg-media .media.active {
   
    opacity: 0.9;
}
 
.bg-media.video-landscape  video {
    height:auto;
    width:100%;
}

 


section.wsh hgroup{
    width:100%;
    max-width:42em;
    margin: auto;
}
section.wsh h2 {
    font-size:100%!important;
    text-align: left;
    text-indent:-99999em;
    width:100%;
    padding-bottom:8%;
    background-image:url(images/logo_wsh_full_w.png);
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
}


.footer { 
    background-color:var(--c-beige);
    color:var(--c-dark);
    height:auto;
}



.footer span{
    display: block;
}
.footer .txt-wrap > div {
    margin:3em 0;  text-align: left;
}
.footer .txt-wrap div.seller-partner {
	 
	display:flex;
	align-items:end;
	gap:1em;
	
    margin-top: 0;
}
.footer .txt-wrap div.seller-partner>div {
	flex:1;
}

@media screen and (min-width:48em) {
	
.footer .txt-wrap div.seller-partner {
	gap:2em;
}
}
@media screen and (min-width:64em) {
    


    
   
    .footer .txt-wrap .seller-partner {
     width:calc(50% - 1em);
        float:left;
      
    }
     
    .footer .txt-wrap .prop-info {
        width:calc(50% - 1em);
        float:left;
		margin-left:2em;
		margin-top:0;
    }
	.footer .disclaimer {
		clear:both;
	}
    
}


@media screen and (min-width:90em) {
    .footer .content-wrap {
        padding:1em 2em;
    }
        .footer .txt-wrap {
        display: flex;
        align-items:start;
    justify-content: space-between;
 
}
        .footer .txt-wrap .seller-partner {
     width:35%;
        float:none;
    }
    
    .footer .txt-wrap .prop-info {
        width:20%;
        float:none;
    }
    
    .footer .txt-wrap .disclaimer {
        width:40%;
		margin-top:0;
    }
    
}
.footer .txt-wrap   .title {
    font-weight: 700;    margin-bottom: 2em;
}
.footer span.wsh{
 
    font-size: 100%!important;
    text-align: left;
    text-indent: -99999em;
    width: 100%;
    padding-bottom: 2em;
    background-image: url(images/logo_wsh_full_c.png);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;

}

.footer span.nwd{
 
    font-size: 100%!important;
    text-align: left;
    text-indent: -99999em;
    width: 100%;
    padding-bottom: 2em;
    background-image: url(images/logo_nwd_full.png);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;

}


.footer p {
    line-height:1.25;
    max-width:100%;
	
    margin: 0;
}
.footer .txt-wrap .disclaimer p {
    font-size:0.7em;
    margin: 0;
}

a[rel="nofollow noopener"] {
    display: none;
}
section .cta {
	margin-top:2em;
} 

section .cta a.know-more {
	filter:invert(1);
}
section .cta a.know-more span {
	
    display: inline-block;
    vertical-align: middle;
}


section .cta a.know-more .icon {
	width:1em;
	height:1em;
    
    background-image: url(images/read-more_arrow.png);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
	margin-left:0.25em;
}



section .cta a.know-more:hover  .icon { 
    background-image: url(images/read-more_arrow_w.png);
}
.popup.vr-disclaimer {
    
    max-height: calc(80vh - 5em);
    margin-bottom:5em;
}
.popup.vr-disclaimer .cta{
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -0.5em 1em var(--c-beige);
    padding:1em;
    background:#fff;
}

.popup.vr iframe {
	border:0;
	display: block;
    width: 100%;
    height: 80vh;
}
.fancybox-show-caption .fancybox-caption {
	padding:1em;
	text-align: center;
/*	background-color:rgba(0,0,0,0.8);*/
}

.fancybox-show-caption .fancybox-caption .media-disclaimer {
	font-size:0.2em;
	line-height: 1;
	margin-top:1em;
}
.media-disclaimer .media-disclaimer-wrap {
    position: absolute;
    bottom:0;
    left:-100%;
    width:200%;
    z-index: 99993;
    display: flex;
    align-items:end;
    transition-duration: 0.4s;
    transition-timing-function: ease-out;
height:0;  
}
 
.media-disclaimer.active  .media-disclaimer-wrap {
    
    left:0;
}

section .content-wrap .media-disclaimer {
    display: none;
    }
section.active.fp-completely .content-wrap .media-disclaimer {
    display:block;
}
.media-disclaimer .cta {
    width:50%;
    text-align: left;
}
.media-disclaimer .cta .btn {
    border: none;
    background-color:rgba(255,255,255,0.6);

    padding: 0.6em 0.8em;
    border-radius: 0 0.8em 0 0;
    white-space: nowrap; 
    z-index: 2;
    z-index: 2;
    font-size: 0.75em;
}

.media-disclaimer .cta .btn span {
    display: inline-block;
    vertical-align: middle;
}
.media-disclaimer .cta .btn .icon,
.media-disclaimer .content .icon {
	width:1em;
	height:1em;
    
    background-image: url(images/read-more_arrow.png);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
	margin-left:0.25em;
    display: inline-block;
}

.media-disclaimer .content .icon {
    width: 2em;
    height: auto;
    min-height:2em;
    margin: 0px;
    background-size: 60%;
    background-position: center;
    cursor: pointer;
}
@media screen and (min-width:48em) {
.media-disclaimer .content .icon {
 
}
}
.media-disclaimer .cta .btn:hover {
    transform: none;
	
    background-color:rgba(0,0,0,0.6);

}
.media-disclaimer .cta .btn:hover  .icon  { 
    background-image: url(images/read-more_arrow_w.png);
}

.media-disclaimer .content { 
    display:flex;
    align-items:stretch; 
    background-color:rgba(255,255,255,0.6);
    color: #000;
    padding: 0.5em;
    width: 50%; 
    transform-origin: bottom left;

}
.media-disclaimer .content.active {
    
}

.media-disclaimer .content .text {

    word-break: break-word;
    font-size: 0.5em;
    width: 100%;
    text-align: left;

    max-height: 80vh;
    overflow-y: auto;

}

.media-disclaimer .content .icon {
     
    transform: rotate(180deg);
    
}