body{
	--cut: 20px;
	--cut2: 3vw;
}
main{
	width: 100vw;
	height: auto;
	background: url(../img/bg.jpg) no-repeat top center;
	background-size: cover;
	background-attachment: fixed;
}
/*Section1*/
#section1{
	width: 100%;
	height: 100vh;
	position: relative;
	padding: 50px 0;
}
h1{
	font-family: var(--spFont);
	font-size: 6vw;
	line-height: 1em;
	margin-bottom: 20px;
	font-weight: 700;
	color: var(--White);
	text-transform: uppercase;
}
h1 .light{
	
	font-weight: 200;
}
h2{
	font-size: 3vw;
	font-family: var(--spFont);
	line-height: 1em;
	margin-bottom: 20px;
	font-weight: 700;
}
.threeD{
    width: 100%;
    height: 100%;
    position: relative;
}
.threeD img{
    display: block;
    width: 120%;
    opacity: 0;
    position: fixed;
    top: -10%;
    left: 5%;
    z-index: 5;
}
.threeD img:first-child{
    opacity: 1;
}
.last3D.is-inview{
    opacity: 1 !important;
}
.marquee2{
    width: 100%;
    overflow: hidden;
    height: 150px;
    position: absolute;
    left: 0;
    top: 40%;
    z-index: 6;
    font-size: 11vw;
    font-family: var(--spFont);
    font-weight: 200;
    color: var(--White);
    white-space: nowrap;
    mix-blend-mode: difference;
}
.marquee3{
    width: 100%;
    height: 40px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 60%;
    z-index: 4;
    font-size: 50px;
    font-family: var(--spFont);
    font-weight: 200;
    color: var(--Green);
    white-space: nowrap;
}
.marquee2 p,
.marquee3 p{
    white-space: nowrap;
    line-height: 1em;
}
.marquee2Text01,
.marquee3Text01{
    display: inline-block;
    animation: marquee2 40s linear infinite;
    animation-delay: -20s;
}
.marquee2Text02,
.marquee3Text02{
    display: inline-block;
    animation: marquee3 40s linear infinite;

}
@keyframes marquee2 {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes marquee3 {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-200%);
  }
}

#section2{
	width: calc(100% - 240px);
	margin-left: 240px;
	padding: 20px 20px;
	display: flex;
	justify-content: center;
	align-items: stretch;
	align-content: flex-start;
	position: relative;
	z-index: 5;

}
#section2 .leftSide{
	width: 60%;
	position: relative;
	z-index: 1;
}
#section2 .rightSide{
	width: 40%;
	position: relative;
	z-index: 0;
}
.flex{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	perspective: 1000px;
    -webkit-perspective: 1000px;
	transform-style: preserve-3d;
}
#section2 .showBrief{
	width: 85%;
	margin-left: 15%;
}
.showBrief{
	width: 90%;
    margin-left: 10%;
    margin-top: -80px;
    margin-bottom: 20px;
}
.showBrief i{
	margin-right: 10px;
}
.detail{
	line-height: 1.8em;
	font-size: 18px;
	font-weight: 400;

	width: 100%;
}
.detail a{
	color: var(--Green);
}
.aDetail{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}
.detailIcon{
	width: 30px;
	text-align: center;
}
.detialContent{
	margin-left: 10px;
}
.detialContent:nth-child(2){
	margin-left: 0;
}
.aBox{
	width: 14.5vw;
	height: 14.5vw;
	overflow: hidden;
	transition:.3s;
	position: relative;
	margin: 0 20px 20px 0;
	transform-origin: center top;
	transform-style: preserve-3d;
}
.aBox img{
	width: 100%;
}
.logo{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	opacity: 0;
}
.aBox .fa-circle-info{
	font-size: 20px;
	position: absolute;
	right: 5px;
	bottom: 5px;
	z-index: 0;
}
.aBoxImg{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
.aBox:hover{
	transition:.3s;
}
.aBox:hover .fa-circle-info{
	z-index: 2;
}
.aBox:hover .aBoxImg{
	clip-path: polygon(0 var(--cut),var(--cut) 0,100% 0,100% calc(100% - var(--cut)),calc(100% - var(--cut)) 100%,0 100%);
	transition:.3s;
}
.aBox:hover .aBoxImg img:nth-child(2){
	transform: scale(1.2);
	transition:.3s;
}
.aBox:hover .logo{
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	opacity: 1;
	transition:.3s;
}
.allLinks{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.allLinks a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	clip-path: polygon(0 var(--cut),var(--cut) 0,100% 0,100% calc(100% - var(--cut)),calc(100% - var(--cut)) 100%,0 100%);
	width: 48%;
	padding: 15px 15px;
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	color: var(--White);
	background-color: rgba(72,255,236,.1);
  	backdrop-filter: blur(5px);
  	-webkit-backdrop-filter: blur(5px);

}
.allLinks a i{
	color: var(--Green);
}
.allLinks a:focus,
.allLinks a:hover{
	clip-path: polygon(0 var(--cut),var(--cut) 0,100% 0,100% calc(100% - var(--cut)),calc(100% - var(--cut)) 100%,0 100%);
}


#section3{
	width: calc(100% - 240px);
	margin-left: 240px;
	padding: 100px 20px;
	position: relative;
	z-index: 4;
}


/*Hover Img Show*/
.hover{
	position: relative;
}
.hover-reveal {
	position: absolute;
	z-index: -1;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	overflow: hidden;
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
}

.hover-reveal__inner {
	overflow: hidden;
}

.hover-reveal__inner,
.hover-reveal__img {
	width: 100%;
	height: 100%;
	position: relative;
}

.hover-reveal__img {
	background-size: cover;
	background-position: 50% 50%;
}
/*End Hover Img Show*/

#section4{
	width: calc(100% - 240px);
	margin-left: 240px;
	padding: 100px 20px;
	z-index: 4;

	display: flex;
	justify-content: center;
	align-items: stretch;
	align-content: flex-start;
	flex-wrap: wrap;
	position: relative;
}
#section4 h1,
#section4 h2{
	width: 100%;
}

#section4 .leftSide{
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
}
#section4 .leftSide .leftSideContent{
	width: 200%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#section4 .rightSide{
	width: 100%;
	margin-bottom: 20px;
}
#section4 .leftSide .leftSideContent img{ 
	display: block;
	width: 10%;
}

#section5{
	width: calc(100% - 240px);
	min-height: 100vh;
	margin-left: 240px;
	padding: 100px 20px;
	z-index: 4;
}
#section5 .showBrief{
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}
.showBrief p{
	width: 50%;
}
.designers{
    width: 50%;
    perspective: 600px;
	-webkit-perspective: 600px;
}
.card{
	width: 16vw;
	height: 16vw;
	overflow: hidden;
	position: relative;
	clip-path: polygon(0 var(--cut2),var(--cut2) 0,100% 0,100% calc(100% - var(--cut2)),calc(100% - var(--cut2)) 100%,0 100%);
	padding: 20px 20px;
	backdrop-filter: blur(5px);
  	-webkit-backdrop-filter: blur(5px);
  	transform-origin: center top;
	transform-style: preserve-3d;
}
.card img{
	width: 100%;
}
.name{
	width: 80%;
	padding: 5px 10px;
	text-align: center;
	border-radius: 25px;
	background: rgba(0,0,0,.6);
	color: var(--Green);
	border: 1px solid var(--shadow);
	backdrop-filter: blur(5px);
  	-webkit-backdrop-filter: blur(5px);
  	font-weight: 200;
  	font-size: 14px;
  	transform: rotate(90deg);
    position: absolute;
    top: 51%;
    left: -30%;
    font-family: var(--spFont);
    line-height: 1.2em;
}
.card01{
	background: url(../img/TFDA/01.png) rgba(72,255,236,.1) center center no-repeat;
	background-size: cover;
	z-index:0;
}
.card02{
	background: url(../img/TFDA/02.png) rgba(72,255,236,.1) center center no-repeat;
	background-size: cover;
	z-index:1;
	margin-top: -15vw;
	margin-left: 5%;
}
.card03{
	background: url(../img/TFDA/03.png) rgba(72,255,236,.1) center center no-repeat;
	background-size: cover;
	z-index:2;
	margin-top: -15vw;
	margin-left: 10%;
}
.card04{
	background: url(../img/TFDA/04.png) rgba(72,255,236,.1) center center no-repeat;
	background-size: cover;
	z-index:3;
	margin-top: -15vw;
	margin-left: 15%;
}
.card05{
	background: url(../img/TFDA/05.png) rgba(72,255,236,.1) center center no-repeat;
	background-size: cover;
	z-index:4;
	margin-top: -15vw;
	margin-left: 20%;
}
.card06{
	background: url(../img/TFDA/06.png) rgba(72,255,236,.1) center center no-repeat;
	background-size: cover;
	z-index:5;
	margin-top: -15vw;
	margin-left: 25%;
}
.card07{
	background: url(../img/TFDA/07.png) rgba(72,255,236,.1) center center no-repeat;
	background-size: cover;
	z-index:6;
	margin-top: -15vw;
	margin-left: 30%;
}
.card08{
	background: url(../img/TFDA/08.png) rgba(72,255,236,.1) center center no-repeat;
	background-size: cover;
	z-index:7;
	margin-top: -15vw;
	margin-left: 35%;
}
.card09{
	background: url(../img/TFDA/09.png) rgba(72,255,236,.1) center center no-repeat;
	background-size: cover;
	z-index:8;
	margin-top: -15vw;
	margin-left: 40%;
}
.card10{
	background: url(../img/TFDA/10.png) rgba(72,255,236,.1) center center no-repeat;
	background-size: cover;
	z-index:9;
	margin-top: -15vw;
	margin-left: 45%;
}
.card11{
	background: url(../img/TFDA/11.png) rgba(72,255,236,.1) center center no-repeat;
	background-size: cover;
	z-index:10;
	margin-top: -15vw;
	margin-left: 50%;
}
.card12{
	background: url(../img/TFDA/12.png) rgba(72,255,236,.1) center center no-repeat;
	background-size: cover;
	z-index:11;
	margin-top: -15vw;
	margin-left: 55%;
}
#section6{
	width: calc(100% - 240px);
	margin-left: 240px;
	padding: 100px 20px;
	z-index: 4;
}
.agenda{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}
.agendaTime {
	width: 120px;
	font-size: 22px;
    font-family: var(--spFont);
}
.agendaText{
	width: calc(100% - 120px);
	line-height: 1.2em;
}
.topic{
	font-weight: 400;
	font-size: 24px;
	text-transform: uppercase;
	margin-bottom: 10px;
	line-height: 1.2em;
}
.speaker{
	color: var(--Green);
	font-size: 18px;
	margin-bottom: 50px;
}
.note{
	margin-top: 20px;
	margin-bottom: 20px;
}


/* Start lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;

  width: 100%;
  height: 100vh;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox.active {
  z-index: 10;
}

.lightbox-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;

  position: relative;
  background: rgba(0,0,0,.5);
  pointer-events: none;
  opacity: 0;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-wrap.lightbox-wrap--open {
  pointer-events: auto;
  opacity: 1;
}

.lightboxColse {
  display: flex;
  justify-content: space-around;
  align-items: center;

  width: 400px;
  height: 60px;

  bottom: 20px;
  left: calc(50% - 200px);
  z-index: 5;
  border-radius: 10px 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 5px var(--shadow);
  border: 1px solid var(--shadow);

  position: absolute;
  z-index: 11;

  text-transform: uppercase;
}
.lightboxColse .marquee {
  width: 85%;
}
.sectionContent{
	width: 80%;
	max-width: 1024px;

	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}
.sectionImg,
.brief{
	width: 50%;
}

.sectionImg img{
	width: 100%;
	box-shadow: 0 0 10px var(--shadow);
}
.brief{
	max-height: 512px;
	padding: 0 50px;
	overflow-y: auto;
}

.designerTitle{
	font-family: var(--spFont);
    font-weight: 200;
    font-size: 5vw;
    line-height: 1.2em;
    margin-bottom: 20px;
}

/* End lightbox */


/*////RWD////*/
@media screen and (max-width:1660px) {
	
}
@media screen and (max-width:1440px) {
	.aBox {
    	width: 14vw;
    	height: 14vw;
	}
}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1280px) {
	.threeD img{
	    top: 0;
	}
	.marquee3 {
	    top: 55%;
	}
	#section2 .leftSide,
	#section2 .rightSide{
		width: 50%;
	}
	.allLinks a {
   		font-size: 18px;
	}
	
}
@media (orientation:landscape) and (max-height: 800px) {
	
}
@media screen and (max-width:1024px) {
	.threeD img {
    	top: 5%;
	}
	.marquee2 {
	    top: 42%;
	}
	.marquee3 {
	    top: 54%;
	}
	#section2,
	#section3,
	#section4,
	#section5,
	#section6 {
		width: calc(100% - 210px);
	    margin-left: 210px;
	}
	.showBrief {
	    margin-top: -60px;
	}
	#section2 .showBrief {
		width: 80%;
	    margin-left: 20%;
	    margin-top: -60px;
	}
	.allLinks a {
    	font-size: 16px;
	}
	.name {
		width: 90%;
    	font-size: 10px;
    	padding: 5px 5px;
    	line-height: 1.2em;
    }
    .card {
	    width: 16vw;
	    height: 23vw;
	}
	.card02,
	.card03,
	.card04,
	.card05,
	.card06,
	.card07,
	.card08,
	.card09,
	.card10,
	.card11,
	.card12{
		margin-top: -20vw;
	}
	
}
@media (orientation:landscape) and (max-height: 768px) {

}
@media (orientation:portrait) and (max-height: 1180px) {
	main{
		background-attachment: initial;
		background-repeat:repeat-y; 
		background-size: contain;
	}
	.threeD img {
		width: 140%;
    	top: 25%;
    	left: -5%;
	}
	.marquee2 {
	    top: 45%;
	    font-size: 15vw;
	}
	.marquee3 {
    	top: 55%;
	}
	#section2{
		flex-wrap: wrap;
	}
	#section2 .leftSide,
	#section2 .rightSide{
		width: 100%;
	}
	h1 {
	    font-family: var(--spFont);
	    font-size: 10vw;
	}
	h2 {
    	font-size: 5vw;
	}
	.showBrief,
	#section2 .showBrief {
		width: 80%;
	    margin-left: 18%;
    	margin-top: -70px;
	}
	.aBox {
	    width: 30vw;
	    height: 30vw;
	}
	#section2 .rightSide {
		margin-top: 0;
	}
	.detialContent {
    	width: 90%;
	}
	.detialContent:nth-child(3),
	.detialContent:nth-child(4){
		margin-left: 30px;
	}
	.designers {
	    order: -1;
	    width: 100%;
	    margin-bottom: 50px;
	}
	.showBrief p {
    	width: 100%;
	}
	.card {
	    width: 25vw;
	    height: 25vw;
	}
	.card02{
	
		margin-top: -23vw;
		margin-left: 5%;
	}
	.card03{
		
		margin-top: -23vw;
		margin-left: 10%;
	}
	.card04{
		
		margin-top: -23vw;
		margin-left: 15%;
	}
	.card05{
		
		margin-top: -23vw;
		margin-left: 20%;
	}
	.card06{
		
		margin-top: -23vw;
		margin-left: 25%;
	}
	.card07{
		
		margin-top: -23vw;
		margin-left: 30%;
	}
	.card08{
		
		margin-top: -23vw;
		margin-left: 35%;
	}
	.card09{
		
		margin-top: -23vw;
		margin-left: 40%;
	}
	.card10{

		margin-top: -23vw;
		margin-left: 45%;
	}
	.card11{
		
		margin-top: -23vw;
		margin-left: 50%;
	}
	.card12{
		
		margin-top: -23vw;
		margin-left: 55%;
	}
	.name {
		width: 90%;
    	font-size: 10px;
    	padding: 5px 5px;
    	top: 42%;
    	left: -28%;
	}
	.sectionImg{
		width: 50%;
		margin-bottom: 50px;
	}
	.brief{
		width: 100%;
		max-height: 48vh;
		padding: 0 20px;
	}
	.designerTitle {
	    font-size: 7vw;
	}
	
}
@media (orientation:portrait) and (max-height: 1024px) {
	.aBox {
	    width: 28vw;
	    height: 28vw;
	}
}
@media (orientation:portrait) and (max-width: 480px) {
	h1 {
    	font-size: 10vw;
	}
	h2 {
    	font-size: 6.5vw;
	}
	.threeD img {
	    width: 150%;
	    top: 30%;
	    left: -20%;
	}
	.marquee2 {
    	top: 43%;
    	font-size: 20vw;
	}
	.marquee3 {
	    font-size: 20px;
	    top: 52%;
	}
	#section2,
	#section3,
	#section4,
	#section5,
	#section6 {
	    width: calc(100% - 150px);
	    margin-left: 150px;
	}
	.showBrief,
	#section2 .showBrief {
		width: 100%;
		margin-left: 0;
    	margin-top: 0;
	}
	.detail {
	    font-size: 14px;
	}
	.aBox {
	    width: 46vw;
	    height: 46vw;
	}
	.aBox .aBoxImg {
    	clip-path: polygon(0 var(--cut),var(--cut) 0,100% 0,100% calc(100% - var(--cut)),calc(100% - var(--cut)) 100%,0 100%);
	}
	.aBox .aBoxImg img:nth-child(2) {
		opacity: .7;
	}
	.aBox .logo {
	    -webkit-backdrop-filter: blur(0px);
	    backdrop-filter: blur(0px);
	    opacity: 1;
	}
	.aBox .fa-circle-info {
    	font-size: 14px;
	}
	.allLinks a {
    	width: 100%;
    	padding: 10px 15px;
	    margin-bottom: 15px;
	}
	#section4 .leftSide .leftSideContent {
    	width: 300%;
	}
	.detialContent {
    	width: 80%;
	}
	.card {
    	width: 50vw;
    	height: 50vw;
	}
	.card02,
	.card03,
	.card04,
	.card05,
	.card06,
	.card07,
	.card08,
	.card09,
	.card10,
	.card11,
	.card12{
		margin-top: -45vw;
		margin-left: 0;
	}
	.agendaTime {
    	width: 100%;
    	margin-bottom: 10px;
	}
	.agendaText {
	    width: 100%;
	}
	.topic {
	    font-size: 18px;
	}
	.speaker {
	    font-size: 12px;
	}
	.sectionImg{
		width: 100%;
		margin-bottom: 50px;
	}
	.brief{
		width: 100%;
		max-height: 35vh;
	}
	.designerTitle {
	    font-size: 10vw;
	}

	.lightboxColse{
		left: 30px;
   		width: calc(100% - 60px);
	}
}
/*Iphone XR 414*896 */
@media (orientation: portrait) and (max-height: 896px) {
  
}
/*Iphone 12Pro 390*844 */
@media (orientation: portrait) and (max-height: 844px) {
	
}
/*Iphone 10 375*812 */
@media (orientation: portrait) and (max-height: 812px) {
  
}

/*Iphone 8Plus 414*736 */
@media (orientation: portrait) and (max-height: 736px) {
  
}
/*Iphone 8 375*667 */
@media (orientation: portrait) and (max-height: 667px) {
	
}
@media screen and (max-width: 360px) {
}
@media screen and (max-width: 320px) {
}
