

/* ------------------- Google Fonts -------------------  */

/* oxygen-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oxygen';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/oxygen-v16-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* oxygen-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oxygen';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/oxygen-v16-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}




/* ------------------- Basic -------------------  */

:root {
	--tc-grey: #363932;
	--tc-red: #e30613;
	--tc-blue: #0066ab;
	--tc-green: #008f3d;
	--tc-orange: #ee7203;
}


body {
	background-color: var(--tc-grey);
	color: white;
	font-family: 'Oxygen';
	font-size: 13px;
	position: relative;
	overflow-x: hidden;
	line-height: 1.5;
}

p:last-of-type{
	margin-bottom: 0;
}

.effect, a, img{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}



/* ------------------- Headlines -------------------  */

h1{
	font-weight: 700;
	font-size: 40px;
	line-height: 1; 
	margin-bottom: 50px;
}



/* ------------------- Colors -------------------  */

.white{ color: white; }
.black{ color: black; }

.red-bg{ background-color: var(--tc-red); }
.green-bg{ background-color: var(--tc-green); }
.blue-bg{ background-color: var(--tc-blue); }
.grey-bg{ background-color: var(--tc-grey); }





/* ------------------- Elements -------------------  */

.bg-bubble {
	position: fixed;
	top: 0;
	right: 0;

	width: 60vw;
	height: 100vh;

	overflow: hidden;
    z-index: -5;
	transform: scaleX(-1);
	transform-origin: center;
}

.bg-bubble::before {
	content: "";
	position: absolute;

	top: 50%;
	right: 0;

	width: 1700px;
	height: 1700px;

	border-radius: 50%;

	background-image: url(../img/Qualitas-Werkzeuge.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 60%;

	transform: translateY(-50%) scaleX(-1);
}

.qualitas-logo{
	width: 260px;
	margin: 50px 0 70px 35px;
}

.text-block{
	padding-left: 100px;
	padding-right: 20px;
}

.text-block span{
	font-size: 25px;
	line-height: 1.2;
}

.footer-bar{
	padding-left: 100px;
	padding-top: 100px;
	padding-bottom: 100px;
	font-size: 11px;
}

.footer-bar a{
	opacity: 0.5;
	text-decoration: underline;
	margin-right: 15px;
	color: white;
}

.footer-bar a:hover{
	opacity: 1;
	text-decoration: none;
}

.link-section{
	padding-right: 100px;
}

.link-box {
	color: inherit;
	position: relative;
	margin-bottom: 30px;
}

.link-box:hover {
	text-decoration: none;
	transform: scale(1.05);
}

.link-box-inner {
    position: relative;
    background-color: white;
    padding: 30px 25px 50px 25px;
    height: 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.link-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    align-items: center;
}

.link-box .logo {
	height: 22px;
	max-width: 100%;
}

.link-box p {
	padding-left: 37px;
	padding-top: 17px;
	padding-bottom: 23px;
	margin-bottom: 0;
}

.link-bar img {
	width: 15px;
	margin-right: 12px;
}

#werk-pro .logo{
	height: 38px;
}

/*
#werk-pro .link-box-inner {
    flex-direction: row;
    display: flex;
}
*/















/* ------------------------------------------------ MOBILE ------------------------------------------------ */

@media screen and (max-width: 767.98px) { 
	
	.container{
		padding-left: 40px;
		padding-right: 40px;
	}
	
	.link-section {
		padding-right: 25px;
		padding-left: 25px;
		margin-top: 80px;
	}
	
	.text-block {
		padding-left: 25px;
		padding-right: 25px;
	}
	
	.qualitas-logo {
		margin-left: 25px;
	}
	
    .bg-bubble {
        position: absolute;
        height: 800px;
        margin-top: -200px;
    }
	
	.bg-bubble::before {
		width: 800px;
		height: 800px;
	}
	
	.footer-bar {
		padding-left: 25px;
		padding-top: 48px;
		padding-bottom: 50px;
	}
	
	#werk-pro .link-bar {
		border: 1px solid white;
	}
	
}
/* ------------------------------------------------ Extra small devices ------------------------------------------------ */

@media screen and (max-width: 575.98px) { }











/* ------------------------------------------------ TABLET ------------------------------------------------ */

@media (min-width: 768px) and (max-width: 991.98px) { 
	
	.text-block {
		padding-left: 25px;
	}
	
	.link-section {
		padding-right: 50px;
		padding-left: 50px;
	}
	
	#werk-pro .link-bar {
		border: 1px solid white;
	}
	
}






/* ------------------------------------------------ Small Computers ------------------------------------------------ */

@media (min-width: 992px) and (max-width: 1199.98px) { 
	
	.text-block {
		padding-left: 25px;
	}	
	
}





