@media screen and (min-width: 600px) {
	@keyframes text-shadow-4{
		0% {text-shadow: 0 0 0 #f1f1f1,
						0 0 0 #f3f3f3,
						0 0 0 #f5f5f5,
						0 0 0 #f7f7f7,
						0 0 0 #f9f9f9,
						0 0 0 #fbfbfb;}
		100% {text-shadow: 0 25vh 0 #f1f1f1,
					0 50vh 0 #f6f6f6,
					0 75vh 0 #fbfbfb,
					0 -25vh 0 #f1f1f1,
					0 -50vh 0 #f6f6f6,
					0 -75vh 0 #fbfbfb;}
	}
	#p-d-main{
		display: flex;
	}
	#p-d-main-1, #p-d-main-2, #p-d-main-3{
		width: 40vw;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		position: sticky;
		top: 0;
		left: 0;
	}
	#p-d-main-1 > h1{
		font-size: 20vh;
		width: 100vh;
		height: 100vh;
		line-height: 100vh;
		transform: rotate(90deg);
		font-weight: normal;
		text-shadow: 0 20vh 0 #f1f1f1,
					0 40vh 0 #f6f6f6,
					0 60vh 0 #fbfbfb,
					0 -20vh 0 #f1f1f1,
					0 -40vh 0 #f6f6f6,
					0 -60vh 0 #fbfbfb;
		pointer-events: none;
		user-select: none;
		animation: text-shadow 1s backwards;
	}
	#p-d-main-2 > h1{
		font-size: 22.5vh;
		width: 100vh;
		height: 100vh;
		line-height: 100vh;
		transform: rotate(90deg);
		font-weight: normal;
		text-shadow: 0 20vh 0 #f1f1f1,
					0 40vh 0 #f6f6f6,
					0 60vh 0 #fbfbfb,
					0 -20vh 0 #f1f1f1,
					0 -40vh 0 #f6f6f6,
					0 -60vh 0 #fbfbfb;
		pointer-events: none;
		user-select: none;
		animation: text-shadow 1s backwards;
	}
	#p-d-main-3 > h1{
		font-size: 18vh;
		width: 100vh;
		height: 100vh;
		line-height: 100vh;
		transform: rotate(90deg);
		font-weight: normal;
		text-shadow: 0 20vh 0 #f1f1f1,
					0 40vh 0 #f6f6f6,
					0 60vh 0 #fbfbfb,
					0 -20vh 0 #f1f1f1,
					0 -40vh 0 #f6f6f6,
					0 -60vh 0 #fbfbfb;
		pointer-events: none;
		user-select: none;
		animation: text-shadow 1s backwards;
	}
	#breadol{
	    display: flex;
	    align-content: center;
	    justify-content: flex-start;
	    list-style: none;
	    padding: 2vw 0;
	    margin: 0;
	    z-index: 1;
	}
	#breadol > li{
	    font-size: 1.2vw;
	    color: #666;
	    line-height: 1vw;
	    display: flex;
	}
	#breadol > li > a{
	    color: #666;
	    margin-right: 2vw;
	    display: block;
	    position: relative;
	    font-weight: bold;
	}
	#breadol > li > a::after{
		content: "";
		display: block;
		width: .2vw;
		height: 1.2vw;
		background-color: #666;
		position: absolute;
		top: -.1vw;
		right: -1.1vw;		
	}
	#p-d-text{
		width: 40vw;
		margin-top: 8vw;
		z-index: 1;
	}
	#p-d-text > h2{
		width: 40vw;
		font-size: 2vw;
		line-height: 3vw;
		margin: 1vw 0 0 0;
	    animation: up 1s backwards;
	    animation-delay: .2s;
	}
	#p-d-text > h3{
		width: 40vw;
		font-size: 1vw;
		line-height: 2vw;
		margin: .5vw 0;
	    animation: up 1s backwards;
	    animation-delay: .2s;
	}
	#p-d-text > p{
		width: 40vw;
		font-size: 1vw;
		line-height: 2vw;
		margin: .5vw 0;
		text-align: justify;
	    animation: up 1s backwards;
	    animation-delay: .2s;
	}
	#p-d-text > ul > li{
		width: 40vw;
		font-size: 1vw;
		line-height: 2vw;
		margin: .5vw 0;
		text-align: justify;
	    animation: up 1s backwards;
	    animation-delay: .2s;
	    text-decoration: underline;
	}
	.update{
		font-size: 1.2vw!important;
		line-height: 2vw;
		color: #e69d13;
		font-weight: bold;
		margin: 2vw 0!important;
	}


}



@media screen and (max-width: 600px) {
	#p-d-main-1, #p-d-main-2, #p-d-main-3{
		width: 95vw;
		padding: 15vw 0 0 0;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 2.5vw;
	}
	#p-d-main-1 > h1{
		margin: 10vw 0 0 0;
		font-size: 20vw;
		width: 95vw;
		text-align: center;
		line-height: 20vw;
		font-weight: normal;
		text-shadow: 0 20vw 0 #f1f1f1,
					0 40vw 0 #f6f6f6,
					0 60vw 0 #fbfbfb,
					0 -20vw 0 #f1f1f1,
					0 -40vw 0 #f6f6f6,
					0 -60vw 0 #fbfbfb;
		pointer-events: none;
		user-select: none;
		animation: text-shadow-3 1s backwards;
	}
	#p-d-main-2 > h1{
		margin: 10vw 0 0 0;
		font-size: 20vw;
		width: 95vw;
		text-align: center;
		line-height: 15vw;
		font-weight: normal;
		text-shadow: 0 20vw 0 #f1f1f1,
					0 40vw 0 #f6f6f6,
					0 60vw 0 #fbfbfb,
					0 -20vw 0 #f1f1f1,
					0 -40vw 0 #f6f6f6,
					0 -60vw 0 #fbfbfb;
		pointer-events: none;
		user-select: none;
		animation: text-shadow-3 1s backwards;
	}
	#p-d-main-3 > h1{
		margin: 10vw 0 0 0;
		font-size: 20vw;
		width: 95vw;
		text-align: center;
		line-height: 15vw;
		font-weight: normal;
		text-shadow: 0 20vw 0 #f1f1f1,
					0 40vw 0 #f6f6f6,
					0 60vw 0 #fbfbfb,
					0 -20vw 0 #f1f1f1,
					0 -40vw 0 #f6f6f6,
					0 -60vw 0 #fbfbfb;
		pointer-events: none;
		user-select: none;
		animation: text-shadow-3 1s backwards;
	}
	#breadol{
		width: 85vw;
	    display: flex;
	    align-content: center;
	    justify-content: center;
	    list-style: none;
	    padding: 6vw 0;
	    margin: 0;
	    z-index: 1;
	    animation: up 1s backwards;
	    animation-delay: 0s;
	}
	#breadol > li{
	    font-size: 3.6vw;
	    color: #666;
	    line-height: 3vw;
	    display: flex;
	}
	#breadol > li > a{
	    color: #666;
	    margin-right: 6vw;
	    display: block;
	    position: relative;
	    font-weight: bold;
	}
	#breadol > li > a::after{
		content: "";
		display: block;
		width: .6vw;
		height: 3.6vw;
		background-color: #666;
		position: absolute;
		top: -.3vw;
		right: -3.3vw;		
	}
	#p-d-text{
		width: 85vw;
		margin: 0 7.5vw;
		z-index: 1;
	    animation: up 1s backwards;
	    animation-delay: .2s;
	}
	#p-d-text > h2{
		width: 85vw;
		font-size: 6vw;
		line-height: 9vw;
		margin: 3vw 0 0 0;
	}
	#p-d-text > h3{
		width: 85vw;
		font-size: 4vw;
		line-height: 8vw;
		margin: 2vw 0;
	}
	#p-d-text > p{
		width: 85vw;
		font-size: 4vw;
		line-height: 8vw;
		margin: 2vw 0;
		text-align: justify;
	}
	#p-d-text > ul > li{
		width: 85vw;
		font-size: 4vw;
		line-height: 8vw;
		margin: 3.5vw 0;
		text-decoration: underline;
	}
	.update{
		font-size: 4.5vw!important;
		line-height: 6vw;
		color: #e69d13;
		font-weight: bold;
		margin: 6vw 0!important;
	}
}




