body {
	padding:0;
	margin:0;
	background: #fff;
  font-family: 'Lato', sans-serif;
}

body p {
	margin:15px 0 20px 0;
}

img {
    border:none;
}


/* Pop */
@-webkit-keyframes pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.pop {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.pop:hover, .pop:focus, .pop:active {
  -webkit-animation-name: pop;
  animation-name: pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}


/* Outline Inward */
.outline-inward {
  display: inline-block;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);

}
.outline-inward:before {
  pointer-events: none;
  content: '';
  position: absolute;
  border: #DAD3FF solid 3px;
  top: -15px;
  right: -15px;
  bottom: -15px;
  left: -15px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;

}
.outline-inward:hover:before, .outline-inward:focus:before, .outline-inward:active:before {
  top: -7px;
  right: -7px;
  bottom: -7px;
  left: -7px;
  opacity: 1;
}


/* header */

a.twit {
	float:right;
	width:40px;
	height:40px;
	background:url(images/twit.png);
	border-left: 1px solid #414141;
}

a.fb {
	float:right;
	width:40px;
	height:40px;
	background:url(images/fb.png);
	border-left: 1px solid #414141;
}

.smaller-text {
  font-size:12px;
}

a.twit:hover {
	background:url(images/twit.png) #A79A69;
	-webkit-transition: all .4s;
-moz-transition: all .4s;
-ms-transition: all .4s;
-o-transition: all .4s;
transition: all .4s;
}


a.fb:hover {
	background:url(images/fb.png) #A79A69;
	-webkit-transition: all .4s;
-moz-transition: all .4s;
-ms-transition: all .4s;
-o-transition: all .4s;
transition: all .4s;
}

/* Right bar */

.right-bar {
  position: fixed;
  top: 0;
  right: 0;
  background: #1F282E;
  width: 60px;
  height: 100%;
  z-index: 11;
  border-left: 1px solid #464b4d;
}

.right-icons {
  position: absolute;
  top: 50%;
  margin-top: -120px;
  border-top: 1px solid #464b4d;
  z-index: 13;
}

.right-icons img {
  border-bottom: 1px solid #464b4d;
}

.right-icons img:hover {
  background: #000;
}

#logo-overlay {
position: fixed;
bottom: 0;
left: -100px;
width: 460px;
height: 418px;
z-index: 1;
opacity: 0.15;
}

#logo {
float:left;
margin:16px 0 0 25px;
}

/* icons */


.icon-section {
/* padding-top: 25%; */
width: 449px;
position: absolute;
top: 55%;
margin-top: -100px;
z-index: 999;
height: 230px;
}



.bigword {
display: block;
font-size: 57px;
font-weight: 700;
}

.word-border {
padding: 15px;
border: 5px solid #fff;
margin-top: 27px;
background: rgba(0, 0, 0, 0.34);
-webkit-border-radius: 10px 10px 10px 10px;
border-radius: 10px 10px 10px 10px;
}

.word-border:hover {
  cursor:pointer;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all .4s;
-moz-transition: all .4s;
-ms-transition: all .4s;
-o-transition: all .4s;
transition: all .4s;
}

/* Modal code */
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.72) !important;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}

.modal a {
  margin-bottom: 0;
  margin-bottom: 0;
  padding: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  position: absolute;
  top: -30px;
  right: -34px;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.fancy.modal {
  box-shadow: 0 3px 6px rgba(0,0,0,0.25);
  border-bottom: 6px solid #bbb;
  overflow: hidden;
  background: #FDFDFD;
  z-index: 9999 !important;
}

.fancy.show {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

#booking-form {
width: 492px;
padding: 50px;
text-align: center;
background: #4E4E4E;
position: relative;
left: 50%;
margin-left: -320px;
top: 50%;
margin-top: -263px;
/* color: #fff !important; */
border: 5px solid #fff;
}

#booking-form h2 {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  display: block;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
}

#booking-form p {
  font-size: 15px;
  line-height: 31px;
  margin: 18px 0 34px;
  color: #fff;
   text-transform: uppercase;
}

#booking-form ul {
  margin: 0;
  padding: 0;
}

#booking-form li {
  list-style: none;
  height: 25px;
  padding: 3px 0 2px;
  margin: 0 0 5px;
  border: #e6e6e6 1px solid;
}

#booking-form li.user {
  background: url(images/form/callback-form-user.png) no-repeat top right #fff;
}

#booking-form li.phone {
  background: url(images/form/callback-form-phone.png) no-repeat top right #fff;
}

#booking-form li.email {
  background: url(images/form/callback-form-email.png) no-repeat top right #fff;
}

#booking-form li.textarea {
  height: 100px;
  margin: 0 0 10px;
  background: url(images/form/callback-form-message.png) no-repeat top right #fff;
}

#booking-form li.last {
  height: 33px;
  border: none;
}

#booking-form input {
  width: 98%;
  height: 25px;
  border: 0;
  padding: 0 0 0 10px;
  background: none;
  font-family: Tahoma;
  color: #606060;
}

#booking-form textarea {
width: 98%;
height: 96%;
margin-top: 4px;
font-size: 13px !important;
border: 0;
padding: 0 0 0 10px;
background: none;
font-family: Tahoma;
color: #606060;
}

#booking-form select {
  border: 0;
  padding: 0 0 0 6px;
  background: #fff;
  border: none;
  height: 32px;
  width: 100%;
  color: #9B9B9B;
  margin-top: -4px;
}

#booking-form input,
#booking-form textarea,
#booking-form select {
    font-weight: 300;
    font-size: 13px;
    outline:0;
}

#booking-form .submit {
  width: 112px;
  height: 33px;
  margin: -3px 0 0;
  text-indent: -9999px;
  background: url(images/form/btn-submit.png) no-repeat;
  cursor: pointer;
  float: right;
}



#copyright-backing {
width: 100%;
position: absolute;
padding: 8px 0 5px 0;
background: rgba(0, 0, 0, 0.63);
bottom: 0;


}

#copyright-backing-landing {
width: 100%;
padding: 30px 0 5px 0;
background: rgba(0, 0, 0, 0.63);
position: absolute;
bottom: 0;

}

#copyright {
width: 80%;
min-width: 1000px;
max-width: 1250px;
margin: 0 auto 0 auto;
color: #CECECE;
text-align: center;
font-size: 11px;
text-transform: uppercase;
/* letter-spacing: 1px; */
line-height: 24px;
}

#copyright-landing {
width: 80%;
min-width: 1000px;
max-width: 1250px;
margin: 0 auto 0 auto;
color: #CECECE;
text-align: center;
font-size: 11px;
text-transform: uppercase;
/* letter-spacing: 1px; */
line-height: 24px;
}

#copyright a {
	color: #DADADA;
	text-decoration:none;
}


#copyright-landing a {
  color: #DADADA;
  text-decoration:none;
}


/* Contact form */

.contact-form {
  width:176px;
  height:277px;
  background:url(images/form-backing.jpg) no-repeat;
  padding:1px 20px 30px;
  text-align: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(46,45,45,0.1);
box-shadow: 0 5px 5px 0 rgba(46,45,45,0.1);

}

.contact-form h2 {
font-size: 21px;
font-weight: 300;
color: #fff;
margin: 15px 0 0 16px;

}

.contact-form ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.contact-form li.textarea {
  width: 239px;
  height: 96px;
  margin: 0 0 10px;
}

.contact-form li.last {
  height: 33px;
}

.contact-form input {
  width: 173px;
height: 24px;
border: 0;
padding: 0 0 0 5px;
margin: 0 0 9px;
background: none;
font-weight: 300;
font-style: italic;
font-size: 12px;
color: #999;
}

.contact-form textarea {
width: 171px;
height: 73px;
border: 0;
padding: 5px 0 0 5px;
margin: 5px 0;
background: none;
font-weight: 300;
font-style: italic;
font-size: 12px;
color: #999;
}

.contact-form .submit {
  width: 181px;
  height: 40px;
  margin: 5px 0 0 -3px;

  list-style:none;
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-size:14px;
  font-style:normal;
  text-transform: uppercase;
  text-indent:-8px;
  color:#fff;
  background: #f63580;
 
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.contact-form .submit:hover {
  background: #A21E51;
  cursor:pointer;
}

#indexholder {
  width:1000px;
  position:absolute;
  left:50%;
  margin-left:-500px;
  top:50%;
  margin-top: -180px;
  height:400px;
  background: rgba(255, 255, 255, 0.19);
}


#index-wording {
  float: left;
  width: 340px;
  height: 398px;
  background: #fff;
  padding: 22px 38px 30px 22px;
  text-align: center;
}

#gmap {
  float:right;
  width:600px;
  height:400px;
  background:#000;
}


#index-wording h2 {
font-size: 26px;
text-transform: uppercase;
color: #313131;
font-weight: 600;
margin-bottom: 20px;
}


#index-wording h3 {
text-transform: uppercase;
font-size: 16px;
color: #92D140;
font-weight: 600;
margin-bottom: 20px;
}

.telbigno {
font-size: 31px;
margin-bottom: 2px;
display: block;
}

.eml {
font-size: 14px;
display: block;
margin-top: 10px;
}













/* clear any elements that contain floated divs */

.container:after,
#main-page-backing:after,
#page:after,
#sidebar:after,
#footer:after {
	content: ".";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}


/* transitions */

.nav a,
.nav>.dropdown>a::after,
.nav>li>a.active::after,
.dropdown:after,
a.block-link,
a.fb-icon,
a.twit-icon {
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}