*,
*:before,
*:after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html, body {
	min-height: 100vh;
	font-family: "Montserrat", sans-serif;
	background: rgba(225,225,225,1);
	line-height: 1.5;
	position: relative;
}

a {
	color: whitesmoke;
	text-decoration: none;
}

ul {
	list-style: none;
}

.link--border {
	display: inline-block;
	padding: .5rem 4rem;
	border: 1px solid #777777; 
	transition: all .25s ease-in-out;
}

.link--border:hover {
	transition-delay: 0s !important;
	border: 1px solid #cccccc; 
}

.link--asyncBottom {
	position: relative;
	display: inline-block;
}

.link--asyncBottom:before,
.link--asyncBottom:after {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	height: 1px;
	width: 0;
	transition: all .25s ease-in-out;
	background: whitesmoke;
}

.link--asyncBottom:before {
	left: 0;
	right: unset;
}

.link--asyncBottom:hover:before {
	right: 49%;
	left: unset;
	width: 51%;
}

.link--asyncBottom:after {
	right: 0;
	left: unset;
}

.link--asyncBottom:hover:after {
	left: 49%;
	right: unset;
	width: 51%;
}

.load_page {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
	background: whitesmoke;
	transition: all 1s ease-in-out;
	opacity: 1;
}

.loaded .load_page {
	opacity: 0;
}

.loaded--end .load_page {
	display: none;
}

.dNone {
	z-index: -1 !important;
}

.load_page img {
	width: 80%;
	max-width: 640px;
	filter: invert(1);
}

.page_wr {
	transition: all 1.5s ease-in-out;
	min-height: 100vh;
	display: grid;
	grid-template-rows: 1fr auto; 
	grid-template-columns: repeat(2, 1fr);
	transform: scale(.95);
}

.loaded .page_wr {
	transform: scale(1);
}

.block {
	position: relative;
	color: whitesmoke;
	text-align: center;

}

.block__content--front,
.block__img,
.block__content--front .block__info {
	position: absolute;
	top: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

.block__content--back,
.block__img {
	z-index: 10;
}

.block__content--front,
.block__info {
	z-index: 20;
}

.block__content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.block__img {
	overflow: hidden;
}

.block__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.block__content--front .block__img img {
	width: auto;
	min-width: 100%;
}

.block--left .block__content--front .block__img img {
	float: right;
}

.block__info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding: 2rem;
    position: relative;
    z-index: 20;
    max-width: 480px;
}

.block__content--front {
	transition: all .5s ease-in-out .1s;
	-webkit-clip-path: circle(70.7% at 50% 50%);
	clip-path: circle(70.7% at 50% 50%);
	opacity: 1;
}

.block:hover .block__content--front {
	-webkit-clip-path: circle(0% at 50% 50%);
	clip-path: circle(0% at 50% 50%);
	opacity: 0;
	transition: all .5s ease-in-out;
}

.block__img:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all .5s ease-in-out .25s; 
	transform: scale(1);
	background: rgb(0,0,0);
	background: radial-gradient(circle, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.60) 20%, rgba(0,0,0,0.15) 100%);
}

.block__content--front .block__img:after {
	content: unset;
}

.block:hover .block__content--back .block__img:after {
	background: rgb(0,0,0);
	transform: scale(1.5);
	background: radial-gradient(circle, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.60) 20%, rgba(0,0,0,0.15) 100%);
}

.logo {
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

.block__description {
	padding: 0;
	font-size: 1.1rem;
}

.block__description a {
	text-decoration: underline;
	
}

.logo img {
    width: 80%;
    object-fit: contain;
}

.topFade {
	opacity: 0;
	transform: translateY(-3rem);
	transition: all .5s ease-in-out;
}

.block:hover .topFade {
	opacity: 1;
	transform: translateY(0rem);
}

.block:hover .delay0 {
	transition-delay: 0s;
}

.block:hover .delay1 {
	transition-delay: .25s;
}

.block:hover .delay2 {
	transition-delay: .5s;
}

.block:hover .delay3 {
	transition-delay: .75s;
}

.block__footer {
	padding-top: 2rem;
}

.payment {
	margin-top: 2rem;
}

.socialLink {
    display: flex;
    justify-content: center;
}

.socialLink a {
	display: block;	
}

.socialLink img {
	transition: all .25s ease-in-out;
	max-width: 3rem;
	height: auto;
	
}

.contactInfo__adress,
.socialLink img  {
	opacity: .75;
}

.socialLink a:hover img {
	opacity: 1;
}

.contactInfo__adress {
	padding-bottom: .5rem;
}

.contactInfo__telephone,
.contactInfo__email {
	padding: .25rem 0;
	position: relative;
}

.footer {
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 2rem;
	grid-row: 2/3;
	grid-column: 1/3;
	min-height: 10rem;
}

.footer .link {
	color: #333;
}

.footer__logo {
	padding-bottom: 2rem;
}

.footer__logo img {
	max-width: 12rem;
}

.footer .link--border {
	border-color: #aaaaaa;
	padding: .5rem 4rem;
}

.footer .link--border:hover {
	border-color: #777777;
}

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

	.page_wr {
		grid-template-rows: repeat(3, auto); 
		grid-template-columns: auto;
	}

	.footer {
		grid-row: 3/4;
		grid-column: 1/2;
		min-height: 10rem;
	}

	.block__content--front {display: none;}

	.topFade {
	    opacity: 1;
	    transform: translateY(0rem);
	    transition: none;
	}

}