/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

/*************************
 * Kornicker theme styles *
 *************************/ 
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	max-width: 100vw;
	overflow-x: hidden;
	font-size: 62.5%;
}
body {
	color: #222;
	background-color: #cdcdcb;
	font-family: "Times New Roman", Times, serif;
	font-weight: 300;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 1em;
	font-weight: 700;
	line-height: 1.3;
}
p {
	margin: 0 0 1.382em;
	font-size: 1em;
	line-height: 1.4;
}
ul {
	margin: 0 0 1.382em;
}
a {
	outline: transparent solid 0px;
}
strong {
	font-weight: 700;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
.nowrap {
	white-space: nowrap;
}

/*
 * Structure
 */
.container {
	width: 100%;
}
main {
	padding: 80px 20px;
}
.words {
	position: relative;
}
main section {
	position: relative;
}
main section:not(.contact) {
	margin: 0 0 80px;
}
main section:not(.contact)::after {
	content: '';
	position: absolute;
	bottom: -40px;
	width: 100px;
	height: 1px;
	background-color: #222;
}
#phone::after {
    content: '44 131 6040400';
}
footer {
	border-top: 1px solid #bfbfb9;
	padding: 15px 20px;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	background-color: #cdcdcb;
}

/*
 * Typography
 */
.logotype span {
	margin: 0 0 60px;
	display: block;
	font-family: "Fira Sans", sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 72px;
}
h1 {
	display: none;
}
p {
	font-size: 15px;
}
.contact p {
	font-family: "Courier New", Courier, monospace;
	font-size: 12px;
}
.contact em {
	opacity: 0.6;
}
.contact a {
	font-weight: 700;
}
footer p {
	margin: 0;
	font-size: 14px;
}

@media screen and (min-width: 768px) {
	body {
		background-color: #c6c6c0;
	}
	.container {
		width: 100%;
		position: fixed;
		bottom: 0;
		background-color: #cdcdcb;
	}
	.logotype {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	main {
		margin: 50px auto 80px;
		padding: 20px;
		width: 100%;
		max-width: 1800px;
		display: flex;
	}
	main > div:first-of-type {
		width: 40%;
	}
	main > div:nth-of-type(2) {
		width: 60%;
	}
	main section {
		max-width: 800px;
		margin: 0 0 80px;
	}
	main section.contact {
		margin-bottom: 0;
	}
	footer p {
		margin: 0 auto;
		max-width: 1200px;
	}
	.logotype span {
		margin: 0;
		font-size: 300px;
	}
	h1 {
		display: block;
		font-size: 28px;
	}
}
@media screen and (min-width: 992px) {
	.logotype span { font-size: 400px; }
}