@import url("https://fonts.cdnfonts.com/css/mont");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,80");
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
	background-color: white;
	scroll-behavior: smooth;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	color: black;
}

/*###########################################################################################  */
/*#########################################mobile############################################  */
/*###########################################################################################  */

@media screen and (max-width: 480px) {
	#header {
		width: 100%;
		height: 10%;
		background-color: white;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 0 5%;
		position: fixed;
		z-index: 2;
		transition: 0.2 ease;
	}

	#logo {
		width: 120px;
		height: 30px;
	}

	.hamburger {
		width: 30px;
		transition: 0.3s ease-out;
	}

	#header ul {
		display: none;
	}

	.mobileMenu {
		position: fixed;
		width: 100%;
		height: 100%;
		background-color: rgba(11, 11, 95, 0.801);
		z-index: 5;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transform: translateX(100%);
		opacity: 0;
		transition: 0.3s ease-out;
	}

	.mobileMenu p a {
		font-family: "Montserrat";
		color: white;
		font-size: 20px;
	}

	.mobileMenu p {
		margin: 10px 0;
	}

	.X {
		position: absolute;
		width: 30px;
		top: 30px;
		right: 30px;
	}

	#content {
		width: 100%;
		height: 150%;
		display: flex;
		flex-direction: column;
		padding-top: 30%;
	}

	.box-left {
		width: 95%;
		height: 70%;
		padding-left: 5%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.box-left h1 {
		font-family: "Montserrat";
		font-size: 40px;
		font-weight: 500;
		width: 80%;
		color: black;
	}

	.box-left h4 {
		font-family: "Montserrat";
		font-size: 25px;
		font-weight: 500;
		color: black;
		margin-bottom: 20px;
		margin-top: 40px;
		margin-left: 20px;
	}

	.box-left p {
		font-family: "Montserrat";
		font-size: 15px;
		font-weight: 500;
		color: black;
		margin-left: 20px;
	}

	.box-right {
		width: 95%;
		height: 30%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.box-right iframe {
		width: 70%;
		height: 80%;
	}

	#footer {
		width: 100%;
		height: 70%;
		display: flex;
		flex-direction: row-reverse;
		margin-top: 0%;
		padding-bottom: 10%;
	}

	#footer .right {
		width: 50%;
		height: 100%;
		padding: 0 5%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-end;
	}

	.right li {
		font-family: "Montserrat";
		font-size: 15px;
		text-align: left;
		margin: 20px 0;
	}

	#footer .left {
		width: 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
		padding: 0 5%;
	}

	#footer .left img {
		width: 180%;
	}

	.left h3 {
		font-family: "Montserrat";
		font-size: 25px;
		font-weight: 500;
		margin: 20px 0;
		margin-left: 0px;
	}

	.left p {
		font-family: "Montserrat";
		font-size: 15px;
		margin-left: 0px;
	}

	.needed {
		margin-bottom: 30px;
	}
}

/*###########################################################################################  */
/*#########################################tablet############################################  */
/*###########################################################################################  */

@media screen and (max-width: 1024px) and (min-width: 481px) {
	#header {
		width: 100%;
		height: 10%;
		background-color: white;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 0 5%;
		position: fixed;
		z-index: 2;
		transition: 0.2 ease;
	}

	#logo {
		width: 200px;
		height: 60px;
	}

	.hamburger {
		width: 30px;
		transition: 0.3s ease-out;
	}

	#header ul {
		display: none;
	}

	.mobileMenu {
		position: fixed;
		width: 100%;
		height: 100%;
		background-color: rgba(11, 11, 95, 0.801);
		z-index: 5;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transform: translateX(100%);
		opacity: 0;
		transition: 0.3s ease-out;
	}

	.mobileMenu p a {
		font-family: "Montserrat";
		color: white;
		font-size: 25px;
	}

	.mobileMenu p {
		margin: 20px 0;
	}

	.X {
		position: absolute;
		width: 30px;
		top: 30px;
		right: 30px;
	}

	#content {
		width: 100%;
		height: 120%;
		display: flex;
		flex-direction: column;
		padding-top: 30%;
	}

	.box-left {
		width: 100%;
		height: 70%;
		padding-left: 5%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.box-left h1 {
		font-family: "Montserrat";
		font-size: 80px;
		font-weight: 500;
		color: black;
	}

	.box-left h4 {
		font-family: "Montserrat";
		font-size: 40px;
		font-weight: 500;
		color: black;
		margin-bottom: 20px;
		margin-top: 40px;
		margin-left: 20px;
	}

	.box-left p {
		font-family: "Montserrat";
		font-size: 25px;
		font-weight: 500;
		color: black;
		margin-left: 20px;
	}

	.box-right {
		width: 100%;
		height: 30%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.box-right iframe {
		width: 80%;
		height: 80%;
	}

	#footer {
		width: 100%;
		height: 50%;
		display: flex;
		flex-direction: row-reverse;
		margin-top: 10%;
		padding-bottom: 10%;
	}

	#footer .right {
		width: 50%;
		height: 100%;
		padding: 0 5%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-end;
	}

	.right li {
		font-family: "Montserrat";
		font-size: 25px;
		text-align: left;
		margin: 20px 0;
	}

	#footer .left {
		width: 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
		padding: 0 5%;
	}

	#footer .left img {
		width: 400px;
	}

	.left h3 {
		font-family: "Montserrat";
		font-size: 45px;
		font-weight: 500;
		margin: 20px 0;
		margin-left: 0px;
	}

	.left p {
		font-family: "Montserrat";
		font-size: 25px;
		margin-left: 0px;
	}

	.needed {
		margin-bottom: 30px;
	}
}

/*###########################################################################################  */
/*#########################################notebook##########################################  */
/*###########################################################################################  */

@media screen and (min-width: 1025px) and (max-width: 1280px) {
	#header {
		width: 100%;
		height: 10%;
		background-color: white;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 0 5%;
		position: fixed;
		z-index: 2;
		transition: 0.2 ease;
	}

	#header img {
		width: 120px;
		height: 30px;
	}

	#header ul {
		width: 50%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}

	#header ul li {
		font-family: "Montserrat";
		font-size: 15px;
	}

	.mobileMenu,
	.hamburger {
		display: none;
	}

	#content {
		width: 100%;
		height: 120%;
		display: flex;
		flex-direction: row;
		padding-top: 10%;
	}

	.box-left {
		width: 50%;
		height: 100%;
		padding-left: 5%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.box-left h1 {
		font-family: "Montserrat";
		font-size: 60px;
		font-weight: 500;
		color: black;
	}

	.box-left h4 {
		font-family: "Montserrat";
		font-size: 25px;
		font-weight: 500;
		color: black;
		margin-bottom: 20px;
		margin-top: 40px;
		margin-left: 20px;
	}

	.box-left p {
		font-family: "Montserrat";
		font-size: 15px;
		font-weight: 500;
		color: black;
		margin-left: 20px;
	}

	.box-right {
		width: 50%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.box-right iframe {
		width: 80%;
		height: 80%;
	}

	#footer {
		width: 100%;
		height: 70%;
		display: flex;
		flex-direction: row-reverse;
	}

	#footer .right {
		width: 50%;
		height: 100%;
		padding: 0 5%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
	}

	.right li {
		font-family: "Montserrat";
		font-size: 15px;
		text-align: right;
		margin: 20px 0;
	}

	#footer .left {
		width: 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding: 0 5%;
	}

	#footer .left img {
		width: 300px;
	}

	.left h3 {
		font-family: "Montserrat";
		font-size: 25px;
		font-weight: 500;
		margin: 20px 0;
		margin-left: 50px;
	}

	.left p {
		font-family: "Montserrat";
		font-size: 15px;
		margin-left: 50px;
	}

	.needed {
		margin-bottom: 30px;
	}
}

/*###########################################################################################  */
/*#########################################pc##########################################  */
/*###########################################################################################  */

@media screen and (min-width: 1281px) {
	#header {
		width: 100%;
		height: 10%;
		background-color: white;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 0 5%;
		position: fixed;
		z-index: 2;
		transition: 0.2 ease;
	}

	#header img {
		width: 1ž0px;
		height: 50px;
	}

	#header ul {
		width: 50%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}

	#header ul li {
		font-family: "Montserrat";
		font-size: 18px;
	}

	.hamburger {
		display: none;
	}

	.mobileMenu {
		display: none;
	}

	#content {
		width: 100%;
		height: 150%;
		display: flex;
		flex-direction: row;
		padding-top: 10%;
	}

	.box-left {
		width: 50%;
		height: 100%;
		padding-left: 5%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.box-left h1 {
		font-family: "Montserrat";
		font-size: 80px;
		font-weight: 500;
		color: black;
	}

	.box-left h4 {
		font-family: "Montserrat";
		font-size: 30px;
		font-weight: 500;
		color: black;
		margin-bottom: 20px;
		margin-top: 40px;
		margin-left: 20px;
	}

	.box-left p {
		font-family: "Montserrat";
		font-size: 18px;
		font-weight: 500;
		color: black;
		margin-left: 20px;
	}

	.box-right {
		width: 50%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.box-right iframe {
		width: 80%;
		height: 80%;
	}

	#footer {
		width: 100%;
		height: 70%;
		display: flex;
		flex-direction: row-reverse;
	}

	#footer .right {
		width: 50%;
		height: 100%;
		padding: 0 5%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
	}

	.right li {
		font-family: "Montserrat";
		font-size: 15px;
		text-align: right;
		margin: 20px 0;
	}

	#footer .left {
		width: 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding: 0 5%;
	}

	#footer .left img {
		width: 300px;
	}

	.left h3 {
		font-family: "Montserrat";
		font-size: 25px;
		font-weight: 500;
		margin: 20px 0;
		margin-left: 50px;
	}

	.left p {
		font-family: "Montserrat";
		font-size: 15px;
		margin-left: 50px;
	}

	.needed {
		margin-bottom: 30px;
	}

	#footer {
		width: 100%;
		height: 40%;
		display: flex;
		flex-direction: row-reverse;
		margin-top: 0%;
	}

	#footer .right {
		width: 50%;
		height: 100%;
		padding: 0 5%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
	}

	.right li {
		font-family: "Montserrat";
		font-size: 15px;
		text-align: right;
		margin: 20px 0;
	}

	#footer .left {
		width: 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding: 0 5%;
	}

	#footer .left img {
		width: 300px;
	}

	.left h3 {
		font-family: "Montserrat";
		font-size: 25px;
		font-weight: 500;
		margin: 20px 0;
		margin-left: 50px;
	}

	.left p {
		font-family: "Montserrat";
		font-size: 15px;
		margin-left: 50px;
	}

	.needed {
		margin-bottom: 30px;
	}
}
