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

/* -----| GENERAL |---------------------------------------------------------- */

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

html {
    background-color: #355664;
    font-size: 100%;
}

body {
    margin-top: -20px;
    background-image: url("/images/christmas_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    top: 0;
    bottom: 0; 
    height: 100%;
    weight: 100%;
    z-index: -10;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif, Verdana;
    font-size: .8em;
    text-shadow: 1px 1px 1px #333;
}

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

a:hover {
  color: lightgreen;
  text-decoration: underline;
}

.pageWrap {
    margin: 20px auto;
    width: 740px;
    z-index: 99; 
}


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

/* -----| CONTENT |---------------------------------------------------------- */

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



h1 {
    font-size: 2em;
    letter-spacing: 1px;
    margin: 20px 0;
}



h2 {
    background-color: red;
    color: #FFF;
    letter-spacing: 1px;
    margin: 20px 0;
    padding: 5px;
}

h3 {
    font-size: 18px;
    color: #FFF;
}

p {

    line-height: 1.5em;

    margin: 20px 0;

    text-align: justify;

}





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

/* -----| MISCELLANEOUS |---------------------------------------------------- */

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

#cboxCurrent {
    display: none !important;
}

/* --- FLOATS --- */

.floatLeft {
	float: left;
	width: auto;
}

.floatRight {
	float: right;
	width: auto;
}

/* --- TEXT ALIGNMENT --- */

.textLeft {
	text-align: left;
}

.textCenter {
	text-align: center;
}

.textRight {
	text-align: right;
}


/* --- JS MENU --- */
.open {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s linear;
}

.open:hover { 
opacity: 0.8;
}

.open span {
  display: block;
  float: left;
  clear: both;
  height: 4px;
  width: 40px;
  border-radius: 40px;
  background-color: #fff;
  position: absolute;
  right: 3px;
  top: 3px;
  overflow: hidden;
  transition: all 0.4s ease;
}
 
.open span:nth-child(1) {
  margin-top: 10px;
  z-index: 9;
}

.open span:nth-child(2) { 
margin-top: 25px;
}

.open span:nth-child(3) { 
margin-top: 40px;
}

.sub-menu {
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 0;
  width: 0;
  right: 0;
  top: 0;
  position: absolute;
  background-color: rgba(38, 84, 133, 0.54);
  border-radius: 50%;
  z-index: 18;
  overflow: hidden;
}

.sub-menu li {
  display: block;
  float: right;
  clear: both;
  height: auto;
  margin-right: -160px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sub-menu li:first-child {
 margin-top: 180px;
}

.sub-menu li:nth-child(1) {
 -webkit-transition-delay: 0.05s;
}

.sub-menu li:nth-child(2) {
 -webkit-transition-delay: 0.10s;
}

.sub-menu li:nth-child(3) {
 -webkit-transition-delay: 0.15s;
}

.sub-menu li:nth-child(4) {
 -webkit-transition-delay: 0.20s;
}

.sub-menu li:nth-child(5) {
 -webkit-transition-delay: 0.25s;
}

.sub-menu li a {
  color: #fff;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  width: 100%;
  display: block;
  float: left;
  line-height: 40px;
}

.oppenned .sub-menu {
  opacity: 1;
  height: 400px;
  width: 400px;
}

.oppenned span:nth-child(2) {
 overflow: visible;
}

.oppenned span:nth-child(1),
.oppenned span:nth-child(3) {
  z-index: 100;
  transform: rotate(45deg);
}

.oppenned span:nth-child(1) {
 transform: rotate(45deg) translateY(12px) translateX(12px);
}

.oppenned span:nth-child(2) {
  height: 400px;
  width: 400px;
  right: -160px;
  top: -160px;
  border-radius: 50%;
  background-color: rgba(38, 84, 133, 0.54);
}
 
.oppenned span:nth-child(3) {
 transform: rotate(-45deg) translateY(-10px) translateX(10px);
}

.oppenned li {
 margin-right: 168px;
}
/* --- JS MENU --- */