<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">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:#161616;
}

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

a {
  color: #fff;
  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 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  
  z-index: 2;
}
.cd-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px; background:#000000; opacity:0.8;  
  z-index: 2;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
.cd-header #cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
  }
  .cd-header #cd-logo {
    margin: 5px 20px 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 30px;
  height: 30px;
  background-size: 21px 10px;
  cursor: pointer;
  background:#000 url("../images/bar.png") no-repeat scroll center center / 21px 10px; padding:5px; margin-top:5px; border-radius:3px;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  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: #000;
  border-top: 1px solid #111111;
  color: #bebebe;
}
@media only screen and (min-width: 800px) {
  .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);
  }
  .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: 0.6em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .4em .6em;
    border-top: none;
    color: #b3b3b3;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 14px;
    font-size: 0.875rem;
  }
  
  .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 top;
  z-index: 1;
}
.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: 30px;
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../images/back.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../images/tunnel.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../images/photographer.jpg");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../img/cd-background-4.jpg");
}
@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: 300;
  }
}

.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 4em 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #3d3536;
  color: #a6989a;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #99a478;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #b4d7a8;
  color: #3d3536;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 8em 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}

.social{ padding-left:20px;}
.social ul{ list-style:none; margin-top:15px;}
.social ul li{float:left; margin:0px 2px;}
.icon1{width:33px; height:33px; background:url(../images/icons.png) no-repeat 0px 0px; display:block;}
.icon1:hover{width:33px; height:33px; background:url(../images/icons.png) no-repeat -40px 0px; display:block;}

.icon2{width:33px; height:33px; background:url(../images/icons.png) no-repeat 0px -38px; display:block;}
.icon2:hover{width:33px; height:33px; background:url(../images/icons.png) no-repeat -40px -38px; display:block;}

.icon3{width:33px; height:33px; background:url(../images/icons.png) no-repeat 0px -76px; display:block;}
.icon3:hover{width:33px; height:33px; background:url(../images/icons.png) no-repeat -40px -76px; display:block;}

.icon4{width:33px; height:33px; background:url(../images/icons.png) no-repeat 0px -117px; display:block;}
.icon4:hover{width:33px; height:33px; background:url(../images/icons.png) no-repeat -40px -117px; display:block;}

.lg{width:48px; height:48px; background:url(../images/logo.png) no-repeat 0px 0px; display:block;}
.lg:hover{width:48px; height:48px; background:url(../images/logo.png) no-repeat -48px 0px; display:block;}


.cd-left{width:50%; float:left; font-size:12px; color:#fff; text-align:center; line-height:48px; text-align:left; padding-left:5%;}
.cd-left a{font-size:12px; color:#fff;}
.cd-right{width:50%; float:left; font-size:12px; color:#fff; text-align:center; line-height:48px;}

.video{ float:right; margin:70px 5px 0 0; width:680px;}
.sc{ height:180px!important;}

.tour-box{ width:50%; margin:0px auto; padding-top:100px; color:#FFFFFF; font-size:16px; line-height:30px;}
.tour-box h3{ font-size:24px; text-transform:uppercase; font-weight:bold; margin-bottom:30px;}
.tour-box h4{ font-size:18px; text-transform:uppercase; font-weight:bold;}

.media-box{ width:90%; margin:0px auto; padding-top:10%; color:#FFFFFF; font-size:16px; line-height:30px; background:url(../images/mdlogo.jpg) no-repeat center top;}
.media-box a{ background:#000000; padding:10px; border-radius:3px; margin:5px; float:left;}

.archive-box{ width:90%; margin:0px auto; text-align:center; padding-top:10%; color:#FFFFFF; font-size:16px; line-height:30px; background: #000000 url(../images/mdlogo2.jpg) no-repeat center top;}
.archive-box img{ width:100%;}

.shop-box{ width:80%; margin:0px auto; padding-top:150px; color:#FFFFFF; font-size:16px; line-height:30px; background:url(../images/mdlogo.jpg) no-repeat center top; padding-bottom:100px;}
.shop-box h3{ font-size:24px; text-transform:uppercase; font-weight:bold; margin:20px 0px;}
.shop-box img{ width:100%;}

.news-box{ width:80%; margin:0px auto; padding-top:150px; color:#FFFFFF; font-size:16px; line-height:30px;}
.news-box h3{ font-size:24px; text-transform:uppercase; font-weight:bold; margin:20px 0px;}
.news-box-content img{ width:30%; padding-right:20px;}

.news-box-content{ width:100%; padding:20px; color:#000; font-size:16px; line-height:24px; background:url(../images/bg.png); }

.form-field{ width:60%; padding:8px; color:#fff; font-size:14px; line-height:24px; background:#000000; border:1px solid #333333; margin:3px; }
form{ margin-top:20px;}
label{ width:15%; padding:8px; color:#fff; font-size:14px; line-height:24px; float:left; }
.form-button{padding:8px 30px; color:#fff; font-size:14px; font-weight:bold; line-height:24px; background:#000000; border:1px solid #333333; margin:3px; margin-left:15%; }

.mgb{ margin-bottom:10px;}


@media only screen and (max-width: 768px) {
.form-field{ width:100%;}
label{ width:100%; text-align:center;}
}

@media screen and (min-device-width: 180px) and (max-device-width: 320px) {
	.cd-fixed-bg.cd-bg-1 {background-image: url("../images/back-320.jpg");}
	.video{ width:100%; padding:300px 0 100px 0;}
	 #player1{ width:100%; height:100%}
	.cd-footer{height:100px;}
	.cd-left{width:100%; float:left;}
	.cd-right{width:100%; float:left;}
	.cd-header #cd-logo{ margin-top:0px;}
	.social{ position:absolute; top:80px;}
	.tour-box{padding-top:130px; width:80%;}
	.shop-box{padding-top:130px; width:80%;}
	.media-box{padding-top:40%;}
	.archive-box{padding-top:40%;}
	.block{ display:block;}

}

@media screen and (min-device-width: 321px) and (max-device-width: 360px) {
	.cd-fixed-bg.cd-bg-1 {background-image: url("../images/back-360.jpg");}	
	.video{ width:100%; padding:300px 0 100px 0;}
	 #player1{ width:100%; height:100%}
	.cd-footer{height:100px;}
	.cd-left{width:100%; float:left;}
	.cd-right{width:100%; float:left;}
	.cd-header #cd-logo{ margin-top:0px;}
	.social{ position:absolute; top:100px;}
	.cd-main-nav{ margin-top:10px;}
	.tour-box{padding-top:150px; width:80%;}
	.shop-box{padding-top:150px; width:80%;}
	.archive-box{padding-top:40%;}
	.block{ display:block; padding-top:200px; width:100%; clear:both; float:left;}

}

@media screen and (min-device-width: 361px) and (max-device-width: 480px) {
	.cd-fixed-bg.cd-bg-1 {background-image: url("../images/back-480.jpg");}
	.video{ width:100%; padding:250px 0 100px 0;}
	 #player1{ width:100%; height:100%;}
	.social{ position:absolute; top:100px;}
	.cd-footer{height:100px;}
	.cd-left{width:100%; float:left;}
	.cd-right{width:100%; float:left;}
	.cd-header #cd-logo{ margin-top:0px; margin-right:10px;}
	.shop-box{padding-bottom:100px;}
	.archive-box{padding-top:15%;}
	.block{ display:block; padding-top:200px; width:100%; clear:both; float:left;}
}

@media screen and (min-device-width: 481px) and (max-device-width: 640px) {
	.cd-fixed-bg.cd-bg-1 {background-image: url("../images/back-640.jpg");}
	.video{ width:100%; padding:300px 0 100px 0;}
	 #player1{ width:50%; height:100%}
	 .vd{ width:50%; float:left;}
	 .sc{ width:40%; float:left;}
	.cd-header #cd-logo{ margin-right:20px;}
	.cd-main-nav{ margin-top:10px;}
	.tour-box{margin-bottom:130px; width:80%; padding-top:100px;}
	.shop-box{margin-bottom:130px; width:80%; padding-top:100px;}
	.archive-box{padding-top:15%;}
}

@media screen and (min-device-width: 641px) and (max-device-width: 768px) {
	.cd-fixed-bg.cd-bg-1 {background-image: url("../images/back-768.jpg");}
	.video{ margin:480px 0 0 0; width:768px;}
	.cd-main-nav{ margin-top:20px;}
	.sc{ margin-top:100px!important;}
	#player1{ width:50%!important; height:220px!important;}
	.tour-box{padding-top:130px;}
	.archive-box{padding-top:15%;}
}
/*in your css hide the field so real users cant fill it in*/
form #website{ display:none; }




</pre></body></html>