/* CSS Document */

*
{
	margin: 0;
	padding: 0;
	border: 0;
	scroll-behavior: smooth;
}

body
{	
	background-color: #E8F4F7;
}

div
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	font-size: 60px;
	font-weight: bold;
	z-index: 0;
}

#mymove
{
	background-image: url("../images/home-banner.png");
	background-size: cover;
}

#mymove h1
{
	color: brown;
	font-family: 'Inspiration', cursive;
	font-size: 8vw;
	top: 2%;
	position: absolute;
	display: flex;
	left: 2%;
	text-shadow: 1px 1px #ffffff;
	flex-wrap: wrap;
}

#mymove ul
{
	display: flex;
	position: absolute;
	top: 2vh;
	right: 2%;
	
}

#mymove ul li
{
	list-style-type: none;
	margin-right: 30px;
	border-radius: 16px;
}

#mymove ul li:hover
{
	text-decoration: underline;	
	color: #821617;
	
}

#mymove ul li a
{
	text-decoration: none;
	font-size: 4vh;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: #821617;
	text-shadow: 1px 1px #ffffff;
	padding: 0 10px;
	
}

#mymove img
{
	opacity: 0.5;
	box-shadow: 2px 2px 70px 30px #ffffff;
	width: 60vw;
}

#about
{
	background: linear-gradient( transparent, #9DC8EC);
}

#about img
{
	box-shadow: 3px 3px 70px 30px #ffffff;
}

#lastmove
{
	background-image: url("../images/portfolio-banner.png");
	background-size: cover;	
	
}

#lastmove img
{
	opacity: 0.5;
	box-shadow: 2px 2px 70px 30px #ffffff;
	width: 60vw;
	
}

 h2
{
	color: #821617;
	z-index: 1000;
	position: absolute;
	display: flex;	
	left: 57.5%;
	font-family: 'Inspiration', cursive;
}

#portofolio
{
	background: linear-gradient( #5B251D, transparent);
}

#finalcontact
{
	background-image: url("../images/contact-banner.png");
	background-size: cover;
	background-attachment: fixed;
}

#finalcontact img
{
	opacity: 0.5;
	box-shadow: 2px 2px 70px 30px #ffffff;
	width: 60vw;
}

#formulary
{
	background: linear-gradient( transparent, #9DC8EC);
	display: flex;
	flex-wrap: wrap;
	height: 100vh;
}

.box
{
	width: 33%;
	z-index: 100;
	align-items: flex-start;
	padding-top: 4%;
	display: block;
	margin-left: 1.5%;
}

.box img
{
	top: 2%;
	width: 95%;
	
}

.box p
{
	font-size: 1vw;
	text-align: justify;
	width: 95%;
	padding-top: 4%;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	text-indent: 30px;
	line-height: 3.5vh;
	color: #103170;
}

.cards
{
	width: 45%;
	z-index: 100;
	margin-left: 1.5%;
	overflow: hidden;
}

.cards a
{
	width: 95%;
}

.cards a img
{
	
	transition: transform .5s, filter 3s  ease-in-out; 
}

.cards a:hover img
{
	transform: scale(1.05);
}




.cards img
{
	width: 95%;
	box-shadow: 2px 2px 70px 30px #ffffff;
}

#made
{
	flex-direction: column;
	align-items: flex-start;
	font-family: 'Inspiration', cursive;
	font-size: 2vw;
	color: #821617;
	width: 100%;
	height: 10%;
	margin-left: 2vw;
}

#cont-form
{
	width: 100%;
	height: 80%;
	align-items: center;
	justify-content: center;
	margin:20px 0 20px 40px;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 1.2vw;
	padding-top: 10px;

}

#cont-form form label
{
	font-size: 1vw;
	color: #103170;
}

#cont-form form table
{
	width: 800px;
}

#cont-form form table td
{
	width: 520px;
}

#cont-form form input
{
	border:1px #103170 solid;
	width:500px;
	height:25px;
	padding:3px;
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	color:#666;
	font-style:italic;
	margin: 10px 0;
}

#cont-form form input:focus
{
	background-color:#F4F4F4;
}

#cont-form form textarea
{
	border:1px #103170 solid;
	min-width:500px;
	max-width:500px;
	padding:3px;
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	color:#666;
	font-style:italic;
	min-height:28px;
	margin: 10px 0;
}

#cont-form form textarea:focus
{
	background-color:#F4F4F4;
}

#cont-form strong
{
	color: brown;
	align-items: flex-start;
	flex-direction: column;
	font-weight: normal;
}

#cont-form form table td > .submit
{
	border:1px #103170 solid;
	cursor: pointer;
	height:32px; 
	width:508px;
}


/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) 
{
	#mymove h2
	{
		font-size: 12vw;
		left: 60vw;
		margin-top: 15vh;
	}
	
	#mymove
	{
		height: auto;
	}
	
	#mymove h1
	{
		font-size: 10vw;
		flex-wrap: wrap;
	}
	
	#mymove ul
	{
		display: block;
	}
	
	#mymove ul li a
	{
		font-size: 5vw;
	}
	
	#mymove img
	{
		width: 100%;
		margin-top: 25vh;
		margin-bottom: 10vh;
	}
	
	#about
	{
		display: grid;
		height: auto;
		padding-bottom: 5%;
	}
	
	.box
	{
		width: 85%;
		margin: 0 auto;
		height: auto;
	}
	
	.box p
	{
		font-size: 2vw;
		height: auto;
	}
	
	.box img
	{
		margin: 3vh 0;
	}
	
	#lastmove 
	{
		max-height: 40vh;
	}
	
	#lastmove h2
	{
		font-size: 12vw;
		left: 60vw;
	}
	
	#lastmove img
	{
		width: 100%;
	}
	
	#finalcontact
	{
		max-height: 40vh;
	}
	
	#finalcontact h2
	{
		font-size: 12vw;
		left: 60vw;
	}
	
	#finalcontact img
	{
		width: 100%;
	}
	
	#portofolio
	{
		display: grid;
		height: auto;
	}
	
	.cards
	{
		width: 85%;
		margin: 0 auto;
		height: auto;
	}
	
	.cards img
	{
		margin: 3vh 0;
	}
	
	#formulary
	{
		width: 100%;
		height: auto;
	}
	
	#cont-form
	{
		margin-left: 0;
		margin-bottom: 7vh;
	}
	
	#cont-form form
	{
		width: 100%;
	}
	
	#cont-form form input
	{
		width: 48vw;
		height: 3vh;
		font-size: 3vw;
		padding: 2px;
	}
		
	#cont-form form textarea
	{
		max-width: 48vw;
		min-width: 30vw;
		font-size: 3vw
	}	
	
	#cont-form form table 
	{
		width: 95%;
		margin: 0 auto;
	}
	
	#cont-form form table td
	{
		width: 40%;
	}
	
	#cont-form form table td strong
	{
		font-size: 3vw;
	}
	
	#cont-form form table td label
	{
		font-size: 3vw;
	}
	
	#cont-form form table td > .submit
	{
		width: 50vw;
		padding: 2px;
		font-size: 3vw;
	}
	
	#made
	{
		font-size: 4vw;
		margin-bottom: 5vh;
	}
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) 
{
	#mymove
	{
		height: auto;
	}
	
	#mymove h2
	{
		margin-top: 50vh;
	}
	
	#mymove h1
	{
		font-size: 10vw;
		flex-wrap: wrap;
	}
	
	#mymove ul
	{
		display: block;
	}
	
	#mymove ul li a
	{
		font-size: 5vw;
	}
	
	#mymove img
	{
		margin-top: 70vh;
		margin-bottom: 30vh;
	}
	
	#about
	{
		display: grid;
		height: auto;
		padding-bottom: 5%;
	}
	
	.box
	{
		width: 85%;
		margin: 2vh auto;
		height: auto;
	}
	
	.box p
	{
		font-size: 2vw;
		height: auto;
		line-height: 8vh;
	}
	
	.box img
	{
		margin: 3vh 0;
	}
	
	#lastmove 
	{
		max-height: 100vh;
	}
	
	#portofolio
	{
		display: grid;
		height: auto;
	}
	
	.cards
	{
		width: 85%;
		margin: 0 auto;
		height: auto;
	}
	
	.cards img
	{
		margin: 3vh 0;
	}
	
	#finalcontact
	{
		max-height: 100vh;
	}
	
	#formulary
	{
		width: 100%;
		height: auto;
	}
	
	#cont-form
	{
		margin-left: 0;
		margin-bottom: 7vh;
	}
	
	#cont-form form
	{
		width: 100%;
	}
	
	#cont-form form input
	{
		width: 48vw;
		height: 7vh;
		font-size: 2vw;
		padding: 2px;
	}
	
	#cont-form form textarea
	{
		max-width: 48vw;
		min-width: 30vw;
		font-size: 2vw;
	}	
	
	#cont-form form table 
	{
		width: 95%;
		margin: 0 auto;
	}
	
	#cont-form form table td
	{
		width: 40%;
	}
	
	#cont-form form table td strong
	{
		font-size: 3vw;
	}
	
	#cont-form form table td label
	{
		font-size: 3vw;
	}
	
	#cont-form form table td > .submit
	{
		width: 50vw;
		padding: 2px;
		font-size: 2vw;
		height: 7vh;
	}
	
	#made
	{
		font-size: 4vw;
		margin-bottom: 5vh;
	}
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 412px) and (max-width: 883px) 
{
	#mymove h2
	{
		font-size: 12vw;
		left: 60vw;
		margin-top: 70vh;
	}
	
	#mymove	
	{
		height: auto;
	}
	
	#mymove h1
	{
		font-size: 10vw;
		flex-wrap: wrap;
	}
	
	#mymove ul
	{
		display: block;
	}
	
	#mymove ul li a
	{
		font-size: 5vw;
	}
	
	#mymove img
	{
		width: 100%;
		margin-top: 70vh;
		margin-bottom: 10vh;
	}
	
	#about
	{
		display: grid;
		height: auto;
		padding-bottom: 5%;
	}
	
	.box
	{
		width: 85%;
		margin: 4vh auto;
		height: auto;
	}
	
	.box p
	{
		font-size: 2vw;
		height: auto;
		line-height: 10vh;
	}
	
	.box img
	{
		margin: 3vh 0;
	}
	
	#lastmove 
	{
		max-height: 65vh;
	}
	
	#lastmove h2
	{
		font-size: 12vw;
		left: 60vw;
	}
	
	#lastmove img
	{
		width: 100%;
	}
	
	#finalcontact
	{
		max-height: 65vh;
	}
	
	#finalcontact h2
	{
		font-size: 12vw;
		left: 60vw;
	}
	
	#finalcontact img
	{
		width: 100%;
	}
	
	#portofolio
	{
		display: grid;
		height: auto;
	}
	
	.cards
	{
		width: 85%;
		margin: 0 auto;
		height: auto;
	}
	
	.cards img
	{
		margin: 3vh 0;
	}
	
	#formulary
	{
		width: 100%;
		height: auto;
	}
	
	#cont-form
	{
		margin-left: 0;
		margin-bottom: 7vh;
	}
	
	#cont-form form
	{
		width: 100%;
	}
	
	#cont-form form input
	{
		width: 48vw;
		height: 7vh;
		font-size: 1.5vw;
		padding: 2px;
	}
	
	#cont-form form textarea
	{
		max-width: 48vw;
		min-width: 30vw;
		font-size: 1.5vw;
	}	
	
	#cont-form form table 
	{
		width: 95%;
		margin: 0 auto;
	}	
	
	#cont-form form table td
	{
		width: 40%;
	}
	
	#cont-form form table td strong
	{
		font-size: 2vw;
	}
	
	#cont-form form table td label
	{
		font-size: 3vw;
	}
	
	#cont-form form table td > .submit
	{
		width: 50vw;
		font-size: 1.5vw;
		padding: 2px;
		height: 7vh;
	}
	
	#made
	{
		font-size: 4vw;
		margin-bottom: 5vh;
	}
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/



@media (min-width: 320px) and (max-width: 425px) 
{
	#mymove h2
	{
		font-size: 12vw;
		left: 60vw;
		margin-top: 20vh;
	}
	
	#mymove
	{
		height: auto;
	}
		
	#mymove h1
	{
		font-size: 10vw;
		flex-wrap: wrap;
	}
	
	#mymove ul
	{
		display: block;
	}
	
	#mymove ul li a
	{
		font-size: 4vw;
	}
	
	#mymove img
	{
		width: 100%;
		margin-top: 30vh;
		margin-bottom: 10vh;
	}
	
	#about
	{
		display: grid;
		height: auto;
		padding-bottom: 5%;
	}
	
	.box
	{
		width: 85%;
		margin: 2vh auto;
		height: auto;
	}
	
	.box p
	{
		font-size: 3.5vw;
		height: auto;
		line-height: 3vh;
	}
	
	.box img
	{
		margin: 3vh 0;
	}
	
	#lastmove 
	{
		max-height: 40vh;
	}
	
	#lastmove h2
	{
		font-size: 12vw;
		left: 60vw;
	}
	
	#lastmove img
	{
		width: 100%;
	}
	
	#finalcontact
	{
		max-height: 40vh;
	}
	
	#finalcontact h2
	{
		font-size: 12vw;
		left: 60vw;
	}
	
	#finalcontact img
	{
		width: 70%;
	}
	
	#portofolio
	{
		display: grid;
		height: auto;
	}
	
	.cards
	{
		width: 85%;
		margin: 0 auto;
		height: auto;
	}
	
	.cards img
	{
		margin: 3vh 0;
	}
	
	#formulary
	{
		width: 100%;
		height: auto;
	}
	
	#cont-form
	{
		margin-left: 0;
		margin-bottom: 5vh;
		font-size: 1vh;
	}
	
	#cont-form form
	{
		width: 100%;
	}
	
	#cont-form form input
	{
		width: 48vw;
		height: 3vh;
		font-size: 3vw;
		padding: 2px;
	}
	
	#cont-form form textarea
	{
		max-width: 48vw;
		min-width: 30vw;
		font-size: 3vw;
	}	
	
	#cont-form form table 
	{
		width: 95%;
		margin: 0 auto;
	}
		
	#cont-form form table td
	{
		width: 40%;
	}
	
	#cont-form form table td strong
	{
		font-size: 3vw;
	}
	
	#cont-form form table td label
	{
		font-size: 3vw;
	}
	
	#cont-form form table td > .submit
	{
		width: 50vw;
		padding: 2px;
		font-size: 3vw;
	}
	
	#made
	{
		font-size: 4vw;
		margin-bottom: 2vh;
	}
}

@media (min-width: 210px) and (max-width: 320px) 
{
	#mymove h2
	{
		font-size: 12vw;
		left: 60vw;
		margin-top: 20vh;
	}
	
	#mymove
	{
		height: auto;
	}
		
	#mymove h1
	{
		font-size: 10vw;
		flex-wrap: wrap;
	}
	
	#mymove ul
	{
		display: block;
	}
	
	#mymove ul li a
	{
		font-size: 4vw;
	}
	
	#mymove img
	{
		width: 100%;
		margin-top: 30vh;
		margin-bottom: 10vh;
	}
	
	#about
	{
		display: grid;
		height: auto;
		padding-bottom: 5%;
	}
	
	.box
	{
		width: 85%;
		margin: 2vh auto;
		height: auto;
	}
	
	.box p
	{
		font-size: 3.5vw;
		height: auto;
	}
	
	.box img
	{
		margin: 3vh 0;
	}
	
	#lastmove 
	{
		max-height: 40vh;
	}
	
	#lastmove h2
	{
		font-size: 12vw;
		left: 60vw;
	}
	
	#lastmove img
	{
		width: 100%;
	}
	
	#finalcontact
	{
		max-height: 40vh;
	}
	
	#finalcontact h2
	{
		font-size: 12vw;
		left: 60vw;
	}
	
	#finalcontact img
	{
		width: 100%;
	}
	
	#portofolio
	{
		display: grid;
		height: auto;
	}
	
	.cards
	{
		width: 85%;
		margin: 0 auto;
		height: auto;
	}
	
	.cards img
	{
		margin: 3vh 0;
	}
	
	#formulary
	{
		width: 100%;
		height: auto;
	}
	
	#cont-form
	{
		margin-left: 0;
		margin-bottom: 5vh;
	}
	
	#cont-form form
	{
		width: 100%;
	}
	
	#cont-form form input
	{
		width: 48vw;
		height: 3vh;
		padding: 2px;
		font-size: 3vw;
	}
	
	#cont-form form textarea
	{
		max-width: 48vw;
		font-size: 3vw;
	}	
	
	#cont-form form table 
	{
		width: 95%;
		margin: 0 auto;
	}
		
	#cont-form form table td
	{
		width: 40%;
	}
	
	#cont-form form table td strong
	{
		font-size: 3vw;
	}
	
	#cont-form form table td label
	{
		font-size: 3vw;
	}
	
	#cont-form form table td > .submit
	{
		width: 50vw;
		padding: 2px;
		font-size: 3vw;
	}
	
	#made
	{
		font-size: 4vw;
		margin-bottom: 2vh;
	}
}
