@import "compass/css3";

* {
  @include box-sizing(border-box);
}

$pad: 20px;

.grid {
  margin: 0 0 $pad 0;
  
  &:after {
    /* Or @extend clearfix */
    content: "";
    display: table;
    clear: both;
  }
}

[class*='col-'] {
	float: left;
  margin: $pad;
  color: black;
  min-width: 140px;
  .grid &:last-of-type {
  	padding-right: 0;
  }
  
}
.col-2-3 {
	width: 66.66%;
}
.col-1-3 {
	width: 33.33%;
}
.col-1-2 {
	width: 50%;
}
.col-1-4 {
	width: 25%;
}
.col-1-5 {
	width: 20%;
}
.col-1-8 {
	width: 12.5%;
}

.module {  
  padding: 10px;
  margin: 5px;
  height: 200px;
  background: #000;
  text-align: center;
  font-size: 12px;
  position: relative;
  background-image: url("../images/banner_back.jpg");
  color: #f3a927;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
}
.img-holder {
	position: relative;
	min-height: 150px;
	background-color: white;
	border: 1px black solid;
	border-radius: 5px;
	width: 100%;
}
.module img {
	position: absolute;
	top: 50%; left: 50%;
	width: 90%;
	transform: translate(-50%,-50%);
	
}
.module price {
	position: absolute;
	bottom: 0px;
	left: 0px;
	text-align: center;
	width: 100%;
	padding: 5px;
	font-weight: bold;
}

/* Opt-in outside padding */
.grid-pad {
  padding: $pad 0 $pad $pad;
  [class*='col-']:last-of-type {
    padding-right: $pad;
  }
}





body {
    margin: 0px;
    padding: 0px;
    font-family: Verdana, Geneva, sans-serif;
    background-color: rgb(50, 50, 50);
    background-image: url("../images/main_back.jpg");
    background-size: auto;
    font-size: 16px;
	color: rgb(230, 230, 230);
}
.clearfix {
	clear: both;
}
#header {
	position: fixed;
	top: 0px;
	left: 10px;
	right: 10px;
    margin: 0 auto;
    height: 130px;
    min-width: 900px;
	max-width: 990px;
	width: 80%;
    border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
    background-color: #000;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    color: #f3a927;
    background-image: url("../images/banner_back.jpg");
    -webkit-animation: backgroundScroll 40s linear infinite;
    animation: backgroundScroll 40s linear infinite;
	box-shadow: 0px 5px 0px rgba(0,0,0,0.5);
	z-index: 450;
}

#header-right a {
}
.header-title1 {
	//margin-top: 50px;
	line-height: 100px;
	font-size: 40px;
}
#headerLogo {
    float: left;
    margin: 10px;
	margin-top: 10px;
    margin-right: 20px;
    width: 100px;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 30s linear infinite;
}
#header-right {
	//text-align: right;
    line-height: 0px;
    margin-right: 20px;
    margin-top: -10px;
    //float: right;
    font-size: 24px;
}
.header-icon {
    //margin: 5px;
    margin-right: 10px;
    //float: left;
    animation: shake 2s cubic-bezier(.36, .07, .19, .97) infinite;
    transform: translate3d(0, 0, 0);
	 -webkit-filter: drop-shadow( 0px 0px 5px #000 );
            filter: drop-shadow( 0px 0px 5px #000 );
	
}
#nav {
	position: fixed;
	top: 130px;
	left: 50px; right: 50px;
	min-width: 600px;
	max-width: 850px;
	width: 50%;
    list-style-type: none;
	margin: auto;
	//margin-top: 100px;
	margin-bottom: 10px;
    padding: 0;
    overflow: hidden;
    background-color: #333;
	box-shadow: 0px 5px 0px #161616;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	z-index: 449;
	
}
#nav li {
    float: left;
	font-size: 12px;
	
}
#nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px 8px;
    text-decoration: none;
	line-height: 25px;
	height: 25px;
}
#nav li a:hover {
    background-color: #FFCF75;
	color: #000;
}
#nav .active {
    background-color: #f3a927;
	color: #000;
}
#content {
	margin: 0 auto;
	margin-bottom: 100px;
	margin-top: 190px;
	padding: 20px;
	padding-bottom: 100px;
	background-color: rgba(255,255,255,0.05);
	min-width: 600px;
	width: 70%;
	max-width: 900px;
	border-radius: 12px;
}
.service {
	margin: 0px;
	padding: 0px;
	width: 100%;
	list-style-type: none;
}
.service li {
	width: 100%;
	display:block;
	float: left;
	background-color: #000;
	margin-bottom: 10px;
	border-radius: 10px;
	color: white;
	background-image: url("../images/banner_back.jpg");
}
.service h2 {
	margin: 0px;
	margin-top: 15px;
	padding: 0px;
	font-size: 24px;
	color: #f3a927;
	
}
.service p {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
}
.content-icon {
    margin: 10px;
    margin-right: 10px;
    float: left;
	background-color: #f3a927;
	padding: 1px;
	border-radius: 10px;
	box-shadow: 0px 0px 5px #161616;
}

.notify { background: #f3a927; border-radius: 10px; color: rgb(50,50,50); display: inline-block; font-family: 'Lato', sans-serif; font-size: 14px;  line-height: 16px; letter-spacing: 1px; margin: 0 0 30px; padding: 10px 15px 8px; }
.notify2 { background-image: url("../images/banner_back.jpg"); border-radius: 10px; color: #f3a927; font-family: 'Lato', sans-serif; font-size: 14px;  line-height: 16px; letter-spacing: 1px; margin: 0 0 30px; padding: 10px 15px 8px; }
#footer {
    bottom: 0px;
    width: 100%;
    background-image: url("../images/banner_back.jpg");
    color: rgb(230, 230, 230);
    font-size: 12px;
    text-align: center;
    padding: 0px;
}
@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}
@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes backgroundScroll {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 -400px;
    }
}
@keyframes backgroundScroll {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 -400px;
    }
}
a {
    color: #f3a927;
    text-decoration: none;
}
a:hover {
    color: #f5cd87;
}

#map {
	width: 80%;
	height: 300px;
	background-color: grey;
}

.smallprint {
	font-size: 10px;
}
.mediumprint {
	font-size: 12px;
}
.titlebig {
	font-size: 26px;
	color: #f3a927;
}

blockquote.style1 {
	border-radius: 10px;
	font-size: 15px;
	padding: 2px;
	background-color: #f5cd87;
	border-top: 1px solid #e1cc89;
	border-bottom: 1px solid #e1cc89;
	margin: 10px;
	background-image: url(../images/openquote1.gif);
	background-position: 10px 10px;
	background-repeat: no-repeat;
	text-indent: 23px;
	color: black;
  }
blockquote.style1 span {
	display: block;
	background-image: url(../images/closequote1.gif);
	background-repeat: no-repeat;
	background-position: bottom right;
	padding: 10px;
	margin: 10px;
}