@charset "UTF-8";

:root {
	--main_color: rgb(255 190 0);
	--dark-color: #000;
	--light-color: #f4f4f4;
}

/* Global */

@media all and (max-width: 900px) {
	html {
		font-size: 90%;
	}
}

@media (max-width: 600px) {
	html {
		font-size: 85%;
	}
}

@media (max-width: 380px) {
	html {
		font-size: 75%;
	}
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: "Open Sans Condensed", sans-serif;
	color: #333;
	line-height: 1.6;
}

ul {
	list-style-type: none;
}

a {
	text-decoration: none;
	color: #333;
}

h1,
h2,
h3 {
	line-height: 1.2;
	margin: 10px 0;
}

p {
	margin: 10px 0;
	font-size: 1.5rem;
}

img {
	width: 100%;
}

.sec-img {
	max-width: 50%;
	justify-self: flex-end;
}

@media all and (max-width: 500px) {
	.sec-img {
		max-width: 60%;
		justify-self: center;
	}
}

code,
pre {
	background: #333;
	color: #fff;
	padding: 10px;
}

.hidden {
	visibility: hidden;
	height: 0;
}

/* Navbar */
.navbar {
	position: relative;
	background-color: #000;
	color: #fff;
	width: 100vw;
	height: 70px;
	box-shadow: rgba(0, 0, 0, 0.5) 0 4px 10px;
	z-index: 1111;
	animation: slideInFromTop 0.5s ease-in;
}

.navbar ul {
	display: flex;
}

@media all and (max-width: 800px) {
	.navbar ul {
		flex-direction: column;
	}
}

.navbar a {
	color: #fff;
	padding: 10px;
	margin: 0 5px;
}

#akt {
	color: var(--main_color);
}

.navbar a:hover {
	opacity: 0.8;
}

.navbar .flex {
	justify-content: space-between;
}

.logocont {
	display: flex;
	justify-content: flex-start;
	gap: 5px;
}

.logo {
	display: flex;
	height: 100%;
	margin-right: 1rem;
	z-index: 111;
}

.logo-text {
	justify-self: flex-start;
}

@media all and (max-width: 374px) {
	.logo-text {
		font-size: 1.7rem;
		align-self: center;
	}
}

.navbar .logo {
	padding: 0;
	margin: 0;
}

.menu-wrap {
	z-index: 222;
	position: fixed;
}

/* Showcase */
.showcase {
	height: 500px;
	background-color: var(--main_color);
	color: #fff;
	position: relative;
	transform: skew(0deg, -4deg) translateY(-150px);
	box-shadow: rgba(0, 0, 0, 0.5) 0 4px 10px;
}

.UnSk {
	transform: skew(0deg, 4deg) translateY(50px);
}

.showcase h1 {
	font-size: 3.5rem;
}

.showcase p {
	margin: 20px 0;
}

.showcase .grid {
	overflow: visible;
	grid-template-columns: 55% auto;
	gap: 30px;
}

.showcase-text {
	animation: slideInFromLeft 1s ease-in;
}

.showcase-map {
	position: relative;
	top: 115px;
	width: 100%;
	max-width: 500px;
	z-index: 100;
	justify-self: flex-end;
	border-radius: 10px;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
	animation: slideInFromRight 1s ease-in;
	overflow: hidden;
	justify-content: center;
	line-height: 0;
}

/* Stats */
.stats {
	padding-top: 5px;
	animation: slideInFromBottom 1s ease-in;
}

.stats-heading {
	max-width: 500px;
	margin: auto;
}

.stats .grid h3 {
	font-size: 35px;
}

.stats .grid p {
	font-size: 1.2rem;
	font-weight: bold;
}

/* certificates */

.certificates h3 {
	padding: 0.5rem;
}

.certificates .flex {
	flex-wrap: wrap;
}

.certificates .card {
	text-align: center;
	margin: 18px 10px 40px;
	transition: transform 0.2s ease-in;
}

.certificates .card h4 {
	font-size: 20px;
	margin-bottom: 10px;
}

.certificates .card:hover {
	transform: translateY(-15px);
}

/* Features */
.features-head img,
.docs-head img {
	width: 200px;
	justify-self: flex-end;
}

.features-sub-head img {
	width: 300px;
	justify-self: flex-end;
}

.features-network .card > i {
	margin-right: 20px;
}

.features-network .grid {
	padding: 10px 0;
}

.features-network .grid > *:first-child {
	grid-column: 1 / span 2;
}

.features-security .card > i {
	margin-right: 20px;
}

.features-security .grid {
	padding: 20px;
}

/* Docs */
.docs-security h3 {
	margin: 20px 0;
}

@media all and (max-width: 800px) {
	.navbar nav {
		display: none;
	}
}

/* Footer */
.footer .social .social-link a {
	margin-left: 15px;
}

.footer .social a:hover {
	color: rgb(0, 144, 254);
}

.social {
	justify-self: flex-end;
	text-align: right;
}

/* Animations */
@keyframes slideInFromLeft {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(0);
	}
}

@keyframes slideInFromRight {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(0);
	}
}

@keyframes slideInFromTop {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateX(0);
	}
}

@keyframes slideInFromBottom {
	0% {
		transform: translateY(100%);
	}

	100% {
		transform: translateX(0);
	}
}

/* Tablets and under */
@media all and (max-width: 800px) {
	.grid,
	.showcase .grid,
	.stats .grid,
	.cloud .grid,
	.features-network .grid,
	.features-security .grid,
	.features-sub-head .grid,
	.features-head .grid,
	.grid {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
	}

	.showcase {
		height: auto;
	}

	.showcase-text {
		text-align: center;
		margin-top: 100px;
		animation: slideInFromTop 1s ease-in;
	}

	.showcase-map {
		justify-self: center;
		margin: auto;
		animation: slideInFromBottom 1s ease-in;
	}

	.features-head,
	.features-sub-head,
	.docs-head {
		text-align: center;
	}

	.features-head img,
	.features-sub-head img,
	.docs-head img {
		justify-self: center;
	}

	.features-network .grid > *:first-child,
	.features-network .grid > *:nth-child(2) {
		grid-column: 1;
	}
}

/* Mobile */
@media (max-width: 800px) {
	.navbar ul {
		padding: 10px;
		background-color: rgba(0, 0, 0, 0.6);
		border-radius: 10px;
	}

	.showcase-map {
		width: 90vw;
		top: -10px;
	}
}

.back-to-top {
	background: none;
	margin: 0;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 10%;
	height: 10%;
	z-index: 1111;
	display: none;
	text-decoration: none;
	color: #8aff04;
	background-color: transparent;
	border: 10px;
	font-size: 250%;
	opacity: 60%;
}

@media (hover: hover) {
	.back-to-top:hover {
		opacity: 1;
		transition: opacity 0.4s ease-in-out;
	}
}

@media all and (max-width: 500px) {
	.back-to-top {
		right: 20px;
	}
}

@media (max-width: 600px) {
	#contact-img {
		width: 100px;
	}
}

.licence {
	text-align: center;
	color: #a7a7a7;
}

.licence p {
	font-size: 1rem;
}
