* {
    margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	font-size: 100%;
	box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

:root {
	--accent-primary: #00EBEB;
	--light-primary: #CCFAFB;
	--accent-grafit: #545454;
	--bg: #CCFAFB;
}

.wrap {
	width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

.wrap-s {
	width: 80%;
    max-width: 650px;
    margin: 0 auto;
}

html {
	-ms-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    overflow-x: hidden;
    height: 100%;
}

body {
    font: 400 1.2rem 'Lexend', sans-serif;
    color: #111111;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    height: 100%;
}

.main-content {
	height: 100%;
	height: 100vh;
	position: relative;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

h1 {
	line-height: 1.1;
	font-size: 4.4rem;
	/*min-height: 0vw;
    font-size: clamp(2.4rem, 6vw, 4.5rem);*/
	font-weight: 500;
	color: var(--accent-grafit);
	letter-spacing: -0.1rem;
	margin-bottom: 1.4rem;
	hyphens: auto;
}

.ingress {
	font-weight: 500;
	line-height: 1.2;
	font-size: 2.2rem;
	color: var(--accent-grafit);
	letter-spacing: -0.05rem;
	margin-bottom: 2.5rem;
}

p {
	line-height: 1.4;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 2rem 5%;
	z-index: 2;
}

.main-logo {
	width: 180px;
}

ul.service {
	font-weight: 500;
	color: var(--accent-grafit);
	list-style-type: none;
	font-size: 1.3rem;
}

ul.service li + li {
	margin-left: 2rem;
}

ul.service li:before {
	content: "";
	height: 14px;
	width: 14px;
	background: var(--accent-grafit);
	border-radius: 50%;
	display: inline-block;
	margin-right: 0.5rem;
}

img {
    max-width: 100%;
    vertical-align: bottom; 
}

.content {
	width: 60%;
 	flex-direction: column;
 	align-items: center;
    justify-content: center;
    padding: 13rem 0 10rem;
    position: relative;
    overflow: hidden;
}

.content .wrap-s {
	position: relative;
    top: -4rem;
    z-index: 1;
}

.symbol-header {
	position: fixed;
	width: 450px;
	top: -225px;
    right: -225px;
}

.symbol-footer {
	position: fixed;
	width: 600px;
	bottom: -250px;
	left: -250px;
}

.content-image {
	width: 40%;
}

.content-image img {
	-o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center left;
}

.contact {
	width: 100%;
    z-index: 1;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 2rem 5%;
    justify-content: flex-end;
}

.contact a {
	text-decoration: none;
	color: #111111;
}

.contact a img {
	width: 30px;
	vertical-align: middle;
    position: relative;
    top: -2px;
    margin-right: 0.3rem;
}

.contact a:hover {
	text-decoration: underline;
}

.contact div + div {
	margin-left: 2rem;
}


#splide {
	overflow: hidden;
	position: absolute;
	z-index: 3;
	top: 0;
	left: 1rem;
}

#splide ul li img {
	width: 16px;
}


@media only all and (max-width: 991px) {
	body {
		height: auto;
	}
	.main-content {
		flex-direction: column;
		flex-wrap: nowrap;
		position: relative;
		height: 100%;
		overflow: hidden;
	}
	.contact {
		position: relative;
		margin-top: 4rem;
		justify-content: flex-start;
	}
	.content {
		padding: 8rem 0 1rem;
	}
	.content .wrap-s {
		top: 0;
		max-width: 100%;
	}
	.content, .content-image {
		width: 100%;
	}
	.symbol-header, .symbol-footer {
		position: absolute;
	}
	.wrap-s {
	width: 90%;
	}
	#splide {
		display: none;
	}
	header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	padding: 2rem 5%;
	z-index: 2;
}
}

@media only all and (max-width: 767px) {
	ul.service {
		flex-direction: column !important;
	}
	ul.service li + li {
	margin-left: 0;
	margin-top: 0.5rem;
	}
	h1 {
		font-size: 3.2rem;
	}
	.ingress {
		font-size: 1.6rem;
	}
	.contact {
		flex-direction: column;
	}
	.contact div + div {
		margin-left: 0;
		margin-top: 0.8rem;
	}
	.content-image {
		height: 500px;
	}
	.symbol-footer {
		bottom: -200px;
		left: -200px;
	}
	
}
@media only all and (max-width: 400px) {
	h1 {
		font-size: 3rem;
	}
}

 