/* Animations */

@keyframes fadeInRight {

	from {
		opacity: 0;
		transform: translate3d(30%, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}

}


.fadeInRight {
	animation-name: fadeInRight;
}

.animated {
	animation-duration: 0.5s;
	animation-fill-mode: both;
}


.animated.delay-05s {
	animation-delay: 0.5s;
}

.animated.delay-1s {
	animation-delay: 1s;
}

.animated.delay-2s {
	animation-delay: 2s;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInLeft {
	animation-name: fadeInLeft;
}


@keyframes flipInX {
	from {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		animation-timing-function: ease-in;
	}

	60% {
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}

	80% {
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}

	to {
		transform: perspective(400px);
	}
}

.flipInX {
	backface-visibility: visible !important;
	animation-name: flipInX;
}

@keyframes rollIn {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}

	to {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	}
}

.rollIn {
	animation-name: rollIn;
}




@font-face {
	font-family: 'Myriad Pro';
	src: url('../fonts/MyriadPro-BoldCond.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: "Myriad Pro", "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	font-size: 0.8334vw;
}

@media all and (max-width: 1300px) {

	body {
		font-size: 1.2vw;
	}
/*
	.column {
		width: 85em;
	}
*/
}


h1 {
	font-size: 6em;
	color: #311615;
	text-shadow: 0.05em 0.05em 0em #ffcf00;
	text-align: center;
}

h2, a {
color: #311615;
}

.brown-text {
	color: #311615;
}

.d-flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.col-flex {
	flex-direction: column;
}


section {
	display: flex;
	justify-content: center;
	padding-bottom: 3em;
}

.column {
	width: 75em;
	max-width: 1200px;
}

.main .column {
	justify-content: space-between;
}

@keyframes bg-saturation {
	from {
	background: linear-gradient(crimson, gold, yellowgreen, teal, crimson);
	}

	to {
	background: linear-gradient(gold, crimson, yellowgreen, teal, crimson);
	}
}

@keyframes blink {
	0% {
		box-shadow: 0.1em 0.1em 0.2em #311615, 0px 0px 1.5em #ffcf00;
	}

	100% {
		box-shadow: 0.1em 0.1em 0.2em #311615, 0px 0px 0.5em #ffcf00;
	}
}



.main {
	height: 59em;
	background: url(../img/main_bg.jpg) no-repeat 100%;
	background-size: cover;
	/*animation-duration: 1s;
	animation-name: bg-saturation;*/

}

.main__logo {
	font-size: 6em;
}

.main__logo-text {
	padding-top: 0.2em;
	position: absolute;
	z-index: 1;
}



.main__banner {
	position: relative;
	max-height: 420px;
	height: 26.25em;
	background: #FFCF00;
	border-radius: 10px;
	box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.5);;
}

.main__banner-coffee-cup {
	width: 40%;
	float:left;
}

.main__banner-coffee-cup img {
	position: absolute;
	top: -22em;
	left: 0;
	width: 32em;
}


.main__banner-text {
	width: 60%;
	padding-top: 0.5em;
	float: right;
	font-size: 5em;
	letter-spacing:-1.2px;
}

.main__banner-text_stroke {
	font-size: 1.6em;
}

.main__banner-tel {
	position: absolute;
	color: #FFCF00;
	font-size: 3.5em;
	bottom: -1.1em;
	right: 0;
	text-decoration: none;
	text-shadow: -0.1em 0.1em 0.1em #311615;
}

.main__banner-badyan {
	position: absolute;
	top: -4em;
	right: -4em;
	width: 11.25em;
}

.main__button {
	position: relative;
	align-items: center;
}

.menu__item {
	cursor: pointer;
	border-radius: 5px;
	background: #FFCF00;
	font-size: 3em;
	padding: 0.3em 0.7em;
	text-decoration: none;
	color: #000;
	box-shadow: 0.1em 0.1em 0.2em #311615;
	margin: 0.1em 0;
	float: right;
}

.menu__item_main {
	position: absolute;
	top: -5em;
	font-size: 2em;
	padding: 0.5em 1em;
	animation: blink 2s infinite alternate;
	transition: ease;
}

.about {
	height: 62em;
}

.about .column {
	background: url(../img/about-bg.jpg) no-repeat bottom left;
	background-size: 50%;
}

.about__text {
	width: 70%;
	float: left;
	font-size: 3em;
	font-weight: 100;
}

.about__menu {
	width: 30%;
	float: right;
	padding: 3em 0px;
}


.gallery {
	background: url(../img/gallery-bg.png);
	background-position: center;
	background-size: cover;
}

.gallery__holder {
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: space-between;
}

.gallery__item {
	list-style: none;
	padding-bottom: 1.5em;
	flex-basis: calc(50% - 1em);
	flex-wrap: wrap;
}

.gallery__item img {
	width: 100%;
	border: solid 0.2em #ffcf00;
}

.rent p {
	font-size: 3em;
	text-align: center;
}

.rent__icon {
	width: 60%;
	float: left;
}

.rent__icon img {
	max-width: 21.9em;
}


.rent__form {
	width: 40%;
	float: right;
}

.rent__form img {
	width: 2em;
	height: 2em;
}

.rent__input {
	width: 100%;
	font-size: 2em;
	text-align: center;
	padding: 0.5em 0em;
	background: #ffcf00;
	border: none;
	box-shadow: inset 0.1em 0.1em 0.16em #3116157a;
	margin: 0.3em;

}

.rent__form p, .menu__item_submit {
	font-size: 2em;
}

.rent__form p:before {
	content: '';
	padding-left: 1.5em;
	margin-left: 0.5em;
	background: url(../img/docum-plus.png) no-repeat;
	background-size: contain;
}

.rent__input::placeholder {
	color: #311615;
}


.contacts {
	box-shadow: inset 0em 0em 3em #aeaeae;
	background: url(../img/bg-bottom.jpg) no-repeat 100%;
	background-size: cover;
}

.contacts__holder {
	width: 66.666%;
	flex-wrap: wrap;
}

.contacts__holder > div {
	width: 50%;
	font-size: 2em;
}


