@import url(_config.css);

body {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100vh;
	background: url(/assets/img/mainbg.jpg) center no-repeat;
	background-size: cover;
}

.wrapper {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.logo-image {
	mix-blend-mode: darken;
}

h1 {
	font-weight: 300;
	font-size: var(--h2);
}

.langs a {
	border-radius: 50%;
	border: 2px  solid white;
	transition: all .2s;
}

.langs a:hover {
	opacity: .7;
}

.first-box {
	width: 100%;
	height: 200px;
	background: #333;
	border-radius: 12px;
	box-shadow: inset 0 0 100px black;
	padding: 30px 60px;
	text-decoration: none;
	transition: all .3s ease-out;
	margin-top: 120px;
}

.first-box:hover {
	filter: none !important;
	transform: translateY(-2px);
	box-shadow: inset 0 0 100px black, 0 15px 30px -10px hsl(0, 0%, 0%, .3);
}

.first-box span {
	color: white;
	font-size: 1.5rem;
	max-width: 30%;
	line-height: 1.3;
}

.first-box span strong {
	color: var(--primary);
}

.client {
	margin-bottom: 70px;
}

.first-box .more {
	transition: all .3s ease-out;
}

.first-box:hover .more {
	transform: translateX(10px);
}

.md\:w-6-12:first-child .client {margin-bottom: 80px;}





@media screen and (max-width: 1536px) {
	.wrapper {
		padding: 30px;
		box-sizing: border-box;
	}
}

@media screen and (max-width: 1199px) {
	.wrapper {
		padding: 30px;
		box-sizing: border-box;
		height: auto;
	}

	h1 {
		margin-top: 10px;
		margin-bottom: 15px;
		font-size: var(--h3);
	}

	.first-box {
		padding: 30px;
	}

	.md\:w-6-12 .client {
		margin-right: -25px;
	}

	.mt-100 {
		margin-top: 30px !important;
	}
}


@media screen and (max-width: 1020px) {
	.md\:w-6-12 .client, .md\:w-6-12:first-child .client {
		margin-right: -25px;
		height: 220px;
		margin-bottom: 20px;
	}

	.first-box {margin-top: 30px;}
}


@media screen and (max-width: 520px) {
	h1 {
		font-size: var(--h4);
	}

	.container {
		width: 100%;
	}

	.md\:w-6-12 .client {display: none;}

	.first-box {height: auto;}
}


@media screen and (max-width: 414px) {
	.first-box span {
		color: white;
		font-size: 1.1rem;
		max-width: 60%;
		line-height: 1.3;
	}
}