*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body {
	font-family: 'Montserrat', sans-serif;
	background: #E1EFF2;
}

body {
	max-width: 480px; 
	margin: 0 auto;
}

img{
	vertical-align: bottom;
}

ul, li {
	list-style: none;
}

@keyframes fadein {
  0% {
     opacity: 0;
  }
  100% {
     opacity: 1;
  }
}

@keyframes fadein_y {
  0% {
     opacity: 0;
     transform: translateY(-20px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}



header {
	padding: 20px 10px;
	color: #1A869D;
	display: flex;
	align-items: center;
	background: #fff;
	
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
}
header p{
	font-weight: bold;
	font-size: 20px;
	padding-left: 5px;
	
}
header img{
	width: 24px;
	height: auto;
	vertical-align: middle;
}
header span{
	font-size: 14px;
	font-weight: normal;
}


#whatsup {
	position: relative;
	padding-top: 64px;
}

#whatsup img {
	width: 100%;
	height: auto;
}

#whatsup .message {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 75%);
	font-weight: bold;
}

#whatsup .message h3 {
	color: #E1EFF2;
	font-size: 12px;
}
#whatsup .message p {
	color: #fff;
	font-size: 20px;
}


#wrapper {
	padding: 0 20px 20px;
}

#wrapper .plate {
	background: #fff;
	margin-top: 20px;
	padding-bottom: 20px;
	
	border-radius: 12px;
	overflow: hidden;
	z-index: 1;
	position: relative;
	box-shadow: 0px 0px 6px rgba(26, 134, 157, 0.6);
	
	transition:.5s all ease ;
}

#wrapper .plate.active {
	transition:.5s all ease.2s;
}

.plate .photo {
	aspect-ratio: 3 / 1;
	overflow: hidden;
}
.plate.active .photo {
	aspect-ratio: 3 / 2;
}

.plate .photo img {
	
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 1;
	transition:.3s all ease;
}

.plate.active .photo img {
	aspect-ratio: 3 / 2;
	transform: scale(1.2);
}

.plate h2 {
	color: #1A869D;
	font-size: 18px;
	font-weight: bold;
}

.title {
	padding: 20px 20px 0;
	transition:.3s all ease;
}

.tag {
	display: flex;
	padding-top: 10px;
}

.tag li {
	background: #F2ECE1;
	border-radius: 20px;
	padding: 5px 10px;
	font-size: 12px;
	color: #A88E5D;
}
.tag li + li{
	margin-left: 5px;
}



.sub {
	padding: 0 20px 0;
/*
	transition:.3s all ease;
	
	opacity: 0;
	display: none;
	height: 0;
	
	
*/
	visibility: hidden;
	opacity : 0;
	height: 0;
	transform : translate3d(0, 40px, 0);
	transition : all .3s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.active .sub {
/*
	opacity: 1;
	
	display: block;
	height: auto;
*/	
	padding: 10px 20px 0;
	visibility: visible;
	opacity : 1;
	height: auto;
	transform : translate3d(0, 0, 0);
	transition : all .3s cubic-bezier(0.33, 1, 0.68, 1) .2s;

}

.sub p {
	color: #9B9B9B;
	font-size: 14px;
	
	
}

.active .sub p {
	height: auto;
}

.cta {
	padding-top: 20px;
	display: none;
	align-items: center;
	justify-content: space-between;
	
	transition:.3s all ease;
	opacity: 0;
	height: 0;
}
.active .cta {
	display: flex;
	opacity: 1;
	height: auto;
}

.cta .time {
	color: #1A869D;
	font-size: 16px;
}
.cta .time h3 {
	color: #B9B9B9;
	font-size: 12px;
	font-weight: bold;
}

.cta button {
	border: none;
	background: linear-gradient(135deg, rgba(21,95,111,1) 0%, rgba(26,134,157,1) 100%);
	padding: .7em 2.4em;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	border-radius: 8px;
	cursor: pointer;
}


footer {
	font-size: 12px;
	text-align: center;
	color: #1A869D;
	padding-bottom: 20px;
}



#video_window {
	background: #1A869D;
	position: absolute;
	top: 100vh;
	left: 0;
	width: 100%;
	z-index: 200;
	display: none;
}

#video_window .video_area {
	aspect-ratio: 16 / 9;
}
#video_window .video_area img {
	object-fit: cover;
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}	