html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}

* {
  margin: 0;
  padding: 0;
}

*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  	font-size: 100%;
	}

html * {
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
	}

:root {
  --animate-delay: 0.5s;
}

html,body{
    height: 100%;
}

body{
    font-size: 18px;
	line-height: 1.6875em;
    font-family: "museo-sans",sans-serif;
	font-weight: 300;
	font-style: normal;
  	color: #000000;
    background-size: 100%;
}

h1{
    font-family: "futura-pt",sans-serif;
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 107px;
    max-width: 100%;
    width: 750px;
    text-align: center;
    margin: 0 auto;
}

h2{
    font-size: 36px;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 40px;
}

ul{
    font-size: 15px;
}

li{
	padding: 0 0 0 30px;
	margin: 0;
	position: relative;
}

li:before{
	font-family: 'Font Awesome 6 Pro';
	content: '\f061';
	font-weight: 300;
	position: absolute;
	left: 0;
}

strong{
    font-weight: 700;
}

.hero{
    padding-top: 55px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: url('/assets/images/back-desktop.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.logo{
    text-align: center;
}

.logo svg{
	width: 265px;
}

.hero-buttons{
    padding: 30px 0;
    background: rgba(255,255,266,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons button{
    margin: 0 6px;
}

.contact-us-left a.btn,
.btn{
    background: #000;
    color: #fff;
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 160px;
    border: 0;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-us-left a.btn:hover,
.btn:hover{
    background: #222;
}

.our-reputation,
.our-requirements,
.contact-us-left{
    padding: 70px 0;
}

ul,
.our-reputation p{
    column-count: 2;
}

.our-requirements{
    background: #000;
    color: #fff;
}

.container{
    max-width: 100%;
    width: 915px;
    margin: 0 auto;
}

.contact-us{
	display: flex;
}

.contact-us-left,
.contact-us-right{
	width: 50%;
}

.contact-us-left{
	display: flex;
	justify-content: flex-end;
}

.contact-us-left-inner{
	width: 462px;
	max-width: 100%;
}

.contact-us-left p{
    margin-bottom: 30px;
}

.contact-us-left a{
    color: #000;
    text-decoration: none;
	display: inline-block;
	position: relative;
}

.contact-us-left p a:after {
	background: none repeat scroll 0 0 transparent;
	bottom: 0;
	content: "";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	background: #000;
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
	width: 0;
}
.contact-us-left p a:hover:after {
	width: 100%;
	left: 0;
}

.contact-us-right{
	background: #333;
}

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

	.our-reputation,
	.our-requirements{
		padding-left: 75px;
		padding-right: 75px;
	}

	.contact-us-left{
		padding-left: 75px;
	}

}

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

	ul,
	.our-reputation p{
	    column-count: 1;
	}

	.contact-us {
		flex-direction: column;
	}

	.contact-us-left {
		padding-left: 75px;
		padding-right: 75px;
		width: 100%;
	}

	.contact-us-left-inner {
		width: 100%;
	}

	.contact-us-right{
		width: 100%;
		height: 480px;
	}

}

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

	body{
	    font-size: 13px;
	}

	h1{
	    font-size: 50px;
		width: 300px;
	}

	h2 {
		font-size: 21px;
		margin-bottom: 20px;
	}

	.logo svg{
		width: 140px;
		margin-bottom: 65px;
	}

	.our-reputation, .our-requirements, .contact-us-left {
		padding: 45px 40px;
	}

	.contact-us-left p {
		margin-bottom: 20px;
	}

	.contact-us-right{
		height: 240px;
	}

	.hero-buttons {
		flex-direction: column;
		margin-top: auto;
	}

	.hero-buttons button:first-of-type {
		margin-bottom: 17px;
	}

	.hero {
		justify-content: flex-start;
		background-image: url('/assets/images/back-mobile.jpg');
	}

}
