/* Fonts, Colours and Spacing */
@font-face {
	font-family: "Oxygen";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../webfonts/oxygen-400.ttf") format("truetype");
}

@font-face {
	font-family: "Oxygen";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../webfonts/oxygen-700.ttf") format("truetype");
}

:root {
	--font-main: "Oxygen", sans-serif;

	--color-base: #272727;
	--color-contrast-1: #f9f9f9;
	--color-contrast-2: #d3d3d3;
	--color-accent-blue: #001f7a;
	--color-accent-gray: #777777;
	--color-accent-orange: #f47920;

	--container-max-width: 1280px;
	--spacing-10: 1rem;
	--spacing-15: 1.5rem;
	--spacing-20: 2rem;
	--spacing-30: 3rem;
	--spacing-50: 10rem;
	--spacing-60: 15rem;
	--spacing-70: 23rem;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--color-base);
	color: var(--color-contrast-2);
	font-family: var(--font-main);
	font-size: var(--spacing-10);
	-webkit-font-smoothing: antialiased;
}


/* Background */
.site_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	overflow: hidden;
}

.site_bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* Main Wrapper */
.site-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-main {
	flex: 1;
}

.container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 20px;
}


.text-orange {
	color: var(--color-accent-orange);
}

.text-blue {
	color: var(--color-accent-blue);
}

.justify-right {
	text-align: right;
}


/* Header */
.site-header {
	padding: 20px 0;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 15px;
}

.site-logo {
	width: 70px;
	height: 70px;
	display: block;
}

.site-title {
	color: var(--color-contrast-1);
	font-size: clamp(1rem, 2.5vw, 2rem);
	font-weight: 400;
}

.site-title a {
	text-decoration: none;
	color: inherit;
}

.header-phone-link {
	color: var(--color-accent-orange);
	text-decoration: none;
	font-size: var(--spacing-20);
	font-weight: 700;
}


/* Spacers */
.spacer-xxl {
	padding: var(--spacing-70) 0;
}

.spacer-xl {
	padding: var(--spacing-60) 0;
}


/* main content */
.main-content {
	background: var(--color-contrast-1);
}

.main-content-inner {
	color: var(--color-base);
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.main-content-header {
	width: 100%;
	padding: 50px 80px;
}

.main-content-header h1 {
	font-size: var(--spacing-30);
}

.col-left {
	flex: 1;
	padding: 30px 80px;
	text-align: justify;
}

.about-text {
	padding-bottom: 30px;
	line-height: 2.0;
}

.col-right {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 10px;
	padding: 30px 80px;
}

.col-right .text-orange {
	width: 100%;
	padding-left: 30px;
}

.list-col-left,
.list-col-right {
	flex: 1;
	padding: 0 30px;
	line-height: 2.5;
}


/* Image Slider */
.slider {
	width: 100%;
	height: 650px;
	position: relative;
	background-color: var(--color-base);
}

.slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;

	animation-name: fade;
	animation-duration: 15s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

.slider img:nth-child(1) {
	animation-delay: 0s;
}

.slider img:nth-child(2) {
	animation-delay: -10s;
}

.slider img:nth-child(3) {
	animation-delay: -5s;
}

@keyframes fade {
	0%,
	23.33% {
		opacity: 1;
	}

	33.33%,
	90% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/* bottom cols */
.bottom-cols {
	color: var(--color-base);
	background: var(--color-contrast-1);
	line-height: 1.5;
}

.bottom-cols-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.bottom-content-header {
	width: 100%;
	padding: 50px 80px;
}

.bottom-content-header h1 {
	font-size: var(--spacing-30);
}

.bottom-col-left,
.bottom-col-middle,
.bottom-col-right {
	flex: 1;
	padding: 30px 80px;
}

.bottom-col-left img,
.bottom-col-middle img,
.bottom-col-right img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}


.service-square {
	width: 150px;
	height: 150px;
	position: relative;
	margin: 20px auto 40px auto;
	isolation: isolate;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-square img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
	position: relative;
	z-index: 2;
	margin-bottom: 0;
}

.service-square::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #404040;
	border-radius: 20px;
	z-index: 1;
}

.service-square::after {
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	width: 90%;
	height: 90%;
	border: 7px solid var(--color-accent-orange);
	border-radius: 20px;
	z-index: 0;
	pointer-events: none;
}


.service-heading {
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
	padding-bottom: 20px;
	color: var(--color-accent-blue);
}


/* Footer */
.site-footer {
	background-color: #404040;
	padding: var(--spacing-30) 0;
}

.footer-content {
	text-align: right;
}

.hosting-credit a {
	text-decoration: none;
}

.giga {
	color: #3366ff;
	font-weight: 700;
}

.tech {
	color: var(--color-contrast-2);
}