charset "UTF-8";

/**************************************/
/*              GLOBALS               */
/**************************************/
html {
	height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: "roboto","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-weight: 400;
    background: #111;
}
img {
    pointer-events: none;
}
#wrapper {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}
.content {
    margin: 10px;
    padding: 15px;
    font-size: 14px;
}
::selection {
	background: #efbb43; /* Safari */
    color: #ffffff;
}
::-moz-selection {
	background: #efbb43; /* Firefox */
    color: #ffffff;
}
a {
    color: #cca80a;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    transition: all 150ms ease-in-out;
}
h2 {
    display: block;
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-size: 96px;
    font-weight: 900;
    font-style: italic;
    line-height: 144px;
    text-transform: uppercase;
    text-align: center;
}
h3 {
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-size: 24px;
    font-weight: 200;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 28.8px;
    text-align: center;
}
hr {
    margin: 35px 0;
    height: 2px;
    background: #000;
    border: none;
}
.button {
    margin: 32px 0 48px;
    text-align: center;
}
.button a:before {
    border-bottom: 1px solid #a58808;
    border-left: 1px solid #a58808;
    bottom: -8px;
    content: "";
    left: -8px;
    position: absolute;
    right: 8px;
    top: 8px;
}
.button a {
    position: relative;
    background: #cca80a none repeat scroll 0 0;
    border: 2px solid transparent;
    color: #fff;
    display: inline-block;
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 8px;
    padding: 12px 24px;
    text-shadow: none;
    text-transform: uppercase;
    transition: all 0.2s ease 0s;
    vertical-align: middle;
}
.button a:hover {
    background: #9b8008 none repeat scroll 0 0;
}
.clear {
    clear: both;
}
input:focus,
select:focus,
textarea:focus,
button:focus,
[contenteditable="true"]:focus {
    outline: none;
}
.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

/**************************************/
/*             ANIMATIONS             */
/**************************************/
@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px) translateX(-50%);;
    }
    100% {
        opacity: 1;
        transform: translateY(0px) translateX(-50%);;
    }
}
@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(-100%);;
    }
    100% {
        opacity: 1;
        transform: translateX(0%);;
    }
}

/**************************************/
/*               HEADER               */
/**************************************/
#header {
    position: absolute;
    top: 0;
    width: 100%;
    color: #fff;
    font-size: 16px;
    z-index: 100;
}
#header > div {
    position: relative;
    max-width: 1200px;
    height: 90px;
    margin: 0 auto;
}
#header .nav {
    margin: 10px;
    padding: 10px;
    text-align: center;
}
#header .nav .logo {
    display: inline-block;
    width: 150px;
    height: 27px;
    overflow: visible;
    vertical-align: top;
    margin-right: 50px;
}
#header .nav .logo img {
    width: 100%;
    margin-top: -5px;
}
#header .nav nav.web {
    display: inline-block;
    margin-top: 8px;
    vertical-align: top;
}
#header nav.web ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
#header nav.web ul li {
    position: relative;
    margin: 0 8px;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    transition: background 0.2s ease-out 0s;
}
#header nav.web ul li a {
    padding: 3.75px 0;
    line-height: 16px;
    color: rgba(255, 255, 255, 1);
}
#header nav.web ul li a span.fa {
    position: relative;
    top: -4px;
    margin-left: 4px;
}
#header nav.web ul li.active > a,
#header nav.web ul li:hover > a {
    color: rgba(255, 255, 255, 0.65);
}
#header nav.web ul li:hover div,
#header nav.web ul li div:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}
#header nav.web ul li div{
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    display: none;
    animation-duration: 0.3s;
    animation-name: fade-in-up;
}
#header nav.web ul li ul {
    position: relative;
    margin-top: 15px;
    background: #cca80a;
}
#header nav.web ul li ul:before {
    position: absolute;
    content: "";
    top: 8px;
    bottom: -8px;
    left: -8px;
    right: 8px;
    border-left: 1px solid #a58808;
    border-bottom: 1px solid #a58808;
}
#header nav.web ul li ul li {
    display: block;
    width: auto;
    white-space: nowrap;
    margin: 5px 15px;
    padding-bottom: 3px;
    text-align: left;
}
#header nav.web ul li ul li a {
    display: block;
    border-bottom: 1px solid #b49409;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.6px;
    font-weight: 400;
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    text-transform: capitalize;
    padding: 7px 0;
}
#header nav.web ul li ul li:hover a {
    color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid #836c06;
}
#header .nav nav.mobile {
    display: none;
    margin: 8px -20px;
    vertical-align: top;
    z-index: 9999;
}
#header nav.mobile ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    height: 27px;
    overflow: hidden;
}
#header nav.mobile ul li {
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s ease-out 0s;
}
#header nav.mobile > ul > li:not(:first-child) {
    background: #111;
    padding: 8px 0;
    border-bottom: 1px solid #000;
}
#header nav.mobile > ul > li:first-child {
    padding-bottom: 8px;
}
#header nav.mobile ul li a {
    padding: 3.75px 0;
    line-height: 16px;
    color: rgba(255, 255, 255, 1);
}
#header nav.mobile > ul > li:first-child a {
    padding-top: 0;
}
#header nav.mobile ul li a span.fa {
    position: relative;
    top: -4px;
    margin-left: 4px;
}
#header nav.mobile ul li.active > a,
#header nav.mobile ul li:hover > a {
    color: rgba(255, 255, 255, 0.65);
}
#header nav.mobile ul li ul {
    position: relative;
    margin-top: 0px;
    background: #cca80a;
    height: 0;
    overflow: hidden;
}
#header nav.mobile ul li ul li {
    display: block;
    width: auto;
    margin: 0 15px;
    padding: 8px 0;
    background: #cca80a;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
#header nav.mobile ul li ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    text-transform: capitalize;
}
#header nav.mobile ul li ul li:hover a {
    color: rgba(255, 255, 255, 1);
}
@media only screen and (min-width : 500px) and (max-width : 700px) {
    #header .nav .logo {
        display: block;
        margin-right: 0;
        margin: 0 auto;
        margin-bottom: 5px;
    }
}
@media only screen and (max-width : 500px) {
    #header .nav .logo {
        display: block;
        margin-right: 0;
        margin: 0 auto;
        margin-bottom: 5px;
    }
    #header .nav nav.web {
        display: none;
    }
    #header .nav nav.mobile {
        display: block;
    }
}

/**************************************/
/*             SLIDESHOW              */
/**************************************/
#slideshow {
    position: relative;
}
#slideshow:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 65%;
}
#slideshow > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
#slideshow .logo {
    position: relative;
    max-width: 75%;
    height: auto;
    margin: 0 auto;
    z-index: 50;
}
#slideshow .logo img {
    margin-top: 120px;
    width: 100%;
}
#slideshow .container {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    z-index: 0;
    font-size: 0;
    height: 100%;
}
#slideshow .container div {
    position: relative;
    display: inline-block;
    height: 100%;
}
#slideshow .container div img {
    position: relative;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
#slideshow .nav {
    position: absolute;
    bottom: 150px;
    right: 0;
    left: 0;
    z-index: 99;
}
#slideshow .nav ul {
    position: relative;
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
}
#slideshow .nav ul li {
    display: inline-block;
    padding: 0 8px;
    vertical-align: bottom;
    transition: all 0.2s ease 0s;
}
#slideshow .nav ul li a {
    display: block;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 24px;
    margin-bottom: 6px;
}
#slideshow .nav ul li a span {
    position: relative;
    display: block;
    width: 0px;
    height: 0px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #cca80a;
    border-radius: 8px;
    transition: all 0.2s ease 0s;
}
#slideshow .nav ul li.active {
    padding: 0;
}
#slideshow .nav ul li.active a {
    width: 24px;
    height: 24px;
    border: 2px solid #cca80a;
    margin-bottom: 0px;
}
#slideshow .nav ul li.active a span {
    width: 4px;
    height: 4px;
}
#slideshow .nav ul li a:hover span,
#slideshow .nav ul li.active a:hover span {
    width: 8px;
    height: 8px;
}
#slideshow .nav .right {
    position: absolute;
    right: 20%;
    bottom: 4px;
}
#slideshow .nav .left {
    position: absolute;
    left: 20%;
    bottom: 4px;
}
#slideshow .nav .left a,
#slideshow .nav .right a {
    font-size: 20px;
    color: rgba(255,255,255,0.75);
    transition: all 0.2s ease 0s;
}
#slideshow .nav .left a:hover,
#slideshow .nav .right a:hover {
    color: #fff;
}
@media only screen and (min-width : 900px) and (max-width : 1000px) {
    #slideshow .nav {
        bottom: 125px;
    }
    #slideshow .nav .right {
        right: 15%;
    }
    #slideshow .nav .left {
        left: 15%;
    }
}
@media only screen and (min-width : 700px) and (max-width : 900px) {
    #slideshow .nav {
        bottom: 100px;
    }
    #slideshow .nav .right {
        right: 10%;
    }
    #slideshow .nav .left {
        left: 10%;
    }
}
@media only screen and (min-width : 500px) and (max-width : 700px) {
    #slideshow .nav {
        bottom: 50px;
    }
    #slideshow .nav .right {
        right: 5%;
    }
    #slideshow .nav .left {
        left: 5%;
    }
}
@media only screen and (max-width : 500px) {
    #slideshow .nav {
        bottom: 25px;
    }
    #slideshow .nav .right {
        right: 3%;
    }
    #slideshow .nav .left {
        left: 3%;
    }
    #slideshow .logo {
        margin-top: -50px;
    }
}

/**************************************/
/*               PROMO                */
/**************************************/
#promo {
    position: relative;
    font-size: 0;
}
#promo .block {
    width: 50%;
    height: 430px;
    padding-bottom: 56%;
    display: inline-block;
    vertical-align: top;
}
#promo .block > div {
    height: 100%;
    text-align: center;
}
#promo .arcade {
    background: #fff;
}
#promo .pinball {
    background: url(../img/bgsales.jpg) no-repeat center top;
    background-size: cover;
}
#promo .arcade > div {
    padding-left: 67px;
}
#promo .pinball > div {
    padding-right: 67px;
}
#promo .arcade h2 {
    font-weight: 900;
    color: #000;
    margin: 112px 0 64px 0;
    text-shadow: none;
    transform: scale(1);
    transition: all 0.2s ease 0s;
}
#promo .pinball h2 {
    font-weight: 400;
    color: #fff;
    margin: 112px 0 64px 0;
    text-shadow: none;
    transform: scale(1);
    transition: all 0.2s ease 0s;
}
#promo .block:hover h2 {
    text-shadow: 5px 5px 0 rgba(204, 168, 10, 0.5);
    transform: scale(1.1);
}
@media only screen and (min-width : 900px) and (max-width : 1000px) {
    #promo h2 {
        font-size: 80px;
        margin: 75px 0 64px 0 !important;
    }
    #promo .block {
        height: 380px;
    }
}
@media only screen and (min-width : 700px) and (max-width : 900px) {
    #promo h2 {
        font-size: 70px;
        margin: 50px 0 40px 0 !important;
    }
    #promo .block {
        height: 330px;
    }
    #promo .arcade > div {
        padding-left: 20px;
    }
    #promo .pinball > div {
        padding-right: 20px;
    }
    #promo .button {
        margin: 32px 0 48px;
    }
}
@media only screen and (min-width : 500px) and (max-width : 700px) {
    #promo h2 {
        font-size: 50px;
        margin: 35px 0 10px 0 !important;
    }
    #promo .block {
        height: 220px;
    }
    #promo .arcade > div {
        padding-left: 0;
    }
    #promo .pinball > div {
        padding-right: 0;
    }
    #promo .button {
        margin: 0 0 48px;
    }
}
@media only screen and (max-width : 500px) {
    #promo h2 {
        font-size: 30px;
        margin: 0 0 0 0 !important;
        line-height: 90px;
    }
    #promo .block {
        height: 120px;
    }
    #promo .arcade > div {
        padding-left: 0;
    }
    #promo .pinball > div {
        padding-right: 0;
    }
    #promo .button {
        margin: 0 0 48px;
    }
}

/**************************************/
/*              FEATURED              */
/**************************************/
#featured {
    margin: -35% 0 -120px 0;
}
#featured > div {
    position: relative;
    height: 100%;
    margin: 0 52px;
    background-color: #eee;
}
#featured .row {
    font-size: 0;
}
#featured .item {
    display: inline-block;
    height: 100%;
}
#featured .w50 {
    width: 50%;
    position: relative;
}
#featured .w25 {
    width: 25%;
    position: relative;
}
#featured .w25:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%;
}
#featured .w50:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 50%;
}
#featured a {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#featured a .bg {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    z-index: 200;
}
#featured a .container {
    position: absolute;
    background: rgba(0,0,0,0.15);
    width: 100%;
    height: 100%;
    padding: 40px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    box-sizing: border-box;
    transition: background 0.3s ease 0s;
}
#featured a:hover .container,
#featured a.simple:hover .container {
    background: rgba(2,174,139,0.8);
}
#featured a .title {
    display: inline-block;
    font-size: 12.8px;
    font-weight: 700;
    line-height: 16px;
    margin: 22px 0 16px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease 0s;
}
#featured a .description {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    line-height: 24px;
}
#featured a .des {
    display: block;
    margin: 32px 0;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease 0s;
}
#featured a:hover .title {
    opacity: 1;
    transform: translateY(0px);
}
#featured a:hover .des {
    opacity: 1;
    transform: scale(1);
}
#featured a.simple .description {
    color: #000;
}
#featured a.simple .container {
    background: #fff;
}
#featured a.simple .title,
#featured a.simple .des {
    opacity: 1;
    transform: scale(1);
}
#featured a.simple:hover .title,
#featured a.simple:hover .des {
    opacity: 0;
    transform: scale(0);
}
@media only screen and (min-width : 1000px) and (max-width : 1250px) {
    #featured a .container {
        padding: 20px;
    }
    #featured a .des {
        margin: 20px 0;
        line-height: 20px;
    }
}
@media only screen and (min-width : 900px) and (max-width : 1000px) {
    #featured a .container {
        padding: 12px;
    }
    #featured a .des {
        margin: 12px 0;
        line-height: 18px;
        font-size: 14px;
    }
    #featured a .title {
        margin: 12px 0 12px;
    }
}
@media only screen and (min-width : 700px) and (max-width : 900px) {
    #featured a .container {
        padding: 6px;
    }
    #featured a .des {
        margin: 6px 0;
        line-height: 16px;
        font-size: 13px;
    }
    #featured a .title {
        margin: 0px 0 6px;
    }
}
@media only screen and (min-width : 600px) and (max-width : 700px) {
    #featured .w50 {
        width: 100%;
        position: relative;
    }
    #featured .w25 {
        width: 50%;
        position: relative;
    }
    #featured a .container {
        padding: 20px;
    }
    #featured a .des {
        margin: 20px 0;
        line-height: 20px;
    }
}
@media only screen and (min-width : 500px) and (max-width : 600px) {
    #featured .w50 {
        width: 100%;
        position: relative;
    }
    #featured .w25 {
        width: 50%;
        position: relative;
    }
    #featured a .container {
        padding: 12px;
    }
    #featured a .des {
        margin: 12px 0;
        line-height: 18px;
        font-size: 14px;
    }
    #featured a .title {
        margin: 12px 0 12px;
    }
}
@media only screen and (max-width : 500px) {
    #featured > div {
        margin: 0;
    }
    #featured .w50 {
        width: 100%;
        position: relative;
    }
    #featured .w25 {
        width: 50%;
        position: relative;
    }
    #featured a .container {
        padding: 12px;
    }
    #featured a .des {
        margin: 12px 0;
        line-height: 18px;
        font-size: 14px;
    }
    #featured a .title {
        margin: 12px 0 12px;
    }
}

/**************************************/
/*               ABOUT                */
/**************************************/
#about {
    background: url(../img/bgabout.jpg) no-repeat center center;
    background-size: cover;
}
#about > div {
    padding: 176px 52px 40px;
}
#about .title h3 {
    margin: 12px 0 24px;
}
#about .title h2 {
    margin: 48px 0;
    color: #cca80a;
}
#about .readstory {
    margin: 32px 0 48px;
    text-align: center;
}
#about .button a:before {
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
}
#about .button a {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #fff;
    color: #fff;
}
#about .button a:hover::before {
    border-bottom: 1px solid #cca80a;
    border-left: 1px solid #cca80a;
}
#about .button a:hover {
    border: 1px solid #cca80a;
    color: #cca80a;
}
#about .button a span {
    margin-left: 16px;
}
#about .grid {
    position: relative;
    height: 200px;
}
#about .grid .list {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    font-size: 0;
}
#about .grid .list li {
    width: 33.33%;
    display: inline-block;
    text-align: center;
    vertical-align: top;
}
#about .grid .list li > div {
    margin-bottom: 16px;
}
#about .grid .list li a:before {
    background: rgba(255, 255, 255, 0.25);
    content: "";
    height: 2px;
    left: 0;
    margin-top: -29px;
    position: absolute;
    top: 40px;
    width: 100%;
}
#about .grid .list li.active a:before {
    background: #fff;
}
#about .grid .list li a {
    position: relative;
    display: block;
}
#about .grid .head {
    height: 48px;
}
#about .grid .head span {
    display: block;
    height: 23px;
    width: 23px;
    background-size: contain;
    margin: 0 auto;
    opacity: 0.25;
}
#about .grid li.active .head span,
#about .grid li.active .text {
    opacity: 1;
}
#about .grid .tri .head span {
    background: url(../img/triangle.png) no-repeat center center;
}
#about .grid .sq .head span {
    background: url(../img/square.png) no-repeat center center;
}
#about .grid .cir .head span {
    background: url(../img/circle.png) no-repeat center center;
}
#about .grid .text {
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-size: 17.6px;
    font-weight: 200;
    color: #fff;
    text-transform: uppercase;
    line-height: 16.4px;
    margin-top: 16px;
    padding: 0 8px;
    opacity: 0.25;
}
#about .grid .descriptions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    list-style: outside none none;
    margin: 24px 0;
    padding: 0;
}
#about .grid .descriptions li {
    width: 100%;
    display: none;
    overflow: hidden;
}
#about .grid .descriptions li.active {
    display: block;
}
#about .grid .descriptions li div {
    transform: translateX(-100%);
    padding: 0 48px;
    color: #888;
    line-height: 24px;
    text-align: center;
    display: none;
    visibility: hidden;
    opacity: 0;
    animation-duration: 0.3s;
    animation-name: slide-in;
}
#about .grid .descriptions li.active div {
    transform: translateX(0%);
    display: block;
    visibility: visible;
    opacity: 1;
}
#about .grid .descriptions li div span {
    display: block;
    margin-top: 16px;
    text-align: center;
}
#about .grid .descriptions li div span a {
    background: rgba(255, 255, 255, 0.25) none repeat scroll 0 0;
    border-radius: 2px;
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 12.8px;
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
    line-height: 19.2px;
    color: #ccc;
    transition: background 0.2s ease-out 0s;
}
#about .grid .descriptions li div span a:hover {
    background: #cca80a;
    color: #fff;
}
@media only screen and (min-width : 900px) and (max-width : 1000px) {
    #about > div {
        padding: 176px 32px 40px;
    }
}
@media only screen and (min-width : 600px) and (max-width : 900px) {
    #about .grid {
        height: 240px;
    }
    #about > div {
        padding: 176px 0 40px;
    }
    #about .title h3 {
        font-size: 20px;
        line-height: 24px;
    }
    #about .title h2 {
        font-size: 72px;
        line-height: 120px;
    }
}
@media only screen and (min-width : 500px) and (max-width : 600px) {
    #about .grid {
        height: 240px;
    }
    #about > div {
        padding: 176px 0 40px;
    }
    #about .title h3 {
        font-size: 17px;
        line-height: 21px;
    }
    #about .title h2 {
        font-size: 62px;
        line-height: 110px;
    }
    #about .grid .head {
        height: 24px;
    }
    #about .grid .text {
        font-size: 14px;
    }
}
@media only screen and (max-width : 500px) {
    #about .grid {
        height: 240px;
    }
    #about > div {
        padding: 130px 0 40px;
    }
    #about .title.content {
        margin: 0;
        padding: 10px;
    }
    #about .title h3 {
        font-size: 17px;
        line-height: 21px;
        margin-bottom: 0;
    }
    #about .title h2 {
        font-size: 45px;
        line-height: 87px;
        margin-top: 0;
    }
    #about .grid .head {
        height: 24px;
    }
    #about .grid .text {
        font-size: 14px;
    }
    #about .grid .descriptions {
        bottom: -30px;
    }
}

/**************************************/
/*             NEWSLETTER             */
/**************************************/
#newsletter {
    background: #fff;
}
#newsletter > div {
    padding: 32px 52px 48px;
}
#newsletter .newsletter {
    text-align: center;
    font-weight: 200;
    color: #686868;
    line-height: 24px;
}
#newsletter h3 {
    font-size: 32px;
    color: #686868;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 48px;
    margin: 16px 0;
}
#newsletter .newsletter > div {
    margin-bottom: 24px;
}
#newsletter input {
    background: transparent;
    font-size: 16px;
    font-weight: 200;
    color: #686868;
    line-height: 24px;
    width: 420px;
    height: 50px;
    box-sizing: border-box;
    padding: 11.2px 20px;
    margin-right: 4px;
    border: 2px solid rgba(104,104,104,0.25);
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    border-radius: 0;
}
#newsletter input[type='submit'] {
    background: #e52783;
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    width: 143.75px;
    height: 50px;
    box-sizing: border-box;
    border: 2px solid #e52783;
    cursor: pointer;
    transition: all 0.2s ease 0s;
}
#newsletter input[type='submit']:hover {
    background: #c2176a;
    border: 2px solid #c2176a;
}
#newsletter input:focus {
    outline: none;
    border: 2px solid rgba(104,104,104,0.5);
}
@media only screen and (min-width : 650px) and (max-width : 800px) {
    #newsletter > div {
        padding: 32px 0 48px;
    }
}
@media only screen and (min-width : 550px) and (max-width : 650px) {
    #newsletter > div {
        padding: 32px 0 48px;
    }
    #newsletter input {
        width: 320px;
        padding: 11.2px;
    }
}
@media only screen and (min-width : 450px) and (max-width : 550px) {
    #newsletter > div {
        padding: 32px 0 48px;
    }
    #newsletter input {
        width: 275px;
        padding: 11.2px;
    }
    #newsletter input[type='submit'] {
        width: 110px;
    }
}
@media only screen and (max-width : 450px) {
    #newsletter > div {
        padding: 32px 0 48px;
    }
    #newsletter .content {
        padding: 10px;
        margin: 0;
    }
    #newsletter input {
        width: 225px;
        padding: 11.2px;
    }
    #newsletter input[type='submit'] {
        width: 100px;
    }
}

/**************************************/
/*               TITLE                */
/**************************************/
#title {
    height: 240px;
    overflow: hidden;
}
#title .bg {
    height: 100%;
    text-align: center;
}
#title .bg img {
    margin-top: -100px;
    width: 100%;
}
#title h2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #a58808;
    margin-top: 50px;
    padding-right: 10px;
    transition: all 0.3s ease 0s;
}
#title:hover h2 {
    color: #cca80a;
}
#title h3 {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
}
@media only screen and (max-width : 550px) {
    #title h2 {
        font-size: 72px;
        line-height: 110px;
        margin-top: 82px;
    }
    #title .bg img {
        margin-top: 0;
    }
}

/**************************************/
/*              CONTENT               */
/**************************************/
#content {
    padding: 32px 52px 48px;
    background: #fff;
}
#content img.fr-dii.fr-fir {
    float: right;
    margin: 5px 0 5px 5px;
    max-width: calc(100% - 5px);
}
#content img.fr-dii.fr-fil {
    float: left;
    margin: 5px 5px 5px 0;
    max-width: calc(100% - 5px);
}
#content img.fr-dii {
    display: inline-block;
    float: none;
    vertical-align: bottom;
    margin-left: 5px;
    margin-right: 5px;
    max-width: calc(100% - (2 * 5px));
}
#content .header .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    font-size: 12px;
    color: #888;
}
#content .header .breadcrumb li {
    display: inline-block;
}
#content .header .breadcrumb li:before {
    content: "/";
    margin: 0 10px;
}
#content .header .breadcrumb li:first-child:before {
    content: "";
    margin: 0;
}
#content .header form {
    display: inline-block;
    float: right;
}
#content .header form > div {
    display: inline-block;
}
#content .header input {
    background: transparent;
    font-size: 14px;
    font-weight: 200;
    color: #686868;
    line-height: 20px;
    width: 200px;
    height: 32px;
    box-sizing: border-box;
    padding: 4px 10px;
    margin-right: 4px;
    border: 2px solid rgba(104,104,104,0.25);
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    border-radius: 0;
}
#content .header input[type='submit'] {
    background: #e52783;
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    width: 100px;
    height: 32px;
    box-sizing: border-box;
    border: 2px solid #e52783;
    cursor: pointer;
    transition: all 0.2s ease 0s;
}
#content .header input[type='submit']:hover {
    background: #c2176a;
    border: 2px solid #c2176a;
}
#content .header input:focus {
    outline: none;
    border: 2px solid rgba(104,104,104,0.5);
}
#content .page {
    padding: 0;
    padding-top: 50px;
    margin: 0;
    color: #686868;
}
#content .page img[style*="float:left"] {
  margin: 10px 10px 10px 0;
}
#content .page img[style*="float:right"] {
  margin: 10px 0 10px 10px;
}
#content .page img:first-child {
    margin-top: 0;
}
#content .page h4:first-child,
#content .page h5:first-child,
#content .page h6:first-child
{
    margin-top: 0;
}
#content .page h4 {
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #cca80a;
    text-transform: uppercase;
    margin: 15px 0;
}
#content .page h5 {
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 15px 0;
}
#content .page h6 {
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #cca80a;
    text-transform: uppercase;
    margin: 15px 0;
}
#content .list {
    list-style: none;
    padding: 0;
    padding-top: 50px;
    margin: 0;
    font-size: 0;
}
#content .search .list {
    padding-top: 20px;
}
#content .list li {
    display: inline-block;
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 22px;
    background: #34bea2;
    vertical-align: top;
    transition: all 0.3s ease 0s;
}
#content .list li:nth-child(4n+4) {
    margin-right: 0;
}
#content .list li:hover {
    transform: scale(1.11);
}
#content .list .img,
#content ul.rel .img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
#content .list .container,
#content ul.rel .container {
    height: 100px;
}
#content .list .title,
#content ul.rel .title {
    display: inline-block;
    font-size: 12.8px;
    font-weight: 700;
    line-height: 16px;
    transition: all 0.3s ease 0s;
}
#content .list .description,
#content ul.rel .description {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    line-height: 24px;
    box-sizing: border-box;
}
#content .list .des {
    display: block;
    margin: 32px 0;
    transition: all 0.3s ease 0s;
    overflow: hidden;
}
#pacman {
    width: 100%;
    clear: both;
    text-align: center;
    background: #000;
}
#map {
    width: 100%;
    height: 450px;
}
#content .item {
    padding-top: 50px;
    font-size: 0;
}
#content .item .gallery {
    width: 40%;
    display: inline-block;
    vertical-align: top;
}
#content .item .gallery > * {
    margin-bottom: 12px;
}
#content .item .img {
    display: block;
}
#content .item .img > img {
    width: 100%;
    height: auto;
}
#content .item .noimg {
    overflow: hidden;
}
#content .item .noimg > img {
    width: 150%;
    height: auto;
    margin: 0 -25%;
}
#content .item .gallery .thumb {
    margin: 0 -6px;
}
#content .item .gallery .thumb > div {
    display: inline-block;
    width: 25%;
    padding: 6px;
    box-sizing: border-box;
}
#content .item .gallery .thumb > div > a {
    border: 2px solid rgba(104,104,104,0.25);
    padding: 2px;
    display: block;
}
#content .item .gallery .thumb > div > a:hover,
#content .item .gallery .thumb > div.active > a {
    border: 2px solid rgba(104,104,104,0.75);
    padding: 2px;
    display: block;
}
#content .item .gallery .thumb > div > a > div {
    background-size: cover !important;
}
#content .item .details {
    width: 60%;
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
    box-sizing: border-box;
}
#content .item > .title,
#content .search > .title {
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;
}
#content .search > .title {
    padding-top: 20px;
}
#content .item .details .overview {
    float: left;
}
#content .item .details .overview,
#content .item .details .price {
    display: inline-block;
    width: 50%;
    padding: 30px 0;
    font-size: 15px;
    vertical-align: top;
    border-top: 2px solid rgba(104,104,104,0.25);
}
#content .item .details .price {
    padding: 30px;
    box-sizing: border-box;
}
#content .item .details .overview > .title {
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-size: 17.6px;
    font-weight: 200;
    color: #cca80a;
    text-transform: uppercase;
}
#content .item .details .overview > ul {
    padding-left: 20px;
}
#content .item .details .price {
    background: rgba(104,104,104,0.12);
}
#content .item .details .price > .p {
    color: #9dcc26;
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
}
#content .item .details .price > .c {
    font-size: 25px;
}
#content .item .details .price > .inStock {
    font-size: 12px;
    text-align: center;
    margin-bottom: 30px;
}
#content .item .details .price > .order {
    text-align: center;
}
#content .item .details .price > .order > * {
    background: #e52783;
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    box-sizing: border-box;
    border: 2px solid #e52783;
    cursor: pointer;
    transition: all 0.2s ease 0s;
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
}
#content .item .details .price > .order > *:hover {
    background: #c2176a;
    border: 2px solid #c2176a;
}
#content .item .details .price > .order > * > span {
    font-size: 10px;
    display: block;
}
#content .item > .description,
#content .item > .related {
    margin-top: 30px;
    font-size: 14px;
}
#content .item > .description > .title,
#content .item > .related > .title{
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-size: 17.6px;
    font-weight: 200;
    color: #cca80a;
    text-transform: uppercase;
    border-top: 2px solid rgba(104,104,104,0.25);
    padding-top: 30px;
}
#content ul.rel {
    padding-top: 14px;
}
#content ul.rel li {
    width: 18%;
}
#content ul.rel li:nth-child(4n+4) {
    margin-right: 2%;
}
#content ul.rel li:nth-child(5n+5) {
    margin-right: 0;
}
#content ul.rel li:nth-child(n+6) {
    display: none;
}
@media only screen and (min-width : 1000px) and (max-width : 1200px) {
    #content .item .details .price {
        padding: 30px 10px;
    }
}
@media only screen and (min-width : 900px) and (max-width : 1000px) {
    #content .item .details .price {
        padding: 30px 10px;
    }
    #content .item .details .price > .order > * {
        padding: 10px;
    }
}
@media only screen and (min-width : 700px) and (max-width : 900px) {
    #content .list .description.content {
        padding: 0;
    }
}
@media only screen and (min-width : 500px) and (max-width : 700px) {
    #content .list .description.content {
        padding: 0;
    }
    #content .list li:nth-child(4n+4) {
        margin-right: 2%;
    }
    #content .list li:nth-child(3n+3) {
        margin-right: 0;
    }
    #content .list li {
        display: inline-block;
        width: 32%;
        margin-right: 2%;
    }
}
@media only screen and (max-width : 500px) {
    #content .list .description.content {
        padding: 0;
    }
    #content .list li:nth-child(4n+4) {
        margin-right: 2%;
    }
    #content .list li:nth-child(2n+2) {
        margin-right: 0;
    }
    #content .list li {
        display: inline-block;
        width: 49%;
        margin-right: 2%;
    }
}
@media only screen and (max-width : 600px) {
    #content .header form {
        display: block;
        float: none;
        margin-top: 20px;
        position: relative;
    }
    #content .header form > div {
        width: 100%;
        padding-right: 104px;
        box-sizing: border-box;
    }
    #content .header form > div > input {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    #content .header input[type='submit'] {
        position: absolute;
        top: 0;
        right: 0;
        margin-right: 0;
        margin-left: 4px;
    }
}
@media only screen and (min-width : 450px) and (max-width : 700px) {
    #content {
        padding: 32px 32px 48px;
    }
    #content .page {
        padding-top: 32px;
    }
}
@media only screen and (max-width : 450px) {
    #content {
        padding: 32px 0 48px;
    }
    #content .page {
        padding-top: 20px;
    }
}
@media only screen and (min-width : 750px) and (max-width : 900px) {
    #content .item .details .overview,
    #content .item .details .price {
        display: block;
        width: 100%;
    }
    #content .item .details .overview {
        padding-bottom: 0;
    }
    #content .item .gallery {
        width: 50%;
    }
    #content .item .details {
        width: 50%;
    }
}
@media only screen and (min-width : 600px) and (max-width : 750px) {
    #content .item .details .overview,
    #content .item .details .price {
        display: block;
        width: 100%;
    }
    #content .item .details .overview {
        padding-bottom: 0;
    }
    #content .item .gallery {
        width: 50%;
    }
    #content .item .details {
        width: 50%;
    }
    #content .item .details .price {
        padding: 30px 10px;
    }
    #content .item .details .price > .order > * {
        padding: 10px;
    }
}
@media only screen and (max-width : 600px) {
    #content .item .details .overview,
    #content .item .details .price {
        display: block;
        width: 100%;
    }
    #content .item .details .overview {
        padding-bottom: 0;
    }
    #content .item .gallery {
        width: 100%;
        margin-bottom: 10px;
    }
    #content .item .details {
        width: 100%;
        padding-left: 0;
    }
}
@media only screen and (min-width : 550px) and (max-width : 700px) {
    #content ul.rel li {
        width: 23.5%;
    }
    #content ul.rel li:nth-child(3n+3) {
        margin-right: 2%;
    }
    #content ul.rel li:nth-child(4n+4) {
        margin-right: 0;
    }
    #content ul.rel li:nth-child(n+6),
    #content ul.rel li:nth-child(n+5) {
        display: none;
    }
}
@media only screen and (min-width : 400px) and (max-width : 550px) {
    #content ul.rel li {
        width: 32%;
    }
    #content ul.rel li:nth-child(2n+2) {
        margin-right: 2%;
    }
    #content ul.rel li:nth-child(3n+3) {
        margin-right: 0;
    }
    #content ul.rel li:nth-child(n+6),
    #content ul.rel li:nth-child(n+5),
    #content ul.rel li:nth-child(n+4) {
        display: none;
    }
    #pacman {
        display: none;
    }
}
@media only screen and (max-width : 400px) {
    #content ul.rel li {
        width: 49%;
    }
    #content ul.rel li:nth-child(2n+2) {
        margin-right: 0%;
    }
    #content ul.rel li:nth-child(n+6),
    #content ul.rel li:nth-child(n+5),
    #content ul.rel li:nth-child(n+4),
    #content ul.rel li:nth-child(n+3) {
        display: none;
    }
    #pacman {
        display: none;
    }
}

/**************************************/
/*             PAGINATION             */
/**************************************/
#pagination {
    text-align: center;
}
#pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#pagination ul li {
    background: #111111;
    display: inline-block;
    width: 36px;
    height: 43px;
    vertical-align: top;
}
#pagination ul li a,
#pagination .selected > div {
    display: block;
    width: 100%;
    height: 37px;
    padding-top: 6px;
    color: #fff;
}
#pagination span {
    display: block;
    border: 2px solid #111;
    width: 25px;
    height: 21px;
    margin-left: 4px;
    padding: 3px 0 1px;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
}
#pagination .selected span {
    border: 2px solid #fff;
}
#pagination a:hover span {
    border: 2px solid #cca80a;
}
#pagination .prev {
    margin-right: 1px;
    width: 42px;
}
#pagination .next {
    margin-left: 1px;
    width: 42px;
}
#pagination .next a,
#pagination .prev a {
    padding-top: 11px;
    height: 32px;
}
#pagination .next a:hover,
#pagination .prev a:hover {
    background: #e52783;
}
#pagination .first {
    padding-left: 12px;
}
#pagination .last {
    padding-right: 12px;
}
#pagination .next .disabled,
#pagination .prev .disabled {
    color: #999;
    padding-top: 11px;
    height: 32px;
    width: 100%;
    transition: all 0.3s ease 0s;
}
#pagination .next .disabled:hover,
#pagination .prev .disabled:hover {
    background: #666;
}
#pagination .ddd {
    color: #999;
    padding-top: 3px;
    height: 40px;
    font-size: 21px;
}
@media only screen and (max-width : 600px) {
    #pagination .ddd {
        display: none;
    }
}

/**************************************/
/*               FOOTER               */
/**************************************/
footer {
    background: #111111;
}
footer > div {
    padding: 32px 52px 24px;
    vertical-align: top;
}
footer .logo {
    position: absolute;
    overflow: visible;
    margin: 5px 25px;
    display: inline-block;
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
    color: #888;
}
footer .logo .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: url(../img/gd_logo.png) no-repeat center center;
    background-size: contain;
    width: 200px;
    height: 120px;
    pointer-events: none;
}
footer .logo span {
    position: relative;
    display: block;
    margin-left: 10px;
    z-index: 200;
}
footer .logo .meta {
    margin-top: 50px;
}
footer .nav {
    list-style: none;
    padding: 15px;
    margin: 10px 10px 44px;
    float: right;
}
footer .nav li {
    margin: 8px 16px 0;
    display: inline-block;
}
footer .nav li:last-child {
    margin-right: 0;
}
footer .nav li a {
    font-family: "Exo 2","Helvetica","Tahoma","Geneva","Arial",sans-serif;
    font-weight: 200;
    font-size: 16px;
    color: #888;
    text-transform: uppercase;
    line-height: 24px;
}
footer .copyright {
    border-top: 2px solid rgba(136,136,136,0.1);
    font-size: 14.4px;
    font-weight: 400;
    color: #888;
    line-height: 21.6px;
}
footer a {
    color: #888;
    transition: all 0.2s ease 0s;
}
footer a:hover,
footer .nav li a:hover {
    color: #cca80a;
}
footer .copyright .left,
footer .copyright .right {
    margin: 25px;
    display: inline-block;
}
footer .copyright .right {
    float: right;
}
footer .copyright .right a {
    color: #cca80a;
    position: relative;
}
footer .copyright .right span {
    position: absolute;
    top: 8px;
    left: 0;
    z-index: 100;
    transition: all 0.2s ease 0s;
}
footer .copyright .right span.shadow {
    position: relative;
    top: 0;
    z-index: 0;
    opacity: 0.5;
    transition: all 0.2s ease 0s;
}
footer .copyright .right a:hover span.shadow {
    opacity: 0;
}
footer .copyright .right a:hover span:last-child {
    top: 0px;
}
@media only screen and (min-width : 550px) and (max-width : 900px) {
    footer .nav {
        display: none;
    }
    footer .logo {
        position: relative;
        margin: 5px 25px 18px;
        display: inline-block;
    }
}
@media only screen and (min-width : 450px) and (max-width : 550px) {
    footer .nav {
        display: none;
    }
    footer .logo {
        position: relative;
        margin: 5px 0 18px;
        display: inline-block;
    }
    footer .copyright .left,
    footer .copyright .right {
        margin: 25px 0;
    }
}
@media only screen and (max-width : 450px) {
    footer .nav {
        display: none;
    }
    footer .logo {
        position: relative;
        margin: 5px 0 18px;
        display: inline-block;
    }
    footer .copyright .left,
    footer .copyright .right {
        margin: 25px 0;
    }
    footer .copyright .left {
        font-size: 12px;
    }
        footer > div {
        padding: 32px 32px 24px;
    }
}

/**************************************/
/*               ERROR                */
/**************************************/
#content .error {
    font-size: 96px;
    font-weight: 900;
    text-align: center;
}
#content .error > span {
    color: #cca80a;
}
#content .error > p {
    font-weight: 300;
    font-size: 30px;
}