/*
 * Globals
 */


/* Links */

a, a:focus, a:hover {
    color: #fff;
}

.italic {
    font-style: italic;
    font-family: serif;
}

.row.row-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.row .content>h2 {
    margin-top: 0;
    font-size: 50px;
}

.row .content .price .italic {
    font-weight: normal;
}

.row .content .price {
    font-weight: bold;
    font-size: 35px;
}

.row .content .discount {
    color: #fff;
    color: rgba(255, 255, 255, 0.51);
    margin-right: 10px;
    text-shadow: none;
}

del {
    text-decoration: none;
    position: relative;
}

del:after {
    content: ' ';
    font-size: inherit;
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    top: 40%;
    bottom: 35%;
    border-top: 3px solid #333;
    border-bottom: 3px solid #333;
}

.row .content {
    position: relative;
    top: 10em;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 0 30px 0 15px;
}

.center-vert {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}


/*
 * Base structure
 */

html, body {
    height: 100%;
    background-color: #333;
}

body {
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}

body section {
    text-align: left;
}

body img {
    max-width: 100%;
}


/* Extra markup and styles for table-esque vertical and horizontal centering */

.site-wrapper {
    display: table;
    width: 100%;
    height: 100%;
    /* For at least Firefox */
    min-height: 100%;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, .5);
}

.site-wrapper-inner {
    display: table-cell;
    vertical-align: top;
    position: relative;
}

.header-container {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
}


/*
 * Header
 */

.masthead-brand {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.masthead-nav {
    position: relative;
}

.masthead-nav>li {
    display: inline-block;
    position: relative;
    background: transparent;
    max-width: 33%;
    overflow: hidden;
    float: left;
}

.masthead-nav>li:after {
    content: "";
    top: 100%;
    left: 0;
    width: 0%;
    height: 0;
    z-index: 1;
    border-width: 20px 0px 0px 130px;
    border-style: solid;
    border-color: #eee transparent;
    max-width: 100%;
    display: block;
    background: transparent !important;
}

.masthead-nav.nav-left>li:after {
    border-width: 20px 130px 0px 0px;
}

h1.header-heading {
    font-size: 50px;
}


/**
 * form
 */

#register-form .form-cont {
    padding: 30px;
    background: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.form-cont-mobile {
    display: none;
}

#register-form {
    position: static;
    margin-top: -50px;
    z-index: 8;
    right: 15px;
    position: absolute;
    width: 100%;
}

.3d-perspective {
    -webkit-perspective: 1000px;
            perspective: 1000px;
}

.form-cont {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transition: -webkit-transform ease 0.8s;
    transition: -webkit-transform ease 0.8s;
    transition: transform ease 0.8s;
    transition: transform ease 0.8s, -webkit-transform ease 0.8s;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.form-cont form#register {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.form-cont.flip {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-transition: -webkit-transform ease 0.8s;
    transition: -webkit-transform ease 0.8s;
    transition: transform ease 0.8s;
    transition: transform ease 0.8s, -webkit-transform ease 0.8s;
}


/*.form-cont.flip .back {
    display: block;
}*/

.form-cont {
    position: relative;
}

.form-cont .back {
    padding: 30px;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
}

.form-cont .back h2 {
    margin-top: 0;
}

.form-cont .back .btn {
    margin-top: 20px;
}

.form-cont .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.scrolling #register-form {
    position: fixed;
}

#register-form h1 {
    margin-top: 0;
    margin-bottom: 5px;
}

#register-form button, .btn.btn-default {
    width: 100%;
    background: #000;
    background: rgba(255, 255, 255, 0.8);
    border: 0;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 2px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    text-shadow: 0 0 1px #ccc;
}

.btn.btn-default {
    width: auto;
}

#register-form button:hover, .btn.btn-default:hover {
    background: #000;
    background: rgba(255, 255, 255, 1);
    color: #000;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

#register-form legend {
    color: #fff;
    font-weight: 100;
    font-size: 20px;
    border: 0 none;
}

#register-form form input {
    display: block;
    background: transparent;
    width: 100%;
    max-width: none;
    border: 0;
    font-weight: normal;
    font-size: 15px;
}

#register-form form {
    width: 100%;
}

#register-form form fieldset label {
    width: 100%;
    padding: 7px 10px;
    background: #fff;
    border-radius: 2px;
    color: #000000;
    text-shadow: 0 0 1px #eee;
    font-weight: normal;
    margin-bottom: 15px;
    font-size: 13px;
}

#msg {
    padding: 5px;
    background: rgba(212, 0, 0, 0.54);
    border: 1px solid rgba(195, 135, 135, 0.74);
    border-radius: 4px;
    position: relative;
    padding-left: 30px;
    color: #fff;
    display: none;
    margin-bottom: 10px;
}

#msg:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    line-height: 14px;
    top: 50%;
    margin-top: -7px;
    left: 10px;
}

#msg.failure:before {
    content: "\f071";
}

#msg.success:before {
    content: "\f00c";
}

#msg.info:before {
    content: "\f129";
}

#msg.processing:before {
    content: "\f021";
    -webkit-animation-name: spin;
    -webkit-animation-duration: 2000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 2000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 2000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.g-recaptcha>div {
    max-width: 100% !important;
    margin: 0 auto 10px;
}

.g-recaptcha>div iframe {
    max-width: 100% !important;
}


/**
 * images
 */

.header {
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
}

.header:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.header .scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding: 10px 10px 10px 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #616161;
    border-radius: 25px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: -19px;
    width: 38px;
    height: 38px;
    overflow: hidden;
}

.header .scroll:before {
    content: "\e259";
    display: block;
    line-height: 0;
    margin-top: 8px;
}

.header .scroll:after {
    content: "\e259";
    display: block;
    line-height: 0;
    /**
     * animation for scrolling
     */
    animation: scroll-fader linear 1s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: scroll-fader linear 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: scroll-fader linear 1s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: scroll-fader linear 1s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: scroll-fader linear 1s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@-webkit-keyframes scroll-fader {
    from {
        margin-top: 0;
        opacity: 1.0;
    }
    to {
        margin-top: 24px;
        opacity: 0;
    }
}

@keyframes scroll-fader {
    from {
        margin-top: 0;
        opacity: 1.0;
    }
    to {
        margin-top: 24px;
        opacity: 0;
    }
}

.image-effect {
    position: relative;
}

.image-effect div:first-child {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(1);
    -webkit-filter: grayscale(100%);
    filter: gray;
    filter: grayscale(100%);
    overflow: hidden;
    animation: image-effect linear 10s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: image-effect linear 10s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: image-effect linear 10s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: image-effect linear 10s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: image-effect linear 10s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@-webkit-keyframes image-effect {
    0% {
        height: 100%
    }
    25% {
        height: 0%;
    }
    75% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}

@keyframes image-effect {
    0% {
        height: 100%
    }
    25% {
        height: 0%;
    }
    75% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}

.masthead-nav>li+li {
    margin-left: 0px;
}

.masthead-nav>li>a {
    padding-right: 15px;
    padding-left: 15px;
    font-size: 16px;
    color: #fff;
    color: rgba(255, 255, 255, .75);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    font-weight: 300;
    text-transform: uppercase;
    text-align: left;
    max-width: 100px;
    min-height: 60px;
    line-height: 1.3;
    box-sizing: content-box;
}
.masthead-nav.nav-right>li>a{
    text-align: right;
}
.masthead-nav>li>a:hover, .masthead-nav>li.active>a {
    padding-bottom: 30px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    background: transparent;
    color: #fff;
}

.masthead-nav>.active>a, .masthead-nav>.active>a:hover, .masthead-nav>.active>a:focus {
    color: #fff;
    border-bottom-color: #fff;
}

@media (min-width: 768px) {
    .masthead-brand {
        position: absolute;
        left: 0%;
        width: 100%;
    }
    .masthead-nav.nav-left {
        float: left;
    }
    .masthead-nav.nav-right {
        float: right;
    }
}


/*
 * header
 */

.header {
    padding: 0 20px;
}


/**
 * carousel
 */

.carousel {
    margin-top: 30px;
    position: relative;
}

.carousel-inner div.item {
    height: 150px;
    padding-left: 150px;
}

.carousel-inner div.item>div.item-image {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -60px;
    border: 2px solid #5d5d5d;
}

.carousel-inner div.item:after {
    content: "";
    position: absolute;
    left: 134px;
    width: 2px;
    height: 100%;
    top: 0;
    background: #5d5d5d;
}

.carousel-inner div.item:before {
    content: "";
    position: absolute;
    left: 10px;
    width: 125px;
    height: 2px;
    top: 50%;
    background: #5d5d5d;
}

.carousel-inner div.item .item-content .item-name {
    font-family: serif;
    font-style: italic;
    margin-top: 10px;
}

.carousel-inner div.item .item-content .item-name:before {
    content: " ";
    width: 10px;
    height: 2px;
    background: #707070;
    display: block;
    float: left;
    margin: 10px 5px 0 0;
}

.carousel-inner div.item .item-content {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 16px;
}

.carousel-inner div.item .item-content:after {
    content: "\201D";
    position: absolute;
    right: 0;
    font-size: 180px;
    line-height: 0;
    z-index: -1;
    color: rgba(255, 255, 255, 0.21);
    text-shadow: none;
    bottom: -30px;
}

.carousel-inner div.item>div.item-image img {
    -o-object-fit: cover;
       object-fit: cover;
}

.carousel-indicators {
    bottom: -30px;
    width: auto;
    left: 150px;
    margin-left: 0;
}

.carousel-indicators .active {
    width: 8px;
    height: 8px;
}

.carousel-indicators li {
    width: 8px;
    height: 8px;
    margin: 0px;
}

.carousel-indicators li {
    border-color: rgba(255, 255, 255, 0.24);
}

.carousel-indicators .active, .carousel-indicators li:hover {
    background-color: rgba(255, 255, 255, 0.3);
}


/*
 * Footer
 */

.mastfoot {
    color: #999;
    /* IE8 proofing */
    color: rgba(255, 255, 255, .5);
}

.mastfoot p.copyright {
    display: inline-block;
}

.mastfoot p.social a {
    font-size: 16px;
    margin-left: 10px;
}

.mastfoot p.social {
    float: right;
}


/*
 * Mobile
 */

@media (max-width: 940px) {
    .masthead-nav>li>a {
        max-width: 100px;
        padding-right: 5px;
        padding-left: 5px;
        padding-top: 5px;
        padding-bottom: 5px;
        word-break: break-word;
        overflow: hidden;
    }
    .masthead-nav.nav-left>li:after {
        border-width: 20px 110px 0px 0px;
    }
    .masthead-nav>li:after {
        border-width: 20px 0px 0px 110px;
    }
}

@media (max-width: 800px) {
    .masthead-nav>li>a {
        max-width: 90px;
        padding-right: 5px;
        padding-left: 5px;
        padding-top: 5px;
        padding-bottom: 5px;
        word-break: break-word;
        overflow: hidden;
    }
    .masthead-nav.nav-left>li:after {
        border-width: 20px 100px 0px 0px;
    }
    .masthead-nav>li:after {
        border-width: 20px 0px 0px 100px;
    }
}

@media (max-width: 768px) {
    body img {
        max-height: 100%;
    }
    .row.row-flex {
        display: block;
    }
    .mastfoot p.copyright, .mastfoot p.social {
        width: 100%;
        text-align: center;
        font-size: 10px;
        float: none;
    }
    .mastfoot p.copyright {
        margin-top: 15px;
    }
    .masthead-nav>li:after {
        display: none;
    }
    .masthead-nav>li>a, .masthead-nav.nav-right>li>a {
        width: 100%;
        text-align: center;
    }
    .masthead-nav>li {
        width: 33%;
    }
    .row .content {
        position: relative;
        top: 0%;
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
        padding: 15px 15px 50px 15px;
        text-align: center;
    }
    .carousel-inner div.item {
        height: auto;
        padding-left: 0;
    }
    .carousel-inner div.item>div.item-image {
        position: static;
        top: 0;
        margin: 0 auto;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .carousel-inner div.item .item-content {
        position: relative;
        top: 0%;
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
    }
    .carousel-inner div.item:before, .carousel-inner div.item:after {
        display: none;
    }
    .carousel-inner div.item .item-content:after {
        bottom: 0;
    }
    .carousel-inner div.item .item-content .item-name:before {
        display: none;
    }
    .carousel-indicators {
        left: 0;
        margin-left: 0;
        width: 100%;
    }
    .image-effect div {
        text-align: center;
        padding: 15px 0;
    }
    .image-effect div img {
        max-height: 400px;
    }
    .form-cont-mobile {
        display: block;
        background: rgba(255, 255, 255, 0.25);
        padding: 5px;
        width: 100%;
    }
    .form-cont-mobile:after {
        display: table;
        clear: both;
        content: "";
    }
    .form-cont-mobile h2 {
        margin-top: 10px;
        font-size: 16px;
        float: left;
        margin-left: 10px;
    }
    .form-cont-mobile .btn-flip {
        margin-top: 0;
        font-size: 16px;
        float: right;
    }
    .form-cont {
        display: none;
    }
    .scrolling #register-form, #register-form {
        position: fixed;
        right: 0!important;
        left: 0 !important;
        bottom: 0;
        width: 100% !important;
    }
    #register-form .form-cont {
        border-radius: 0px;
        background: rgba(255, 255, 255, 0.25);
    }
    #form-cont.show {
        display: block;
    }
    .container {
        width: 100%;
    }.masthead-nav>li>a{
        max-width: 100%;
        width: 100%;
    }
}

@media (min-width: 768px) {
    /* Pull out the header and footer */
    .masthead-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.15);
        height: 80px;
        z-index: 9;
    }
    .mastfoot {
        position: fixed;
        bottom: 0;
        z-index: 9;
        width: 100%;
        left: 0;
    }
    /* Start the vertical centering */
    .site-wrapper-inner {
        vertical-align: middle;
    }
}

@media (min-width: 992px) {}
