*,
*::after,
*::before {
	box-sizing: border-box;
	position: relative;
}

body {
	--color-text: #1d1d1b;
    --color-bg: #ffffff;
	--alt-bg: #dbdbdb;
    --color-link: #1d1d1b;
    --color-link-hover: #1d1d1b;
	font-family: muli, sans-serif;
	font-weight: 400;
	font-style: normal;
	min-height: 100vh;
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-size: 21px;
	line-height: 1.7;
	background-image: url(/img/bg.png);
	background-size: cover;
	background-repeat: no-repeat;
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
	display: block;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
}

img {
	max-width: 100%;
	height: auto;
}

img.ola {
	max-height: 10vh;
	border-radius: 50%;
	margin: 20px 0;
}

i {
	font-family: muli, sans-serif;
	font-weight: 400;
	font-style: italic;
}

b {
	font-family: muli, sans-serif;
	font-weight: 800;
	font-style: normal;
}

h1, h2, h3 {
	font-family: baskerville-display-pt, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 36px;
	line-height: 1.2;
	margin: 0;
}

h1 i, h2 i, h3 i {
	font-family: baskerville-display-pt, serif;
	font-weight: 400;
	font-style: italic;
}

h1 b, h2 b, h3 b {
	font-family: baskerville-display-pt, serif;
	font-weight: 700;
	font-style: italic;
}

.block {
	max-width: 1200px;
	margin: 0 auto;
}

span {
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-size: 13px;
    margin: 20px 0 0 0;
}

section {
	padding: 40px 0;
}

ul {
	padding: 0;
}

ul li {
	list-style-type: none;
}

.right {
	text-align: right;
}

.grid {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
	column-gap: 50px;
	row-gap: 50px;
}

.grid-3 {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
	column-gap: 50px;
	row-gap: 50px;
}

.page-info .block {
	font-size: 14px;
	padding: 10px 0;
	border-top: 1px solid var(--color-text);
}

.header {
	padding: 40px 0 0 0;
}

.newisgoing {
	font-family: proxima-sera, sans-serif;
	font-weight: 600;
	font-style: italic;
	text-align: center;
	font-size: 20px;
}

@media screen and (max-width: 1300px) {
	.block {
		max-width: calc(100% - 100px);
	}
}

@media screen and (max-width: 900px) {
	section {
		padding: 40px 0 0 0;
	}
	.block {
		text-align: center;
	}
	.grid, .grid-3 {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		column-gap: 50px;
		row-gap: 50px;
	}
	.right {
		text-align: center;
	}

	.page-info {
		margin: 40px 0 0 0;
	}

	.page-info .grid {
		column-gap: 10px;
		row-gap: 10px;
	}
}
