body {
	background: #111;
}

@font-face {
  font-family: Castelar;
  src: url(https://www.vodkainspace.com/wp-content/themes/travnaja/CASTELAR.ttf);
}

h1 {
	font-family: Castelar;
	color: #fff;
	font-size: 60px;
	line-height: 70px;
}
h2 {
	font-family: Playfair Display;
	color: #fff;
	font-size: 60px;
	line-height: 70px;
}
h3 {
	font-family: Playfair Display;
	color: #fff;
}
h4 {
	font-family: Raleway;
	color: #efefef;
}
h5 {
	font-family: Raleway;
	color: #efefef;
}
h6 {
	font-family: Raleway;
	color: #efefef;
}
p {
	font-family: Raleway;
	color: #efefef;
	font-size: 22px;
	line-height: 32px;
}

/* Utilities */
.leftMarginNegativeFivteen {
	margin-left: -15px;
}
a {
	transition-duration: .4s;
}
a:hover {
	opacity: .6;
}
.other_page_hero {
    height: 28vw;
    background-size: cover!important;
    background-position: center center!important;
}
	
/* HOME */
.homeTextBlock {
	max-width: 800px;
	padding: 20px 20px;
	margin-top: 50px;
}

/* MENU */
.clear-menu-btn {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.clear-menu-btn input[type="checkbox"] {
  position: absolute;
  filter: alpha(opacity=0);
  opacity: 0;
  width: 100%;
  height: 100%;
}

.clear-menu-btn input[type="checkbox"]:hover { cursor: pointer; }

.clear-menu-btn input[type="checkbox"]:checked ~ .top, .clear-menu-btn input[type="checkbox"]:checked ~ .bottom { top: 50%; }

.clear-menu-btn input[type="checkbox"]:checked ~ .top {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.clear-menu-btn input[type="checkbox"]:checked ~ .bottom {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.clear-menu-btn input[type="checkbox"]:checked ~ .middle {
  filter: alpha(opacity=0);
  opacity: 0;
}

.clear-menu-btn input[type="checkbox"]:checked ~ .circle {
  filter: alpha(opacity=100);
  opacity: 1;
}

.clear-menu-btn span {
  position: absolute;
  display: block;
  width: 100px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}

.clear-menu-btn .top { top: 15%; }

.clear-menu-btn .middle { top: 50%; }

.clear-menu-btn .bottom { top: 85%; }

.clear-menu-btn .circle {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  filter: alpha(opacity=0);
  opacity: 0;
  width: 120px;
  height: 120px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}
.menubar {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 999;
}
.overflowMenu {
	display: none;
    position: fixed;
    z-index: 998;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background: #000;
    padding: 200px 20px;
}
.overflowMenu a {
	display: block;
	width: 100%;
	line-height: 56px;
	font-size: 46px;
	font-family: Playfair Display;
	text-transform: uppercase;
	transition-duration: .4s;
	color: #fff;
	text-align: center;
	padding: 20px 0px;
	cursor: pointer;
}
.overflowMenu a:hover {
	color: #d4af37;
	text-decoration: none;
}

/* FORM */
.form-control {
    border-radius: 0px;
    border-width: 0px;
    margin: 20px 0px;
    box-shadow: 0px 0px 5px rgba(255,255,255,.2);
}
.btn.btn-primary {
	background-color: #292929;
    border-color: #292929;
    color: #fff;
    border-radius: 30px;
}

/* MOBILE */
.mobileonly {
	display: none;
}
.desktoponly {
	display: block;
}
@media only screen and (max-width: 991px) {
	.mobileonly {
		display: block;
	}
	.desktoponly {
		display: none;
	}
	.leftMarginNegativeFivteen {
		margin-left: 0px;
	}
	.homeTextBlock {
		padding: 0px 0px;
		margin-top: 20px;
	}
	h1 {
	    font-size: 48px;
	    line-height: 58px;
	}
	h2 {
		font-size: 38px;
	    line-height: 48px;
	}
	p {
	    font-size: 18px;
	    line-height: 28px;
	}
	.menubar .logo {
		height: 150px;
	}
	.clear-menu-btn {
	    width: 50px;
	    height: 50px;
	}
	.clear-menu-btn span {
		width: 50px;
	}
	.overflowMenu a {
		line-height: 38px;
    	font-size: 28px;
	}
}

