* {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
	transition: all .2s ease-in;
}

body {
	background: #7f0000;
	color: #FFF;
	font: 24px 'Playfair Display', serif;

}

h1 {
	font: 700 60px 'Playfair Display', serif;
	padding: 50px 0;
}

h2 {
	font: 400 30px 'Playfair Display', serif;
}
h3 {
	font: 400 20px 'Playfair Display', serif;
	padding-bottom: 50px;
}

span {
	opacity: .7;
	padding: 10px 0;
}

a {
	font: 300 14px 'Roboto', sans-serif;
	color: #FFF;
	text-decoration: none;
	position: relative;
	transition: all .4s ease-out;
	opacity: .7;
}

a:hover {
	opacity: 1;
}

svg {
	fill: #fff;
}

.container {
	position: relative;
	max-width: 940px;
	margin: auto;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

#home {
	min-height: 101vh;
	justify-content: space-around;
}

.achiv {
	padding-bottom: 50px;
}
	.achiv__num {
		font: 900 120px/120px 'Playfair Display', serif;
	}
	.achiv__line {
		display: inline-block;
		position: relative;
		background: #FFF;
		width: 120px;
		height: 1px;
	}
	.achiv__text {
		font: 24px 'Playfair Display', serif;
	}
	.records {
		-webkit-mask-image: linear-gradient(-45deg, rgba(0,0,0,.7) 48%, rgba(0,0,0,1) 50%, rgba(0,0,0,.7) 52%);
		-webkit-mask-size: 200%;
		animation: shine 3s infinite, moving .8s 6s alternate;
		cursor: pointer;
		width: 100%;
	}

	.records-list {
		max-width: 100%;
		text-align: left;
	}

	.hide{
		height: 0;
	    overflow-y: hidden;
	}

	.records-list a {
		font: 400 24px/24px 'Playfair Display', serif;
		padding: 5px;
	}


	.records-list__name {
		font: 400 24px/24px 'Playfair Display', serif;
		padding-bottom: 10px;
	}
	.records-list__text {
		font: 300 14px 'Roboto', sans-serif;
	}


#map {
	width: 100%;
	height: 660px;
	margin-top: 30px;
}

footer {
	background: #7f0000;
	height: 100px;
	display: flex;
    justify-content: center;
    position: relative;
}

.social {
	display: inline-block;
}


/* --- SLIDER --- */

.slick-dots li {
	width: 10px;
	height: 10px;
}

.slick-prev:before, .slick-next:before {
	content: ' ';
}

.slick-prev, .slick-next {
	width: 40px; height: 40px;
	opacity: .75;
}

.slick-next, .slick-next:hover, .slick-next:focus{
	background: url(img/arrow_carrot-right.svg);
}
.slick-prev, .slick-prev:hover, .slick-prev:focus {
	background: url(img/arrow_carrot-left.svg);
}


@media (min-width: 992px) {
	.container {
	justify-content: left;
    align-items: flex-start;
    padding: 20px;
    text-align: left;
    width: 940px;
	}

	.achiv {
		width: 100%;
		display: flex;
        align-items: flex-end;
		padding-bottom: 70px;
	}
	.achiv__num {
		font: 900 170px/170px 'Playfair Display', serif;
		width: 200px;
		text-align: right;
	}
	.achiv__line {
		background: #7f0000;
		width: 220px;
		height: 40px;
		border-width: 1px 0 0 0;
		border-style: solid;
		border-color: #ffffff;
		transform: translateX(-60%) translateY(50%) rotateZ(-30deg);
	}
	.achiv__text {
		position: relative;
		transform: translateX(-200px) translateY(30px);
	}

	.records {
		flex-direction: row-reverse;
	}
	.records .achiv__num {
		text-align: left;
	}
	.records .achiv__line {
		transform: translateX(60%) translateY(50%) rotateZ(30deg);
	}
	.records .achiv__text {
		transform: translateX(200px) translateY(30px);
	}

	.records-list div {
		margin: 0 10px;
	}

	.slick-dots {
		bottom: -40px;
	}

	footer .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
	}
}

/* --- ANIMATION --- */

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }

  to {
    -webkit-mask-position: -50%;
  }
}
@keyframes moving {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-50px);
  }

  100% {
    transform: translateX(0px);
  }
}

