/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
   
}

*, *: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;*/
  font-family: 'Oswald', sans-serif;
  color: #3d3536;
  background-color: white;
}

body, html {
  /* important */
  height: 100%;
}

a {
  color: #FFEF41;
  text-decoration: none;  
}
.footer  a{
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 1); 
}


td {
  vertical-align: top;
  padding: 3px;
}

.footer {
	position: absolute;
	bottom:0px;
	left:0px;
    color: black;
    background: rgba(255, 255, 255, 0.5);
	width:100%;
	min-width:100%;
	padding:.75em;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 1);	
	font-size:75%;	
	text-align:center;
}

/* -------------------------------- 

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: 50%;
  max-width: 768px;
  margin: 0 auto;
}

.cd-container.start{
  position: absolute;
  top: 54%;
  left:16%;
  color: white;
  padding: 0.5em 1em 0.5em 1em;
  background: url("../img/trans.png") ;
}

@media only screen and (min-width: 480px) {
.cd-container.start{
  position: absolute;
  top: 54%;
  left:24%;
  color: white;
}
}

.cd-container h3{
  font-size: 1.1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
  color: white;
}

.cd-container.page{
  position: absolute;
  top: 10%;
  left:10%;
  color: white;
  background: url("../img/trans.png") ;
}

.cd-container.page h3{
  padding: 0.5em 2em 0.5em 0.5em;
}
.cd-container.page p{
  font-size: 0.7em;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
  padding: 0.5em 1em 0.5em 1em;
  line-height: 120%;
  color: white;
}



@media only screen and (min-width: 480px) and (min-height: 530px) {
.cd-container h3{
  font-size: 1.3rem; 
}
.cd-container.page p{
  font-size:0.9rem;
}
}

@media only screen and (min-width: 650px) and (min-height: 700px){
.cd-container h3{
  font-size: 1.8rem; 
}
.cd-container.page p{
  font-size: 1.15rem;
}
}


@media only screen and (min-width: 768px) and (min-height: 800px){
.cd-container h3{
  font-size: 2.1rem; 
}
.cd-container.page p{
  font-size: 1.3rem;
}
}

.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 1);
  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: 23px 0 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  right: 0;
  width: 7em;
  -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 {
  font-size: 0.8em;
  display: block;
  height: 40px;
  line-height: 40px;
  padding-left: 5%;
  /*background: #2f292a;*/
  background: #FFF;
  border-top: 1px solid #453c3d;
  color: #8e7d7f;
}
@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: #FFEF41;
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
  }
}

.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.footer {
	min-height: unset;		
	text-align: center;			
	height:2.25em;
	max-height: 2.25em;
	
}

.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 h1, .cd-fixed-bg h2{
  position: absolute;
  left: 30%;
  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: 1px 1px 10px rgba(0, 0, 0, 1);
  color: white;
}

.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/djprime2.jpg");
  background-attachment: scroll;
  background-position: top right;
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/people-festival-party.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/turntable2.png");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../img/disco.jpg");
}
.cd-fixed-bg.cd-bg-5 {
  background-image: url("../img/wedding-cake-toppers.jpg");
}
.cd-fixed-bg.cd-bg-6 {
  background-image: url("../img/releases.jpeg");
}
.cd-fixed-bg.cd-bg-bricks {
  background-image: url("../img/bricks.jpg");
}

@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
}




.music {
  width:120px;
  background-color: #ffffffA0;
  padding: 5px;
}


.div-table {
  display: table;         
  width: auto;         
  /* background-color: #eee;         */
  border: 1px solid #666666;         
  border-spacing: 5px; /* cellspacing:poor IE support for  this */
}
.div-table-row {
  display: table-row;
  width: auto;
  clear: both;
  background-color: #ffffff80;
}
.div-table-col {
  float: left; /* fix for  buggy browsers */
  display: table-column;         
  vertical-align: middle; /* background-color: #ccc;   */
}