@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;
	}

	#banner {
		width: 100%;
		height: 70%;
		background-image: url(../images/freza_wm.JPG);
		background-size: cover;
		background-position: center 40%;
		display: flex;
		flex-direction: column;
		justify-content: center;

		position: relative;
	}

	#banner h1 {
		font-family: "Montserrat";
		font-size: 40px;
		color: white;
		padding-left: 5%;
		z-index: 1;
	}

	#banner p {
		font-family: "Montserrat";
		font-size: 15px;
		margin-top: 40px;
		width: 80%;
		padding-left: 5%;
		z-index: 1;
		color: white;
	}

	.cover {
		position: absolute;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.771);
		background: linear-gradient(
			266deg,
			rgba(255, 255, 255, 0.167) 6%,
			rgba(7, 7, 7, 0.67) 85%
		);
	}

	#services {
		width: 100%;
		margin-top: 20%;
	}

	.cnc,
	.laser,
	.print,
	.optimus {
		width: 100%;
		/* height: 30%; */
		display: flex;
		flex-direction: column-reverse;
		display: none;
	}
	/*//////////// */
	.cnc {
		height: 1000px;
		display: flex;
	}
	.cnc .left {
		height: 40%;
	}

	.cnc .right {
		height: 60%;
	}
	/*//////////// */
	.laser {
		height: 400px;
		display: flex;
	}

	/* ///////////// */

	.print {
		height: 700px;
		display: flex;
	}

	.print .left {
		height: 40%;
	}

	.print .right {
		height: 60%;
	}
	/* ////////////// */

	.optimus {
		height: 400px;
		display: flex;
	}

	/* ///////////// */
	.left {
		width: 100%;
		height: 60%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.left img {
		width: 100%;
	}

	.laser .left img {
		height: 100%;
		width: auto;
	}

	.right {
		width: 100%;
		height: 40%;
		padding: 0 5%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.right h2 {
		font-family: "Montserrat";
		color: black;
		font-size: 30px;
	}

	.right h4 {
		font-family: "Montserrat";
		color: black;
		font-size: 20px;
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.right p {
		font-family: "Montserrat";
		color: black;
		font-size: 15px;
	}

	#footer {
		width: 100%;
		height: 50%;
		display: flex;
		flex-direction: row-reverse;
		margin-top: 10%;
		padding-bottom: 10%;
	}

	#footer .Fright {
		width: 50%;
		height: 100%;
		padding: 0 5%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-end;
	}

	.Fright li {
		font-family: "Montserrat";
		font-size: 15px;
		text-align: left;
		margin: 20px 0;
	}

	#footer .Fleft {
		width: 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
		padding: 0 5%;
	}

	#footer .Fleft img {
		width: 300px;
	}

	.Fleft h3 {
		font-family: "Montserrat";
		font-size: 25px;
		font-weight: 500;
		margin: 20px 0;
		margin-left: 0px;
	}

	.Fleft 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;
	}

	#banner {
		width: 100%;
		height: 100%;
		background-image: url(../images/freza_wm.JPG);
		background-size: cover;
		background-position: center 40%;
		display: flex;
		flex-direction: column;
		justify-content: center;

		position: relative;
	}

	#banner h1 {
		font-family: "Montserrat";
		font-size: 100px;
		color: white;
		padding-left: 5%;
		z-index: 1;
	}

	#banner p {
		font-family: "Montserrat";
		font-size: 25px;
		margin-top: 40px;
		width: 80%;
		padding-left: 5%;
		z-index: 1;
		color: white;
	}

	.cover {
		position: absolute;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.771);
		background: linear-gradient(
			266deg,
			rgba(255, 255, 255, 0.167) 6%,
			rgba(7, 7, 7, 0.67) 85%
		);
	}

	#services {
		width: 100%;
		margin-top: 20%;
	}

	.cnc,
	.laser,
	.print,
	.optimus {
		width: 100%;
		/* height: 30%; */
		display: flex;
		flex-direction: column-reverse;
		display: none;
	}
	/*//////////// */
	.cnc {
		height: 1200px;
		display: flex;
	}
	.cnc .left {
		height: 40%;
	}

	.cnc .right {
		height: 60%;
	}
	/*//////////// */
	.laser {
		height: 700px;
		display: flex;
	}

	/* ///////////// */

	.print {
		height: 1200px;
		display: flex;
	}

	.print .left {
		height: 40%;
	}

	.print .right {
		height: 60%;
	}
	/* ////////////// */

	.optimus {
		height: 800px;
		display: flex;
	}

	/* ///////////// */
	.left {
		width: 100%;
		height: 60%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.left img {
		width: 100%;
	}

	.laser .left img {
		height: 100%;
		width: auto;
	}

	.right {
		width: 100%;
		height: 40%;
		padding: 0 5%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.right h2 {
		font-family: "Montserrat";
		color: black;
		font-size: 50px;
	}

	.right h4 {
		font-family: "Montserrat";
		color: black;
		font-size: 40px;
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.right p {
		font-family: "Montserrat";
		color: black;
		font-size: 25px;
	}

	#footer {
		width: 100%;
		height: 50%;
		display: flex;
		flex-direction: row-reverse;
		margin-top: 10%;
		padding-bottom: 10%;
	}

	#footer .Fright {
		width: 50%;
		height: 100%;
		padding: 0 5%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-end;
	}

	.Fright li {
		font-family: "Montserrat";
		font-size: 25px;
		text-align: left;
		margin: 20px 0;
	}

	#footer .Fleft {
		width: 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
		padding: 0 5%;
	}

	#footer .Fleft img {
		width: 400px;
	}

	.Fleft h3 {
		font-family: "Montserrat";
		font-size: 45px;
		font-weight: 500;
		margin: 20px 0;
		margin-left: 0px;
	}

	.Fleft p {
		font-family: "Montserrat";
		font-size: 25px;
		margin-left: 0px;
	}

	.Fneeded {
		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;
	}

	#banner {
		width: 100%;
		height: 70%;
		background-image: url(../images/freza_wm.JPG);
		background-size: cover;
		background-position: center 40%;
		display: flex;
		flex-direction: column;
		justify-content: center;

		position: relative;
	}

	#banner h1 {
		font-family: "Montserrat";
		font-size: 60px;
		color: white;
		padding-left: 5%;
		z-index: 1;
	}

	#banner p {
		font-family: "Montserrat";
		font-size: 15px;
		margin-top: 40px;
		padding-left: 5%;
		z-index: 1;
		color: white;
	}

	.cover {
		position: absolute;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.771);
		background: linear-gradient(
			266deg,
			rgba(255, 255, 255, 0.167) 6%,
			rgba(7, 7, 7, 0.67) 85%
		);
	}

	#services {
		width: 100%;
		height: 250%;
	}

	.cnc,
	.laser,
	.print,
	.optimus {
		width: 100%;
		height: 25%;
		display: flex;
		flex-direction: row;
	}

	.cnc .right img {
		width: 50%;
	}

	.left {
		width: 50%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.left img {
		width: 80%;
	}

	.laser .left img {
		height: 100%;
		width: auto;
	}

	.right {
		width: 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.right h2 {
		font-family: "Montserrat";
		color: black;
		font-size: 30px;
	}

	.right h4 {
		font-family: "Montserrat";
		color: black;
		font-size: 20px;
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.right p {
		font-family: "Montserrat";
		color: black;
		font-size: 15px;
	}

	#footer {
		width: 100%;
		height: 70%;
		display: flex;
		flex-direction: row-reverse;
		margin-top: 5%;
	}

	#footer .Fright {
		width: 50%;
		height: 100%;
		padding: 0 5%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
	}

	.Fright li {
		font-family: "Montserrat";
		font-size: 15px;
		text-align: right;
		margin: 20px 0;
	}

	#footer .Fleft {
		width: 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding: 0 5%;
	}

	#footer .Fleft img {
		width: 300px;
	}

	.Fleft h3 {
		font-family: "Montserrat";
		font-size: 25px;
		font-weight: 500;
		margin: 20px 0;
		margin-left: 50px;
	}

	.Fleft 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;
	}

	.mobileMenu,
	.hamburger {
		display: none;
	}

	#banner {
		width: 100%;
		height: 70%;
		background-image: url(../images/freza_wm.JPG);
		background-size: cover;
		background-position: center 40%;
		display: flex;
		flex-direction: column;
		justify-content: center;

		position: relative;
	}

	#banner h1 {
		font-family: "Montserrat";
		font-size: 80px;
		font-weight: 500;
		color: white;
		padding-left: 5%;
		z-index: 1;
	}

	#banner p {
		font-family: "Montserrat";
		font-size: 18px;
		margin-top: 40px;
		padding-left: 5%;
		z-index: 1;
		color: white;
	}

	.cover {
		position: absolute;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.771);
		background: linear-gradient(
			266deg,
			rgba(255, 255, 255, 0.167) 6%,
			rgba(7, 7, 7, 0.67) 85%
		);
	}

	#services {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		margin-top: 10%;
	}

	.cnc,
	.laser,
	.print,
	.optimus {
		width: 100%;
		min-height: 500px;
		display: flex;
		flex-direction: row;
	}

	.cnc .right img {
		width: 50%;
	}

	.left {
		width: 50%;
		min-height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.left img {
		width: 80%;
	}

	.laser .left img {
		max-height: 400px;
		width: auto;
	}

	.right {
		width: 50%;
		min-height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.right h2 {
		font-family: "Montserrat";
		color: black;
		font-size: 40px;
		font-weight: 500;
	}

	.right h4 {
		font-family: "Montserrat";
		color: black;
		font-size: 20px;
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.right p {
		font-family: "Montserrat";
		color: black;
		font-size: 18px;
	}

	#footer {
		width: 100%;
		height: 70%;
		display: flex;
		flex-direction: row-reverse;
		margin-top: 5%;
	}

	#footer .Fright {
		width: 50%;
		height: 100%;
		padding: 0 5%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
	}

	.Fright li {
		font-family: "Montserrat";
		font-size: 15px;
		text-align: right;
		margin: 20px 0;
	}

	#footer .Fleft {
		width: 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding: 0 5%;
	}

	#footer .Fleft img {
		width: 300px;
	}

	.Fleft h3 {
		font-family: "Montserrat";
		font-size: 25px;
		font-weight: 500;
		margin: 20px 0;
		margin-left: 50px;
	}

	.Fleft p {
		font-family: "Montserrat";
		font-size: 15px;
		margin-left: 50px;
	}

	.needed {
		margin-bottom: 30px;
	}
}
