﻿/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-family: "Roboto", sans-serif;
  color: #3d3536;
  background-color: white;
}

body, html {
  /* important */
  height: 100%;
}

a {
	color: #000099;
	text-decoration: none;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.notice {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background-color: #FFFF00;
	color: #000000;
	font-size: small;
}
.notice p {
	padding: 15px;
}
.notice a {
	text-decoration: underline;
}

.cd-header {
		position: fixed;
	top: 0;
	width: 100%;
	height: 70px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	z-index: 2;
	background-color: #000000;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #social, .cd-header #socialW {
	float: left;
	margin: 13px 0 0 0;
	display: inline-block;
}
.cd-header #social img, .cd-header #socialW img {
	display: inline-block;
	width: auto;
}
.cd-header #social-skype {
	float: left;
	margin: 3px 0 0 0;
	display: inline-block;
}
.book a {
	border-radius: 5px;
	padding: 15px;
	display: inline-block;
	background-color: #FF0000;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
	width: 160px;
	text-align: center;
}
#message {  padding: 0px 40px 0px 0px; }
#mail-status {
			padding: 12px 20px;
			width: 100%;
			display:none; 
			font-size: 1em;
			font-family: "Georgia", Times, serif;
			color: rgb(40, 40, 40);
		}
.error{background-color: #F7902D;  margin-bottom: 40px;}
.success{background-color: #48e0a4; }
.g-recaptcha {margin: 0 0 25px 0;}	

@media only screen and (min-width: 768px) {
  .cd-header {
    height: 80px;
  }
  .cd-header #social, .cd-header #socialW {
	margin: 25px 0 0 15px;
}
  .cd-header #social-skype {
	margin: 5px 0 0 0px;
}

}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/menu.png") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #2f292a;
  border-top: 1px solid #453c3d;
  color: #8e7d7f;
}
.cd-main-nav li.home a {
	color: #00FE00;
}
.cd-main-nav li.about a {
	color: #00ADF3;
}
.cd-main-nav li.what a {
	color: #FE01FC;
}
.cd-main-nav li.contact a {
	color: #FDE000;
}

@media only screen and (min-width: 768px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
	display: inline-block;
	height: auto;
	line-height: normal;
	background: transparent;
	padding: .6em 1em;
	border-top: none;
	color: #3d3536;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	font-size: 0.875rem;
	
}
  .no-touch .cd-main-nav a:hover {
	color: #FFFFFF;
}
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg #logo-new {
  position: absolute;
  left: 50%;
  top: 30%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 70%;
}

.cd-fixed-bg #logo-new img {
	width: 45%;
	position: relative;
	display: inline-block;
	margin-right: auto;
	margin-left: auto;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1170px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  font-family: 'Roboto';
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}
.cd-fixed-bg h3 {
  position: absolute;
  left: 50%;
  top: 60%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1170px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Roboto';
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
  line-height: 1.6em;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/bg1.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/bg2.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/bg3.jpg");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../img/bg4.jpg");
}
form {
	vertical-align: top;
}
label {
	color: #333333;
	font-size: 14px;
	padding: 3px;
	display: block;
	clear: both;
}
input {
	background-color: #FEF4C0;
	border-style: none;
	border-radius: 5px;
	padding: 7px;
	width: 95%;
	margin-bottom: 5px;
}
textarea {
	background-color: #FEF4C0;
	border-style: none;
	border-radius: 5px;
	padding: 7px;
	width: 95%;
	margin-bottom: 5px;
	height: 100px;
}
label.required {
	font-size: small;
	color: #FF0000;
}
input#submit {
	border-radius: 5px;
	padding: 15px;
	margin-top: 7px;
	position: relative;
	display: block;
	clear: both;
	background-color: #FF9900;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
	width: 205px;
	float: left;
	text-align: center;
}
.map {
	width: 100%;
	height: 250px;
}

@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 48px;
    font-weight: 700;
  }
}

.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 10px 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg h1 {
	color: #333333;
	font-size: 36px;
	font-weight: 700;
}
.cd-scrolling-bg.cd-color-1 {
	background-color: #FEEB81;
	color: #333333;
}
.cd-scrolling-bg.cd-color-2 {
	background-color: #8ED3FD;
	color: #333333;
}
.cd-scrolling-bg.cd-color-3 {
	background-color: #FF99CC;
	color: #333333;
}
strong {
	font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 50px 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}
