@-webkit-keyframes empty {
    0% {
        opacity: 1
    }
}
@-moz-keyframes empty {
    0% {
        opacity: 1
    }
}
@keyframes empty {
    0% {
        opacity: 1
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@-moz-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}
@-moz-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}
@-webkit-keyframes backSlideOut {
    25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px)
    }
    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%)
    }
    100% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%)
    }
}
@-moz-keyframes backSlideOut {
    25% {
        opacity: .5;
        -moz-transform: translateZ(-500px)
    }
    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%)
    }
    100% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%)
    }
}
@keyframes backSlideOut {
    25% {
        opacity: .5;
        transform: translateZ(-500px)
    }
    75% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%)
    }
    100% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%)
    }
}
@-webkit-keyframes backSlideIn {
    0%, 25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(200%)
    }
    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0) translateX(0)
    }
}
@-moz-keyframes backSlideIn {
    0%, 25% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(200%)
    }
    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateZ(0) translateX(0)
    }
}
@keyframes backSlideIn {
    0%, 25% {
        opacity: .5;
        transform: translateZ(-500px) translateX(200%)
    }
    75% {
        opacity: .5;
        transform: translateZ(-500px)
    }
    100% {
        opacity: 1;
        transform: translateZ(0) translateX(0)
    }
}
@-webkit-keyframes scaleToFade {
    to {
        opacity: 0;
        -webkit-transform: scale(0.8)
    }
}
@-moz-keyframes scaleToFade {
    to {
        opacity: 0;
        -moz-transform: scale(0.8)
    }
}
@keyframes scaleToFade {
    to {
        opacity: 0;
        transform: scale(0.8)
    }
}
@-webkit-keyframes goDown {
    from {
        -webkit-transform: translateY(-100%)
    }
}
@-moz-keyframes goDown {
    from {
        -moz-transform: translateY(-100%)
    }
}
@keyframes goDown {
    from {
        transform: translateY(-100%)
    }
}
@-webkit-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -webkit-transform: scale(1.5)
    }
}
@-moz-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -moz-transform: scale(1.5)
    }
}
@keyframes scaleUpFrom {
    from {
        opacity: 0;
        transform: scale(1.5)
    }
}
@-webkit-keyframes scaleUpTo {
    to {
        opacity: 0;
        -webkit-transform: scale(1.5)
    }
}
@-moz-keyframes scaleUpTo {
    to {
        opacity: 0;
        -moz-transform: scale(1.5)
    }
}
@keyframes scaleUpTo {
    to {
        opacity: 0;
        transform: scale(1.5)
    }
}
.animated {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -ms-animation-duration: 500ms;
    -o-animation-duration: 500ms;
    animation-duration: 500ms
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}
@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}
@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}
@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}
@-o-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0)
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8;
    filter: alpha(opacity=80)
}
.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none!important;
    -webkit-backface-visibility: hidden
}
.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
}
.mfp-align-top .mfp-container:before {
    display: none
}
.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto
}
.mfp-ajax-cur {
    cursor: progress
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}
.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}
.mfp-auto-cursor .mfp-content {
    cursor: auto
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}
.mfp-loading.mfp-figure {
    display: none
}
.mfp-hide {
    display: none!important
}
.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}
.mfp-preloader a {
    color: #ccc
}
.mfp-preloader a:hover {
    color: white
}
.mfp-s-ready .mfp-preloader {
    display: none
}
.mfp-s-error .mfp-content {
    display: none
}
button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: 0;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none
}
button::-moz-focus-inner {
    padding: 0;
    border: 0
}
.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: white;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace
}
.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100)
}
.mfp-close:active {
    top: 1px
}
.mfp-close-btn-in .mfp-close {
    color: #333
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: white;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}
.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px
}
.mfp-arrow {
    position: absolute;
    opacity: .65;
    filter: alpha(opacity=65);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}
.mfp-arrow:active {
    margin-top: -54px
}
.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100)
}
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent
}
.mfp-arrow:after,
.mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px
}
.mfp-arrow:before,
.mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: .7
}
.mfp-arrow-left {
    left: 0
}
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
    border-right: 17px solid white;
    margin-left: 31px
}
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f
}
.mfp-arrow-right {
    right: 0
}
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
    border-left: 17px solid white;
    margin-left: 39px
}
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f
}
.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px
}
.mfp-iframe-holder .mfp-close {
    top: -40px
}
.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}
.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black
}
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto
}
.mfp-figure {
    line-height: 0
}
.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444
}
.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px
}
.mfp-figure figure {
    margin: 0
}
.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}
.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px
}
.mfp-image-holder .mfp-content {
    max-width: 100%
}
.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}
@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}
@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75)
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}
.mfp-ie7 .mfp-img {
    padding: 0
}
.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px
}
.mfp-ie7 .mfp-container {
    padding: 0
}
.mfp-ie7 .mfp-content {
    padding-top: 44px
}
.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0
}
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out
}
.mfp-fade.mfp-bg.mfp-ready {
    opacity: .8
}
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0
}
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    transition: all .15s ease-out
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}
body {
    line-height: 1
}
ol,
ul {
    list-style: none
}
blockquote,
q {
    quotes: none
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
html {
    height: 100%
}
html.m-modal-active,
html.m-modal-active body {
    overflow: hidden;
    -webkit-overflow-scrolling: touch
}
body {
    position: relative;
    margin: 0;
    font: 16px/1.5em "Open Sans", Arial, sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -ms-word-wrap: break-word;
    word-wrap: break-word
}
a,
a:hover,
a:focus,
a:active {
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    text-decoration: none;
    outline: 0
}
a {
    border-bottom: 1px solid transparent
}
code {
    font-family: monospace
}
button {
    background: 0;
    cursor: pointer;
    outline: 0
}
strong {
    font-weight: bold
}
em {
    font-style: italic
}
input,
textarea,
select {
    font: 16px "Open Sans", Arial, sans-serif;
    outline: 0;
    font-weight: 300
}
img {
    max-width: 100%
}
.various-content section {
    margin-bottom: 72px
}
.various-content section:after {
    display: table;
    clear: both;
    height: 0;
    content: ''
}
.various-content p {
    margin-bottom: 24px;
    line-height: 1.5em
}
.various-content h2 {
    position: relative;
    margin-bottom: 24px;
    padding-left: 15px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.875em;
    line-height: normal;
    font-weight: bold;
    text-transform: uppercase
}
.various-content h2:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 21px
}
.various-content h3 {
    margin-bottom: 24px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.5em;
    line-height: normal;
    font-weight: bold;
    text-transform: uppercase
}
.various-content h4 {
    margin-bottom: 24px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.125em;
    line-height: normal;
    font-weight: bold
}
.various-content h5 {
    margin-bottom: 12px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1em;
    line-height: normal;
    font-weight: bold
}
.various-content h6 {
    margin-bottom: 12px;
    font-size: 1em;
    line-height: normal;
    font-weight: normal
}
.various-content dl {
    margin-bottom: 24px
}
.various-content dl:after {
    display: table;
    clear: both;
    height: 0;
    content: ''
}
.various-content dl>dt {
    clear: left;
    float: left;
    width: 40%;
    max-width: 140px;
    font-weight: bold
}
.various-content dl>dd {
    float: left;
    width: 60%
}
.various-content ul {
    margin-bottom: 24px
}
.various-content ul>li {
    position: relative;
    margin-top: 10px;
    padding-left: 15px
}
.various-content ul>li:first-child {
    margin-top: 0
}
.various-content ul>li:before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px
}
.various-content ul ol,
.various-content ul ul {
    margin: 10px 0 0 0
}
.various-content ol {
    margin-bottom: 24px
}
.various-content ol>li {
    position: relative;
    margin-top: 10px;
    list-style-type: decimal;
    list-style-position: inside
}
.various-content ol>li:first-child {
    margin-top: 0
}
.various-content ol ul,
.various-content ol ol {
    margin: 10px 0 0 20px
}
.various-content table {
    margin-bottom: 24px;
    width: 100%;
    border-collapse: collapse
}
.various-content table th {
    padding: 15px;
    font-weight: bold;
    text-align: left;
    font-family: "Montserrat", Arial, sans-serif;
    text-transform: uppercase;
    border-bottom: 1px solid transparent
}
.various-content table th.textalign-right {
    text-align: right
}
.various-content table td {
    padding: 15px
}
.various-content>*:last-child {
    margin-bottom: 0
}
.heading-2 {
    position: relative;
    margin-bottom: 24px;
    padding-left: 15px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.875em;
    line-height: normal;
    font-weight: bold;
    text-transform: uppercase
}
.heading-2:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 21px
}
.heading-2.m-small {
    font-size: 1.5em
}
.heading-2.m-small:before {
    top: 7px;
    height: 17px
}
.heading-3 {
    margin-bottom: 24px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.5em;
    line-height: normal;
    font-weight: bold;
    text-transform: uppercase
}
.default-form label {
    display: block;
    margin-bottom: 3px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .875em;
    text-transform: uppercase
}
.default-form input,
.default-form textarea,
.default-form select,
.default-form .selectbox-input .toggle {
    position: relative;
    padding: 11px 15px;
    width: 100%;
    max-width: 700px;
    border: 0;
    border-radius: 5px;
    -webkit-transition: background-color 300ms ease-in-out;
    -moz-transition: background-color 300ms ease-in-out;
    -ms-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out
}
.default-form input.m-type-2,
.default-form textarea.m-type-2,
.default-form select.m-type-2 {
    border: 1px solid transparent;
    padding: 10px 14px
}
.default-form textarea {
    max-width: 100%;
    height: 142px
}
.default-form .form-field {
    margin-bottom: 24px
}
.default-form .form-field-title {
    display: block;
    margin-bottom: 3px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .875em;
    text-transform: uppercase;
    font-weight: normal
}
.default-form p {
    margin-bottom: 24px;
    line-height: 1.5em
}
.default-form .datepicker-input {
    position: relative;
    width: 100%
}
.default-form .datepicker-input>i {
    position: absolute;
    top: 11px;
    right: 14px;
    font-size: 19px;
    cursor: pointer
}
.default-form .checkbox-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 8px
}
.default-form .checkbox-list>li {
    list-style-type: none;
    margin: 0;
    padding: 0
}
.default-form .checkbox-list>li:before {
    content: none
}
.default-form .checkbox-list>li {
    display: inline-block;
    margin-right: 20px
}
.default-form .checkbox-input input {
    display: none;
    width: auto
}
.default-form .checkbox-input label {
    display: inline-block;
    position: relative;
    padding-left: 22px;
    font-family: "Open Sans", Arial, sans-serif;
    text-transform: none;
    font-weight: 300;
    cursor: pointer
}
.default-form .checkbox-input label:before {
    content: '\f096';
    position: absolute;
    top: 4px;
    left: 0;
    font-size: 18px;
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
.default-form .checkbox-input.m-checked label:before {
    content: '\f046'
}
.default-form .selectbox-input {
    position: relative;
    max-width: 700px
}
.default-form .selectbox-input>select {
    display: none
}
.default-form .selectbox-input .toggle {
    position: relative;
    text-align: left
}
.default-form .selectbox-input .toggle.m-active {
    border-radius: 5px 5px 0 0
}
.default-form .selectbox-input .toggle:after {
    content: '\f078';
    position: absolute;
    top: 13px;
    right: 12px;
    font-size: 19px;
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out
}
.default-form .selectbox-input .toggle.m-active:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}
.default-form .selectbox-input .fake-selectbox {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding-bottom: 5px;
    max-height: 200px;
    border-radius: 0 0 5px 5px;
    z-index: 30;
    overflow: auto
}
.default-form .selectbox-input .fake-selectbox>li {
    list-style-type: none;
    margin: 0;
    padding: 0
}
.default-form .selectbox-input .fake-selectbox>li:before {
    content: none
}
.default-form .selectbox-input .fake-selectbox>li {
    padding: 5px 15px;
    cursor: pointer;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out
}
.default-form .selectbox-input.m-small {
    font-size: .875em
}
.default-form .selectbox-input.m-small .toggle {
    padding: 8px 15px
}
.default-form .selectbox-input.m-small .toggle:after {
    font-size: 16px
}
.default-form .selectbox-input.m-type-2 .toggle {
    padding: 10px 14px;
    border: 1px solid transparent
}
.default-form .selectbox-input.m-type-2 .toggle:after {
    top: 12px
}
.default-form .selectbox-input.m-type-2.m-small .toggle {
    padding: 7px 14px
}
.default-form .selectbox-input.m-type-2 .fake-selectbox {
    border: 1px solid transparent;
    border-top: 0
}
.default-form .quantity-input {
    position: relative;
    max-width: 80px
}
.default-form .quantity-input .fake-input {
    padding-right: 30px;
    text-align: center
}
.default-form .quantity-input .plus,
.default-form .quantity-input .minus {
    display: block;
    position: absolute;
    right: 3px;
    width: 18px;
    height: 18px;
    font-size: 10px;
    border-radius: 3px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out
}
.default-form .quantity-input .plus .fa,
.default-form .quantity-input .minus .fa {
    position: relative;
    top: -3px
}
.default-form .quantity-input .plus {
    top: 3px
}
.default-form .quantity-input .minus {
    bottom: 3px
}
.default-form .form-note {
    margin: 24px 0;
    padding-top: 12px;
    border-top: 1px solid transparent
}
.default-form .form-note p {
    margin: 0
}
.default-form .form-note span {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .875em
}
.textalign-center {
    text-align: center
}
.textalign-left {
    text-align: left
}
.textalign-right {
    text-align: right
}
.valign-middle {
    vertical-align: middle
}
.valign-top {
    vertical-align: top
}
.valign-bottom {
    vertical-align: bottom
}
.lead {
    line-height: 1.5em;
    font-size: 1.500em;
    font-weight: 400
}
.no-border {
    border: 0
}
.rounded {
    border-radius: 50%
}
.max-width-180 {
    max-width: 180px
}
.max-width-250 {
    max-width: 250px
}
.margin-sides-auto {
    margin-left: auto;
    margin-right: auto
}
.strikethrough {
    text-decoration: line-through
}
.clearfix:before,
.clearfix:after {
    display: table;
    clear: both;
    height: 0;
    content: ''
}
.various-content .c-accordion,
.c-accordion {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 24px
}
.various-content .c-accordion>li,
.c-accordion>li {
    list-style-type: none;
    margin: 0;
    padding: 0
}
.various-content .c-accordion>li:before,
.c-accordion>li:before {
    content: none
}
.various-content .c-accordion>li,
.c-accordion>li {
    position: relative;
    margin-top: 12px;
    border: 1px solid transparent;
    border-radius: 5px
}
.various-content .c-accordion>li:first-child,
.c-accordion>li:first-child {
    margin-top: 0
}
.various-content .c-accordion .accordion-title,
.c-accordion .accordion-title {
    position: relative;
    margin: 0;
    padding: 18px 15px 18px 40px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer
}
.various-content .c-accordion .accordion-title:before,
.c-accordion .accordion-title:before {
    content: '\f067';
    display: block;
    position: absolute;
    top: 21px;
    left: 15px;
    font-size: 18px;
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
.various-content .c-accordion>li.m-active .accordion-title:before,
.c-accordion>li.m-active .accordion-title:before {
    content: '\f068'
}
.various-content .c-accordion>li.m-has-price .accordion-title,
.c-accordion>li.m-has-price .accordion-title {
    padding-right: 100px
}
.various-content .c-accordion .accordion-price,
.c-accordion .accordion-price {
    position: absolute;
    top: 18px;
    right: 15px;
    font-weight: bold;
    text-transform: uppercase
}
.various-content .c-accordion .accordion-price .strikethrough,
.c-accordion .accordion-price .strikethrough {
    font-size: .875em;
    font-weight: 300;
    text-transform: none
}
.various-content .c-accordion .accordion-content,
.c-accordion .accordion-content {
    display: none;
    margin-top: -5px;
    padding: 0 15px 18px 40px
}
.various-content .c-accordion .accordion-content>*,
.c-accordion .accordion-content>* {
    margin: 15px 0 0 0
}
.various-content .c-accordion .accordion-content>*:first-child,
.c-accordion .accordion-content>*:first-child {
    margin: 0
}
.various-content .c-accordion.m-radio-group .accordion-title:before,
.c-accordion.m-radio-group .accordion-title:before {
    content: '\f096'
}
.various-content .c-accordion.m-radio-group>li.m-active .accordion-title:before,
.c-accordion.m-radio-group>li.m-active .accordion-title:before {
    content: '\f046'
}
.various-content .c-accordion.m-radio-group input,
.c-accordion.m-radio-group input {
    display: none
}
.c-alert-message {
    position: relative;
    padding: 20px 20px 20px 45px;
    font-size: .875em;
    border-radius: 5px
}
.c-alert-message>.ico {
    position: absolute;
    top: 19px;
    left: 15px;
    font-size: 24px
}
.c-article {
    margin: 0 auto 24px auto;
    max-width: 320px
}
.c-article .article-image {
    margin-bottom: 12px
}
.c-article .article-image a {
    display: block;
    border: 0;
    display: block;
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}
.c-article .article-image a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 700ms ease-in-out;
    -moz-transition: all 700ms ease-in-out;
    -ms-transition: all 700ms ease-in-out;
    -o-transition: all 700ms ease-in-out;
    transition: all 700ms ease-in-out
}
.c-article .article-image a:after {
    content: "\f067";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -10px;
    width: 100%;
    font-size: 24px;
    text-align: center;
    z-index: 30;
    opacity: 0;
    filter: alpha(opacity=0);
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 700ms ease-in-out;
    -moz-transition: all 700ms ease-in-out;
    -ms-transition: all 700ms ease-in-out;
    -o-transition: all 700ms ease-in-out;
    transition: all 700ms ease-in-out
}
.c-article .article-image a:hover:after,
.c-article .article-image a:hover:before {
    opacity: 1;
    filter: alpha(opacity=100)
}
.c-article .article-image a img {
    top: 0;
    left: 0;
    backface-visibility: hidden
}
.c-article .article-image a img {
    z-index: 10;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 1500ms ease-in-out;
    -moz-transition: all 1500ms ease-in-out;
    -ms-transition: all 1500ms ease-in-out;
    -o-transition: all 1500ms ease-in-out;
    transition: all 1500ms ease-in-out;
    -webkit-transform: translate3d(0, 0, 0)
}
.c-article .article-image a:hover img {
    -webkit-transform: scale(1.2) translate(-5px, -5px);
    -moz-transform: scale(1.2) translate(-5px, -5px);
    -ms-transform: scale(1.2) translate(-5px, -5px);
    -o-transform: scale(1.2) translate(-5px, -5px);
    transform: scale(1.2) translate(-5px, -5px)
}
@media(max-width:991px) {
    .c-article .article-image a {
        -webkit-transform: none
    }
    .c-article .article-image a img {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        -webkit-transform: none
    }
    .c-article .article-image a:hover img {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none
    }
}
.c-article .article-image img {
    display: block
}
.c-article .article-title {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1.125em;
    font-weight: 300;
    text-transform: none
}
.c-button {
    display: inline-block;
    position: relative;
    top: 0;
    padding: 11px 20px 10px 20px;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    border-radius: 0 5px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out
}
.c-button.m-small {
    padding: 5px 15px 4px 15px;
    font-size: .875em
}
.c-button.m-medium {
    padding: 14px 25px
}
.c-button.m-big {
    padding: 20px 35px;
    font-size: 1.125em
}
.c-button.m-type-2 {
    padding: 10px 19px 9px 19px;
    border: 1px solid transparent
}
.c-button.m-small.m-type-2 {
    padding: 4px 14px 3px 14px
}
.c-button.m-medium.m-type-2 {
    padding: 13px 24px
}
.c-button.m-big.m-type-2 {
    padding: 19px 34px
}
.c-button .fa {
    margin-right: 10px
}
.c-button:active {
    top: 2px
}
.various-content .c-cta-message,
.c-cta-message {
    margin-bottom: 24px;
    padding: 30px;
    border-radius: 5px
}
.various-content .c-cta-message h2,
.c-cta-message h2 {
    margin-bottom: 0;
    padding: 0;
    font-size: 1.5em
}
.various-content .c-cta-message h2:before,
.c-cta-message h2:before {
    display: none
}
.various-content .c-cta-message p,
.c-cta-message p {
    margin: 0
}
.c-divider {
    margin: 24px 0;
    border: 0;
    border-top: 1px solid transparent
}
.c-divider.m-x-small {
    margin: 12px 0
}
.c-divider.m-medium {
    margin: 36px 0
}
.c-divider.m-large {
    margin: 48px 0
}
.c-gallery {
    margin-bottom: 24px
}
.c-gallery .thumb-list:after {
    display: table;
    clear: both;
    height: 0;
    content: ''
}
.c-gallery .thumb {
    float: left;
    width: 25%
}
.c-gallery .owl-carousel .thumb {
    float: none;
    width: auto
}
.c-gallery .thumb a {
    display: block;
    border: 0;
    display: block;
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0)
}
.c-gallery .thumb a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 700ms ease-in-out;
    -moz-transition: all 700ms ease-in-out;
    -ms-transition: all 700ms ease-in-out;
    -o-transition: all 700ms ease-in-out;
    transition: all 700ms ease-in-out
}
.c-gallery .thumb a:after {
    content: "\e816";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
	color:#fff;
    margin-top: -10px;
    width: 100%;
    font-size: 4em;
    text-align: center;
    z-index: 30;
    opacity: 0;
	background :none !important;
    filter: alpha(opacity=0);
    display: inline-block;
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 700ms ease-in-out;
    -moz-transition: all 700ms ease-in-out;
    -ms-transition: all 700ms ease-in-out;
    -o-transition: all 700ms ease-in-out;
    transition: all 700ms ease-in-out
}
.c-gallery .thumb a:hover:after,
.c-gallery .thumb a:hover:before {
    opacity: 1;
	background :rgba(205, 29, 31, 0.6) none repeat scroll 0 0;
    filter: alpha(opacity=100)
	
}
.c-gallery .thumb a img {
    top: 0;
    left: 0;
    backface-visibility: hidden
}
.c-gallery .thumb a img {
    z-index: 10;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 1500ms ease-in-out;
    -moz-transition: all 1500ms ease-in-out;
    -ms-transition: all 1500ms ease-in-out;
    -o-transition: all 1500ms ease-in-out;
    transition: all 1500ms ease-in-out;
    -webkit-transform: translate3d(0, 0, 0)
}
.c-gallery .thumb a:hover img {
    -webkit-transform: scale(1.2) translate(-5px, -5px);
    -moz-transform: scale(1.2) translate(-5px, -5px);
    -ms-transform: scale(1.2) translate(-5px, -5px);
    -o-transform: scale(1.2) translate(-5px, -5px);
    transform: scale(1.2) translate(-5px, -5px)
}
@media(max-width:991px) {
    .c-gallery .thumb a {
        -webkit-transform: none
    }
    .c-gallery .thumb a img {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        -webkit-transform: none
    }
    .c-gallery .thumb a:hover img {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none
    }
}
.c-gallery .thumb img {
    display: block
}
.c-gallery .owl-controls {
    margin-top: 12px;
    text-align: center;
    margin-bottom: -36px;
    -webkit-transition: opacity 300ms ease-in-out;
    -moz-transition: opacity 300ms ease-in-out;
    -ms-transition: opacity 300ms ease-in-out;
    -o-transition: opacity 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
    opacity: .1;
    filter: alpha(opacity=10)
}
.c-gallery .owl-controls .owl-page {
    display: inline-block;
    margin: 0 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: background-color 300ms ease-in-out;
    -moz-transition: background-color 300ms ease-in-out;
    -ms-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out
}
.c-gallery.m-hover .owl-controls {
    opacity: 1;
    filter: alpha(opacity=100)
}