@font-face
{
	font-family: SukhumvitSet-Thin;
	src: url(Fonts/SukhumvitSet-Thin.ttf)
}

@font-face
{
	font-family: SukhumvitSet-Bold;
	src: url(Fonts/SukhumvitSet-Bold.ttf)
}

@font-face
{
	font-family: SukhumvitSet-Medium;
	src: url(Fonts/SukhumvitSet-Medium.ttf)
}

@keyframes fadeInDown
{
	0%
	{
		transform: translateY(-100%);
		opacity: 0;
	}
	
	100%
	{
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fadeInSlideRight
{
	0%
	{
		transform: translateX(-100%);
		opacity: 0;
	}
	
	100%
	{
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fadeInOut {
  0%   { opacity:1; }
  50%  { opacity:0.25; }
  100% { opacity:1; }
}

@keyframes fadeInUp
{
	0%
	{
		transform: translateY(+100%);
		opacity: 0;			
	}
	
	100%
	{
		transform: translateY(0%);
		opacity: 1;			
	}
}

.show-gallery-sections
{
	animation: fadeInUp 2s;
}

p
{
	text-align: center;
	font-family: SukhumvitSet-Thin;
}

a:link, a:visited, a:hover, a:active
{
	color: #fff;
	text-decoration: none;
	display: contents;
}

body
{
	padding: 0;
	margin: 0;
}

.top-background
{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: url(Assets/bground-50percent.jpg) no-repeat center bottom;
}

.bottom-background
{
	width: 100%;
	min-height: 100%;
	position: absolute;
	top: 100%;
	left: 0px;
	background: #494949;
	margin: 0;
	padding: 22px;
}

.klae-container
{
	position: absolute;
	top: calc(50vh - 240px);
	left: calc(50vw - 450px);
	width: 90vw;
	max-width: 900px;
	max-height: 450px;
}

.title-container
{
	margin: 0px 0px 20px 0px;
	animation: 1s ease-out 0s 1 fadeInDown;
}

.subtitle-container
{
	padding: 0px;
	margin: 0px;
	width: 100.5%;
	opacity: 0;
	animation: 1s ease-out 1s 1 fadeInDown;
	animation-fill-mode: forwards;
}

.title-line
{
	height: 2px;
	width: 100%;
	margin: 20px 0;
	background-color: #fff;
	opacity: 0;
	animation: 1.5s ease-out 1.5s 1 fadeInDown;
	animation-fill-mode: forwards;
}

.slogan-container
{
	color: #fff;
	text-align: center;
	font-size: 30px;
	font-family: SukhumvitSet-Thin;
	opacity: 0;
	animation: 0.7s ease-out 2s 1 fadeInDown;
	animation-fill-mode: forwards;
}

.go-to-gallery
{
	height: 50px;
	width: 75px;
	position: absolute;
	bottom: 75px;
	left: calc(50% - 50px);
	padding: 0;
	margin: 0;
	opacity: 0;
	animation: 1s ease-out 2.5s 1 fadeInDown;
	animation-fill-mode: forwards;
}

.go-to-gallery p
{
	left: 0px;
	font-size: 14pt;
	margin: 0;
}

.go-to-gallery img
{
	width: 60px;
	position: absolute;
	left: 8px;
	top: 26px;
}

.go-to-gallery img, .go-to-gallery p
{
	animation: fadeInOut 5000ms infinite;
}

*
{
    box-sizing: border-box;
}
	
.gallery
{
	position: relative;
	width: 50%;
	left: 25%;
	color: white;
	font-family: SukhumvitSet-Bold;
	font-size: 50px;
	height: 40vh;
	top: 20vh;
}

.gallery h1
{
	display: block;
	text-align: center;
	width: 100%;
}