/**
 * CONTENTS
 *
 * GENERIC
 * Box-sizing............Better default `box-sizing`.
 * Image Aligns..........WP specific img aligns.
 *
 * BASE
 * Typography............@fontfaces, base text and vertical rhythem setup.
 *
 * COMPONENTS
 * Wrappers..............Wrapping and constraining elements.
 * Grid System...........Bootstrap based grid.
 * Clearfix..............Properly clear floats.
 *
 * Objects
 * Icons.................Icon Elements.
 * Buttons...............Button elements.
 * Tables................Table Styles.
 * Forms.................Form Elements.
 * Breadcrumbs...........Breadcrumbs.
 * Pagination............Pagination.
 * Sliders/Carousels.....Sliders/Carousels.
 *
 * UI
 * Page head.............The main page header.
 * Navigation............Navigation elements.
 * Masthead..............Page title/image/slideshow header block.
 * Page footer...........The main page footer.
 *
 * TRUMPS
 * Images................Round, Circle, Square Images.
 * Visiblity.............Make items visible.
 * Hiding................Make items invisible/hidden.
 * Screen Readers........Display for screen readers.
 * Print.................Display for printing.
 * Clears................Clearing floats.
 * Text alignment........Align text.
 * Font weights..........Adjust font weights.
 * Borders...............Add borders.
 * Add/remove margins....Remove margins.
 * Add/remove paddings...Remove padding.
 * Positioning...........float, center, and stick items.
 */
/*------------------------------------*\
    Generic
\*------------------------------------*/
/**
 * Box-sizing
 */
* {
    box-sizing: border-box;
}

/**
 * Images
 *
 * These selectors are hard cast because they are only used
 * by wordpress wyswyg when adding images to content
 */
/* TODO: Update image bottom margin to match paragraph margin */

img.alignright,
.wp-caption.alignright,
img.alignleft,
.wp-caption.alignleft {
    height: auto;
    max-width: 100%;
    display: block;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
    height: auto;
    max-width: 100%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
    margin: 0 0 0 0;
}

img.alignright,
.wp-caption.alignright {
    margin: 20px 0 20px 0;
}

img.alignleft,
.wp-caption.alignleft {
    margin: 20px 0;
}

@media (min-width: 768px) {

    img.alignright,
    .wp-caption.alignright,
    img.alignleft,
    .wp-caption.alignleft {
        height: auto;
        max-width: 50%;
    }

    img.alignnone,
    .wp-caption.alignnone,
    img.aligncenter,
    .wp-caption.aligncenter {
        height: auto;
        max-width: 100%;
    }

    img.alignnone,
    .wp-caption.alignnone,
    img.aligncenter,
    .wp-caption.aligncenter {
        margin: 0 0 22px 0;
    }

    img.alignright,
    .wp-caption.alignright {
        float: right;
        margin: 20px 0 20px 22px;
    }

    img.alignleft,
    .wp-caption.alignleft {
        float: left;
        margin: 20px 22px 12px 0;
    }

    img.aligncenter,
    .wp-caption.aligncenter {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/*------------------------------------*\
    Typography
\*------------------------------------*/
/* Please set up line-heights in ems */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0 0 50px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 2em;
    color: #615964;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
}

.innerpage-masthead h1 {
    padding-bottom: 0 !important;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    line-height: 1em;
    font-weight: normal;
    color: #281C2B;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    padding: 0 0 25px 0;
}

h1,
.h1,
h2,
.h2 {
    font-size: 30px;
}

h3,
.h3 {
    font-size: 25px;
}

h4,
.h4,
h5,
.h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

h4,
.h4 {
    font-size: 20px;
    padding-bottom: 25px;
}

h5,
.h5 {
    font-size: 14px;
    position: relative;
    display: inline-block;
    padding-right: 110px;
}

h5:after {
    width: 104px;
    height: 1px;
    background-color: #764B61;
    content: '';
    top: 13px;
    right: 0;
    position: absolute;
}

p {
    margin: 0;
    padding: 0 0 15px;
    font-size: 15px;
    line-height: 1.8em;
    font-weight: 400;
    letter-spacing: .3px;
}

@media (min-width: 768px) {
    body {
        padding: 0 0 0 0;
    }

    h1,
    .h1 {
        font-size: 40px;
    }

    h2,
    .h2 {
        font-size: 40px;
    }

    h3,
    .h3 {
        font-size: 30px;
    }

    h4,
    .h4 {
        font-size: 25px;
    }

    h5,
    .h5 {
        font-size: 15px;
    }

    p {
        padding: 0 0 30px;
        line-height: 1.6em;
    }
}

@media (min-width: 1025px) {

    h1,
    .h1 {
        font-size: 65px;
    }

    h2,
    .h2 {
        font-size: 40px;
    }

    h3,
    .h3 {
        font-size: 30px;
    }

    h4,
    .h4 {
        font-size: 25px;
    }

    h5,
    .h5 {
        font-size: 14px;
    }

    p {
        line-height: 1.8em;
    }
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul {
    margin-left: 12px;
    list-style: none;
    padding-bottom: 20px;
}

ul li {
    margin: 0;
    padding: 5px 0 5px 25px;
    position: relative;
}

ul li:before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #BAA5B0;
}

@media (min-width: 768px) {
    ul {
        margin-left: 25px;
        list-style: none;
    }
}

a {
    text-decoration: none;
    transition: all .3s;
    color: #D31145;
    font-weight: 600;
}

a:hover {
    transition: all .3s;
    color: #D31145;
    text-decoration: underline;
}

button:focus {
    outline: none;
    box-shadow: none;
}

blockquote p {
    margin: 25px 0 0 0;
    font-weight: normal;
    color: #281C2B;
    letter-spacing: 1.6px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    border: 1px solid #B09BA7;
    border-left: 7px solid #684157;
    padding: 15px 15px 15px 30px;
}

@media (min-width: 768px) {
    blockquote p {
        font-size: 20px;
        padding: 35px 35px 35px 70px;
    }
}

.white-content-section.inner-white h2,
.white-content-section.inner-white .h2,
.white-content-section.light-bg.inner-white h2,
.white-content-section.light-bg.inner-white .h2 {
    position: relative;
    margin-bottom: 10px;
}

.gallery-content h2 {
    margin-bottom: 0 !important;
}

.white-content-section.inner-white h2:before,
.white-content-section.light-bg.inner-white h2:before {
    width: 65px;
    height: 3px;
    background-color: #684157;
    content: '';
    bottom: 5px;
    left: 0;
    position: absolute;
}

/*CONTACT FORM 7 RADIO BUTTON*/
.your-country .wpcf7-form-control .wpcf7-list-item {
    cursor: pointer;
}

.wpcf7-form-control .wpcf7-list-item {
    display: inline-block;
}

.wpcf7-list-item {
    position: relative;
    width: 160px;
}

.contact-white-section {
    position: relative;
}

.contact-white-section .wpcf7-response-output {
    position: absolute;
    bottom: 35px;
}

.wpcf7-response-output {
    padding-left: 20px;
    color: #D31145;
    text-transform: uppercase;
}

.wpcf7-list-item label input {
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.wpcf7-list-item label span {
    display: inline-block;
}

.wpcf7-list-item label span:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    height: 17px;
    width: 17px;
    border: 1px solid #707070;
    border-radius: 50%;
    background: #fff;
}

.wpcf7-list-item label span::after {
    content: "";
    position: absolute;
}

.wpcf7-list-item label span::after {
    top: 2px;
    left: 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #D31145;
    border: 1px solid #D31145;
    transform: scale(0) translate(-50%, -50%);
    transition: all .3s ease-in-out;
    margin: 5px 4px 4px 3px;
}

.wpcf7-list-item-label#text {
    border: 1px solid red !important;
    width: 50px;
}

.wpcf7-list-item-label {
    text-transform: capitalize;
    color: #000;
    font-weight: 400;
}

.wpcf7-list-item .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item-label {
    text-indent: 25px;
    letter-spacing: 0.7px;
}

.wpcf7-form-control-wrap.requested-info .wpcf7-list-item-label {
    display: inline-block;
    white-space: nowrap;
}

.wpcf7-list-item label input:checked~span:after {
    transform: scale(0.9) translate(-50%, -50%);
}

.address_code span.wpcf7-not-valid-tip {
    width: 180px;
}

/* Removes default webkit form styling */
/*------------------------------------*\
    COMPONENTS
\*------------------------------------*/
/**
 * Wrappers
 */
.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding: 0 22px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 50px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 22px;
    }
}

.container {
    max-width: 1540px;
}

/**
 * Grid System
 *
 * Bootstrap v3.3.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 * Base setup 20px gutters
 *
 * Phones         - xxs - <  600px    ** Default **
 * Small Tablets  - xs - >=  600px
 * Tablets        - sm - >= 768px
 * Desktop        - md - >= 1025px
 * Large Desktop  - lg - >= 1200px
 * --------------------------------------------------------------------------
 * Learn more here: http://getbootstrap.com/css/#grid
 * -------------------------------------------------------------------------- */
.row {
    margin-left: -22px;
    margin-right: -22px;
}

[class*="col-"] {
    position: relative;
    min-height: 1px;
    padding-left: 22px;
    padding-right: 22px;
}

[class*="col-xxs-"] {
    float: left;
}

.col-xxs-12 {
    width: 100%;
}

.col-xxs-11 {
    width: 91.66666667%;
}

.col-xxs-10 {
    width: 83.33333333%;
}

.col-xxs-9 {
    width: 75%;
}

.col-xxs-8 {
    width: 66.66666667%;
}

.col-xxs-7 {
    width: 58.33333333%;
}

.col-xxs-6 {
    width: 50%;
}

.col-xxs-5 {
    width: 41.66666667%;
}

.col-xxs-4 {
    width: 33.33333333%;
}

.col-xxs-3 {
    width: 25%;
}

.col-xxs-2 {
    width: 16.66666667%;
}

.col-xxs-1 {
    width: 8.33333333%;
}

.col-xxs-pull-12 {
    right: 100%;
}

.col-xxs-pull-11 {
    right: 91.66666667%;
}

.col-xxs-pull-10 {
    right: 83.33333333%;
}

.col-xxs-pull-9 {
    right: 75%;
}

.col-xxs-pull-8 {
    right: 66.66666667%;
}

.col-xxs-pull-7 {
    right: 58.33333333%;
}

.col-xxs-pull-6 {
    right: 50%;
}

.col-xxs-pull-5 {
    right: 41.66666667%;
}

.col-xxs-pull-4 {
    right: 33.33333333%;
}

.col-xxs-pull-3 {
    right: 25%;
}

.col-xxs-pull-2 {
    right: 16.66666667%;
}

.col-xxs-pull-1 {
    right: 8.33333333%;
}

.col-xxs-pull-0 {
    right: auto;
}

.col-xxs-push-12 {
    left: 100%;
}

.col-xxs-push-11 {
    left: 91.66666667%;
}

.col-xxs-push-10 {
    left: 83.33333333%;
}

.col-xxs-push-9 {
    left: 75%;
}

.col-xxs-push-8 {
    left: 66.66666667%;
}

.col-xxs-push-7 {
    left: 58.33333333%;
}

.col-xxs-push-6 {
    left: 50%;
}

.col-xxs-push-5 {
    left: 41.66666667%;
}

.col-xxs-push-4 {
    left: 33.33333333%;
}

.col-xxs-push-3 {
    left: 25%;
}

.col-xxs-push-2 {
    left: 16.66666667%;
}

.col-xxs-push-1 {
    left: 8.33333333%;
}

.col-xxs-push-0 {
    left: auto;
}

.col-xxs-offset-12 {
    margin-left: 100%;
}

.col-xxs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xxs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xxs-offset-9 {
    margin-left: 75%;
}

.col-xxs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xxs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xxs-offset-6 {
    margin-left: 50%;
}

.col-xxs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xxs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xxs-offset-3 {
    margin-left: 25%;
}

.col-xxs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xxs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xxs-offset-0 {
    margin-left: 0%;
}

/* Extra small devices (phones, 600px and up) */
@media (min-width: 600px) {
    [class*="col-xs-"] {
        float: left;
    }

    .col-xs-12 {
        width: 100%;
    }

    .col-xs-11 {
        width: 91.66666667%;
    }

    .col-xs-10 {
        width: 83.33333333%;
    }

    .col-xs-9 {
        width: 75%;
    }

    .col-xs-8 {
        width: 66.66666667%;
    }

    .col-xs-7 {
        width: 58.33333333%;
    }

    .col-xs-6 {
        width: 50%;
    }

    .col-xs-5 {
        width: 41.66666667%;
    }

    .col-xs-4 {
        width: 33.33333333%;
    }

    .col-xs-3 {
        width: 25%;
    }

    .col-xs-2 {
        width: 16.66666667%;
    }

    .col-xs-1 {
        width: 8.33333333%;
    }

    .col-xs-pull-12 {
        right: 100%;
    }

    .col-xs-pull-11 {
        right: 91.66666667%;
    }

    .col-xs-pull-10 {
        right: 83.33333333%;
    }

    .col-xs-pull-9 {
        right: 75%;
    }

    .col-xs-pull-8 {
        right: 66.66666667%;
    }

    .col-xs-pull-7 {
        right: 58.33333333%;
    }

    .col-xs-pull-6 {
        right: 50%;
    }

    .col-xs-pull-5 {
        right: 41.66666667%;
    }

    .col-xs-pull-4 {
        right: 33.33333333%;
    }

    .col-xs-pull-3 {
        right: 25%;
    }

    .col-xs-pull-2 {
        right: 16.66666667%;
    }

    .col-xs-pull-1 {
        right: 8.33333333%;
    }

    .col-xs-pull-0 {
        right: auto;
    }

    .col-xs-push-12 {
        left: 100%;
    }

    .col-xs-push-11 {
        left: 91.66666667%;
    }

    .col-xs-push-10 {
        left: 83.33333333%;
    }

    .col-xs-push-9 {
        left: 75%;
    }

    .col-xs-push-8 {
        left: 66.66666667%;
    }

    .col-xs-push-7 {
        left: 58.33333333%;
    }

    .col-xs-push-6 {
        left: 50%;
    }

    .col-xs-push-5 {
        left: 41.66666667%;
    }

    .col-xs-push-4 {
        left: 33.33333333%;
    }

    .col-xs-push-3 {
        left: 25%;
    }

    .col-xs-push-2 {
        left: 16.66666667%;
    }

    .col-xs-push-1 {
        left: 8.33333333%;
    }

    .col-xs-push-0 {
        left: auto;
    }

    .col-xs-offset-12 {
        margin-left: 100%;
    }

    .col-xs-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-xs-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-xs-offset-9 {
        margin-left: 75%;
    }

    .col-xs-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-xs-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-xs-offset-6 {
        margin-left: 50%;
    }

    .col-xs-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-xs-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-xs-offset-3 {
        margin-left: 25%;
    }

    .col-xs-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-xs-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-xs-offset-0 {
        margin-left: 0%;
    }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    [class*="col-sm-"] {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

/* Medium devices (desktops, 1025px and up) */
@media (min-width: 1025px) {
    [class*="col-md-"] {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    [class*="col-lg-"] {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }
}

/**
 * Clearfix
 * Apply clearing without adding additional markup
 */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
    clear: both;
}

/*------------------------------------*\
    Icons
\*------------------------------------*/
@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?41d949');
    src: url('../fonts/icomoon.eot?41d949#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?41d949') format('truetype'),
        url('../fonts/icomoon.woff?41d949') format('woff'),
        url('../fonts/icomoon.svg?41d949#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-2-down:before {
    content: "\e900";
}

.icon-arrow-2-left:before {
    content: "\e901";
}

.icon-arrow-2-right:before {
    content: "\e902";
}

.icon-arrow-2-up:before {
    content: "\e903";
}

.icon-arrow-down:before {
    content: "\e904";
}

.icon-arrow-left:before {
    content: "\e905";
}

.icon-arrow-right:before {
    content: "\e906";
}

.icon-arrow-up:before {
    content: "\e907";
}

.icon-facebook:before {
    content: "\e908";
}

.icon-instagram:before {
    content: "\e909";
}

.icon-location:before {
    content: "\e90a";
}

.icon-menu:before {
    content: "\e90b";
}

.icon-phone:before {
    content: "\e90c";
}

.icon-search:before {
    content: "\e90d";
}

.icon-youtube:before {
    content: "\e90e";
}

/**
 * Buttons
 */
.btn {
    font-size: 13px;
    display: inline-block;
    padding: 14px 30px 14px 30px;
    line-height: normal;
    border-radius: 0;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #764B61;
    text-align: center;
    font-weight: 600;
    position: relative;
    background: #764B61;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background: #764B61;
}

.btn:hover,
.btn-primary:hover {
    background: transparent;
    color: #764B61;
    text-decoration: none;
}

.btn-secondary {
    background: #D31145;
    border-color: #D31145;
}

.btn-secondary:hover {
    color: #D31145;
    background: transparent;
}

.btn-tertiary {
    background: #F7EBE7;
    border-color: #F7EBE7;
    color: #764B61;
}

.btn-tertiary:hover {}

.btn-quaternary {
    background: transparent;
    border-color: transparent;
    color: #D31145;
    padding: 0;
    position: relative;
    transition: .1s !important;
    padding-bottom: 3px;
}

.btn-quaternary:hover {
    color: #D31145;
    border-bottom: 2px solid #D31145;
}

.btn-quaternary:after {
    content: "\e906";
    position: absolute;
    font-family: 'icomoon' !important;
    font-style: normal;
    width: 40px;
    height: 45px;
    right: -35px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn+.btn {
    margin-top: 10px;
}

@media(min-width: 768px) {
    .btn+.btn {
        margin-left: 10px;
        margin-top: 0;
    }
}

/**
 * Tables
 */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.dataTables_wrapper {
    overflow-x: auto;
}

.tablepress thead th,
.tablepress tfoot th {
    background-color: #764B61 !important;
    text-transform: capitalize;
    color: #fff !important;
}

.tablepress .row-hover tr:hover td {
    background-color: #F7EBE7 !important;
}

table thead tr th {
    padding: 7px 34px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    border-right: none;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
}

table thead tr th:last-child {
    border-right: none;
}

table tbody tr {
    text-align: center;
    background-color: #ffffff;
}

table tbody tr td {
    padding: 17px 34px;
    color: #525252;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    border: 1px solid #F0F0F0;
    font-family: 'Montserrat', sans-serif;
}

table tbody tr:first-child td {
    border-top: none;
}

.table-responsive {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .table-responsive {
        min-height: .01%;
        overflow-x: auto;
        width: 100%;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
}

/* Responsive Tables */
.table-wrap-outer:after {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    height: 100%;
    width: 80px;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
    /* IE6-9 */
}

@media (min-width: 600px) {
    .table-wrap-outer:after {
        display: none;
    }

    .table-wrap-inner {
        overflow: visible !important;
    }

    .table-cont {
        border: 1px solid red;
        overflow-x: hidden !important;
    }
}

/**
 * Breadcrumbs
 */
.breadcrumbs {
    margin: 0;
    padding: 10px 0 20px;
    font-size: 14px;
    color: #B8A0AA;
    font-weight: 600;
    line-height: 14px;
    position: relative;
    z-index: 9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs li {
    padding-left: 0;
    display: inline-block;
}

.breadcrumb_last {
    display: inline-block;
    margin-top: 10px;
    padding-left: 13px;
}

.breadcrumbs li::before {
    content: none;
}

.breadcrumbs li:first-child a {
    margin-right: 0 !important;
    padding-left: 0;
}

.breadcrumbs li a {
    padding: 0 16px;
    display: inline-block;
    border-right: 1px solid rgba(118, 75, 97, 0.5);
    line-height: 16px;
}

.breadcrumbs a {
    color: #764B61;
    text-decoration: none;
    display: inline-block;
}

.breadcrumbs a:hover {
    color: #D31145;
}

.gallery ul.breadcrumbs {
    column-count: 1 !important;
}

.gallery .breadcrumbs li {
    display: inline;
}

/**
 * Pagination
 */
/**
 * Forms
 */
.contact-col {
    margin-bottom: 20px;
    position: relative;
}

:focus::placeholder {
    color: transparent;
}

label {
    padding: 0 0 10px;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 600;
    text-align: left;
    color: #281C2B;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

label span {
    color: #972D3F;
}

textarea {
    padding: 10px 15px;
    font-size: 15px;
    line-height: 1.3em;
    font-weight: 400;
    text-align: left;
    color: #1C1C1C;
    display: block;
    height: 195px;
    width: 100%;
    resize: none;
    background: #ffffff;
    border: 1px solid #B09BA7;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
}

textarea:focus {
    border: 1px solid #972D3F;
}

/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
    -webkit-appearance: none;
    outline: none;
}

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
    padding: 0 15px;
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 400;
    text-align: left;
    color: #1C1C1C;
    display: block;
    height: 47px;
    width: 100%;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #B09BA7;
    font-style: italic;
}

[type="text"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="email"]:focus,
[type="month"]:focus,
[type="number"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="url"]:focus,
[type="week"]:focus,
[type="date"]:focus {
    border: 1px solid #972D3F;
}

input[type="submit"] {
    cursor: pointer;
}

/* Selectric */
.selectric-wrapper {
    position: relative;
    cursor: pointer;
}

.selectric-responsive {
    width: 100%;
}

.postform,
.selectric {
    padding: 0 0;
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 400;
    text-align: left;
    color: #1C1C1C;
    display: block;
    height: 47px;
    width: 100%;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #B09BA7;
    font-style: italic;
    position: relative;
    overflow: hidden;
    outline: none;
}

.selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 38px 0 10px;
    font-size: 15px;
    line-height: 40px;
    color: #1C1C1C;
    height: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 45px;
    line-height: 45px;
    background-color: #fff;
    color: #1C1C1C;
    text-align: center;
}

.selectric .button:after {
    content: "\e900";
    position: absolute;
    font-family: 'icomoon' !important;
    font-style: normal;
    width: 40px;
    height: 45px;
    right: 0;
}

.selectric-focus .selectric {
    border-color: #aaaaaa;
}

.selectric-hover .selectric {
    border-color: #c4c4c4;
}

.selectric-hover .selectric .button {
    color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
    border-top-color: #a2a2a2;
}

.selectric-open {
    z-index: 9999;
}

.selectric-open .selectric {
    border-color: #c4c4c4;
}

.selectric-open .selectric-items {
    display: block;
}

.selectric-disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectric-hide-select {
    position: relative;
    overflow: hidden;
    width: 0;
    height: 0;
}

.selectric-hide-select select {
    position: absolute;
    left: -100%;
}

.selectric-hide-select.selectric-is-native {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border: none;
    z-index: 1;
    box-sizing: border-box;
    opacity: 0;
}

.selectric-input {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 1px !important;
    height: 1px !important;
    outline: none !important;
    border: none !important;
    *font: 0/0 a !important;
    background: none !important;
}

.selectric-temp-show {
    position: absolute !important;
    visibility: hidden !important;
    display: block !important;
}

/* Items box */
.selectric-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #F8F8F8;
    border: 1px solid #BAA5B0;
    z-index: -1;
    box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
    max-height: 250px;
    overflow: auto;
    scrollbar-color: pink transparent;
    scrollbar-width: thin;
}

.selectric-above .selectric-items {
    top: auto;
    bottom: 100%;
}

.selectric-items ul,
.selectric-items li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 20px;
    min-height: 20px;
}

.postform option,
.selectric-items li {
    display: block;
    padding: 10px !important;
    color: #281C2B;
    cursor: pointer;
    background-color: #FBF5F3;
    float: none !important;
}

.postform option.selected,
.selectric-items li.selected {
    background: #FBF5F3;
    color: #281C2B;
}

/* .selectric-items li.highlighted {
background: #764B61;
color: #fff;
} */
.selectric-items li:hover {
    background: #764B61;
    color: #fff;
}

.selectric-items .disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default !important;
    background: none !important;
    color: #666 !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
    background: none;
    color: #444;
    font-weight: bold;
    padding-left: 10px;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectric-items .selectric-group.disabled li {
    filter: alpha(opacity=100);
    opacity: 1;
}

.selectric-items .selectric-group li {
    padding-left: 25px;
}

@media (min-width: 1800px) {
    .sub-menu-toggle {
        right: 0px;
    }
}

.wpcf7-not-valid-tip {
    text-align: right;
    position: absolute;
    right: 0;
    font-size: 13px;
    font-weight: 400;
    color: #D31145;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.wpcf7-not-valid-tip:before {
    position: absolute;
    content: '!';
    width: 19px;
    height: 19px;
    background-color: #C5103F;
    text-align: center;
    line-height: 19px;
    top: -32px;
    right: 14px;
    color: #fff;
    font-weight: 700;
}

select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .selectric {
    border-color: #C5103F;
}

/**
 * Sliders/Carousels
 * Slick Slider - http://kenwheeler.github.io/slick/
 */
/* General styling */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-slide,
.slick-arrow,
.slick-dots button,
.slick-slide:focus * {
    outline: none !important;
}

.slick-initialized .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

/* Preload affect */
.slick-slider .slide {
    display: none;
}

.slick-slider .slide:first-child {
    display: block;
}

.slick-slider.slick-initialized .slide {
    display: block;
}

.js-slider-has-preloader {
    min-height: 50px;
    position: relative;
}

.js-slider-has-preloader:before {
    content: url('../img/loading.gif');
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transition: all .5s ease;
    transform: translate(-50%, -50%);
}

.js-slider-has-preloader-init:before {
    transform: scale(0);
}

/* Slick Dots */
.slick-dots {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0 15px;
    margin: 0;
    list-style: none;
    text-align: left;
    text-align: center;
    z-index: 9;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 4px;
    padding: 0;
    cursor: pointer;
    background: none;
}

.slick-dots li:only-child {
    display: none;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #C7CED1;
    border-radius: 50%;
    padding: 0;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li.slick-active button {
    background: #1B67AF;
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 45px;
    position: absolute;
    top: 0;
    display: block;
    width: 40px;
    height: 48px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 9;
    text-align: center;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-prev::before {
    content: "\e901";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 15px;
    color: #1B67AF;
    font-family: 'icomoon' !important;
    border-radius: 100%;
    background: #E9EBED;
}

.slick-prev:hover::before,
.slick-prev:focus::before {
    color: #ffffff;
    background: #1B67AF;
}

.slick-next::before {
    content: "\e902";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 15px;
    color: #1B67AF;
    font-family: 'icomoon' !important;
    border-radius: 100%;
    background: #E9EBED;
}

.slick-next:hover::before,
.slick-next:focus::before {
    color: #ffffff;
    background: #1B67AF;
}

/**
 * Posts
 * Used on blog, category, archive and search results pages
 */
.post-item {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-top: 30px;
}

.post-item:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.post-item__heading a {
    text-decoration: none;
}

.post-item .btn,
.post-item .btn-primary {
    margin-top: 30px;
}

.post-item__meta {
    font-size: .8em;
}

@media (min-width: 1025px) {
    .post-item {
        padding-top: 40px;
        margin-top: 50px;
    }
}

/* --------------------------------------------------*\
    UI
    UI peices are site specific non generic styles.
    eg: header, footer, sidebar, page specific styles
\* -----------------------------------------------------*/
/* .page-header */
/*
@media (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) and (max-width: 1024px) {
    .logo img { display: none; }
    .logo {
        background: url('../img/logo.png');
        background-size: 66px 122px;
        display: inline-block;
        height: 66px;
        width: 122px;
     }
} */
.page-header {
    top: 0;
    padding: 13px 0;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff
        /*rgba(255, 255, 255, 0.9)*/
    ;
    transition: all .5s;
}

.header-fix {
    border-bottom: 1px solid rgba(104, 65, 87, 0.25);
}

.logo {
    padding: 0 0;
    margin-top: 0;
    float: left;
}

.logo img {
    width: 150px;
    display: block;
    margin: 0 auto;
    height: auto;
}

.logo a {
    display: block;
}

.search-icon {
    float: right;
    color: #281C2B;
    line-height: 24px;
    font-size: 22px;
    cursor: pointer;
    padding-top: 22px;
}

/* .search-icon:hover .search-div{ display: block; }
 */
.search-icon.close .icon-search {
    position: relative;
    width: 22px;
    height: 22px;
    display: inline-block;
    padding: 0;
}

.search-icon.close .icon-search:after {
    content: '';
    height: 30px;
    border-left: 2px solid #281C2B;
    position: absolute;
    transform: rotate(45deg);
    left: 9px;
    top: -3px;
}

.search-icon.close .icon-search:before {
    content: '';
    height: 30px;
    border-left: 2px solid #281C2B;
    position: absolute;
    transform: rotate(-45deg);
    left: 9px;
    top: -2px;
}

.search-div {
    position: absolute;
    width: 100%;
    z-index: 1;
    display: none;
    padding: 10px;
    background-color: #281C2B;
}

.search-div .search-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.search-text {
    position: relative;
    width: 100%;
    float: right;
    border-color: transparent !important;
}

.page-header input[type="submit"] {
    position: absolute;
    right: 0;
    z-index: 3;
    height: 100%;
    display: block;
    border: #0000;
    outline: 0;
    top: 0;
    background-color: #764B61;
    color: #fff;
}

.page-header input[type="submit"]:hover {
    background-color: #764B61;
    opacity: 0.7;
}

/* DIFF*/
.header-menu-bg {
    background-color: #281C2B;
    width: 100%;
    left: 0;
    bottom: 0px;
    position: fixed;
    color: #fff;
    transition: all .3s;
    z-index: 999999;
}

.mobile-phone {
    float: left;
    font-size: 30px;
}

.mobile-phone a {
    color: #fff;
    display: block;
    width: 50px;
    height: auto;
    text-align: center;
}

.mobile-phone a span {
    display: block;
    line-height: 50px;
}

.mobile-phone a:hover {
    color: #D31145;
    text-decoration: none;
}

.toggle-menu {
    float: right;
    font-size: 8px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50px;
    line-height: 1.2em;
    letter-spacing: 2px;
    cursor: pointer;
    width: 50px;
}

.toggle-menu:hover {
    color: #D31145;
    text-decoration: none;
}

.toggle-menu span {
    display: block;
    font-size: 28px;
}

.toggle-menu.close .icon-menu {
    width: 34px;
    height: 40px;
    position: relative;
}

.toggle-menu.close .icon-menu:after {
    content: '';
    height: 32px;
    border-left: 3px solid #D31145;
    position: absolute;
    transform: rotate(45deg);
    left: 24px;
    top: 4px;
}

.toggle-menu.close .icon-menu:before {
    content: '';
    height: 32px;
    border-left: 3px solid #D31145;
    position: absolute;
    transform: rotate(-45deg);
    left: 24px;
    top: 4px;
}

.header-phone {
    float: right;
    padding: 21px 10px 0 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
}

@media (min-width: 568px) {
	.header-phone {
		padding: 18px 22px 0 0;
		font-size: 15px;
	}
}

@media (min-width: 768px) {
    .header-menu-bg {
        position: relative;
        float: right;
        width: auto;
        bottom: auto;
        background-color: transparent;
    }

    .toggle-menu {
        color: #281C2B;
        height: auto;
        padding-top: 12px;
        padding-left: 10px;
    }

    .search-icon {
        line-height: 38px;
        padding-top: 13px;
    }
}

@media (min-width: 1200px) {
	.header-phone {
		padding: 27px 22px 0 0;
	}
    .page-header.hideheader,
    .page-header.header-fix.hideheader {
        top: -150px;
        transition: all .5s;
    }

    .page-header.js-scrolled,
    .page-header.header-fix.js-scrolled {
        position: fixed;
        top: 0;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    .logo {
        display: block;
    }

    .search-icon {
        padding-left: 18px;
        padding-top: 23px;
    }
}

/**
 * Navigation
 */
.nav-primary {
    position: fixed;
    bottom: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    left: 0;
    width: 100%;
    display: none;
}

.nav-primary ul {
    margin: 0;
    padding: 0;
}

.nav-primary ul li {
    margin: 0;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    border-bottom: 1px solid #B09BA7;
}

.nav-primary ul li:last-child,
.nav-primary .sub-menu li {
    border-bottom: 0 !important;
}

.nav-primary ul li:before {
    display: none;
}

.nav-primary ul>li>.sub-menu {
    display: none;
}

.nav-primary ul>li>.sub-menu a {
    line-height: normal !important;
}

.nav-primary ul li a {
    margin: 0;
    padding: 0;
    color: #281C2B;
    display: block;
}

.nav-primary ul li a:hover {
    color: #764B61;
    text-decoration: none;
}

.nav-primary li.current-menu-ancestor>a,
.nav-primary li.current-menu-parent>a,
.nav-primary li.current-menu-item>a,
.nav-primary li:hover>a,
.nav-primary li>a:hover {
    color: #764B61;
    cursor: pointer;
}

.nav-primary li .sub-menu {
    border-top: 1px solid #ccc;
    padding: 10px 0;
}

@media (min-width: 768px) {
    .nav-primary {
        bottom: auto;
        top: 100%;
        position: absolute;
        height: auto;
    }

    .nav-primary .sub-menu {
        background-color: #fff;
    }
}

@media (min-width: 1200px) {
    .nav-primary {
        bottom: auto;
        top: auto;
        position: relative;
        height: calc(100% - 50px);
        display: block;
        background-color: transparent;
        width: auto;
        float: right;
    }

    .nav-primary li .sub-menu {
        border-top: 0 !important;
        padding: 10px 0;
    }

    .nav-primary ul {
        border-top: none;
        padding: 0 0;
    }

    .nav-primary ul li {
        float: left;
        padding: 27px 16px;
    }

    .nav-primary li.menu-item-has-children:hover .sub-menu {
        display: block;
    }

    .nav-primary .sub-menu>li.menu-item-has-children:hover .sub-menu {
        display: none !important;
    }
}

@media (min-width: 1366px) {
    .nav-primary ul li {
        padding: 27px 30px;
    }

    .header-phone {
        padding-right: 30px;
    }

    .search-icon {
        padding-left: 30px;
    }
}

@media (min-width: 1440px) {
    .nav-primary ul li {
        padding: 27px 38px;
    }

    .header-phone {
        padding-right: 38px;
    }

    .search-icon {
        padding-left: 38px;
    }
}

/**
 * Sub-navigation
 */
.nav-primary .sub-menu,
.nav-primary .sub-menu ul {
    display: none;
}

.sub-menu.js-toggled {
    display: block;
}

.sub-menu ul.js-toggled {
    max-height: 55em;
    display: block;
}

/**
 * Sub-navigation - Primary
 */
.nav-primary .sub-menu {
    margin: 10px 0 0 0;
    padding: 0;
    letter-spacing: normal;
}

.sub-menu li {
    border: 0;
    list-style-type: none;
}

.sub-menu-toggle {
    cursor: pointer;
    font-size: 13px;
    font-weight: normal;
    line-height: 46px;
    width: 48px;
    height: 48px;
    position: absolute;
    right: 16px;
    top: 0;
    display: block;
    text-align: center;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.sub-menu-toggle.js-toggled {
    transform: rotate(180deg);
    top: 0 !important;
}

.nav-primary .sub-menu.js-toggled {
    display: block;
    background-color: #FBF5F3;
}

.nav-primary .sub-menu ul.js-toggled {
    background-color: #e4e4eb;
    border: none;
}

.sub-menu .sub-menu-toggle.js-toggled {
    top: 0;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
}

@media(min-width: 1025px) {
    .nav-primary li {
        border: 0 !important;
    }

    .nav-primary .sub-menu {
        content: "";
        position: absolute;
        left: 17px;
        top: 100%;
        font-size: 17px;
        width: 200px;
        text-align: left;
        z-index: 100;
        display: none;
        margin: 0 !important;
        padding-top: 30px !important;
    }

    .nav-primary .sub-menu li {
        width: 100%;
        position: relative;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-primary .sub-menu li.menu-item-has-children>a:after {
        content: "\e904";
        color: #3f7fbd;
        font-family: 'icomoon';
        font-size: 14px;
        float: right;
        position: relative;
        right: 0;
        top: 0px;
        z-index: 2;
    }

    .sub-menu a,
    .sub-menu ul a {
        color: #000;
        padding: 10px 10px 10px 20px;
        font-size: 15px;
    }

    .sub-menu-toggle {
        top: 6px;
        right: -6px;
    }

    .menu-item-has-children:hover>ul {
        display: block;
    }

    /* third level */
    .nav-primary .sub-menu ul {
        background-color: #e4e4eb;
        content: "";
        top: -5px;
        left: 100%;
        max-height: 55em;
        width: 100%;
        z-index: 101;
        display: none;
    }

    .sub-menu .menu-item-has-children:hover ul {
        display: block;
    }

    .nav-primary .sub-menu ul>li a {
        padding: 10px 20px !important;
    }
}

@media (min-width: 1200px) {
    .nav-primary .sub-menu {
        left: 31px;
        width: 340px;
    }

    .sub-menu a,
    .sub-menu ul a {
        font-size: 15px;
    }

    .sub-menu-toggle {
        right: -21px;
        top: 20px;
    }
}

@media (min-width: 1366px) {
    .nav-primary .sub-menu {
        left: 41px;
    }

    .sub-menu-toggle {
        right: -10px;
    }
}

/* Single and Blog page Style
  ========================================================================= */
.inner__container {
    padding: 28px 0;
}

.featured-item {
    border: 1px solid #764B61;
    padding: 70px 20px 50px 20px;
    margin-bottom: 30px;
    position: relative;
}

.feat_text {
    padding: 5px 20px 5px 20px;
    background: #764B61;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.post-item__heading {
    padding: 0 !important;
    display: block;
}

.post_date {
    font-size: 16px;
    display: inline-block;
    text-decoration: underline;
    color: #D31145;
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 15px;
}

.post_article p {
    margin: 22px 0 0 0;
    padding: 0;
}

.hidden-md-up.soft-bottom input {
    border: 1px solid #764B61;
    outline: none;
}

.page-content .search-content,
.page404 .search-content {
    position: relative;
}

.page-content .search-content [type="text"],
.page404 .search-content [type="text"] {
    padding-right: 125px;
}

.page-content .hidden-md-up.soft-bottom input[type="submit"],
.page404 .hidden-md-up.soft-bottom input[type="submit"] {
    background-color: #764B61;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
}

@media(min-width: 768px) {
    .inner__container {
        padding: 68px 0;
    }

    .featured-item {
        padding: 70px 20px 40px 20px;
        margin-bottom: 40px;
    }
}

@media(min-width: 1025px) {
    .inner__container {
        padding: 78px 0;
    }

    .featured-item {
        padding: 70px 20px 50px 20px;
        margin-bottom: 50px;
    }
}

@media(min-width: 1366px) {
    .inner__container {
        padding: 90px 0;
    }
}

/* Sidebar Widget */
.widget {
    margin: 0 0 20px;
}

.widget li {
    left: 0 !important;
    margin-bottom: 0 !important;
}

.widget h3 {
    background-color: #764B61;
    color: #fff;
    font-size: 20px;
    padding: 20px;
    margin: 0;
}

.widget .screen-reader-text {
    display: none;
}

.widget ul {
    margin: 0;
    padding: 0;
}

.widget li {
    background-color: #EDEDED;
    display: block;
    list-style-type: none;
    padding: 15px 20px;
    line-height: normal;
}

.widget li.current-cat a {
    color: #D31145;
}

.widget li:before {
    display: none;
}

.widget .recentcomments {
    color: #615964;
    font-weight: bold;
}

.widget .recentcomments:hover {
    color: #fff !important;
}

.widget li {
    border-bottom: 1px solid #EDEDED;
    background-color: #F7F7F7;
}

.widget li:last-child {
    border-bottom: 0;
}

.widget a,
#recentcomments li {
    color: #615964;
    display: block;
    line-height: normal;
}

#recentcomments .comment-author-link {
    display: inline;
}

#recentcomments .recentcomments:hover {
    background: #764B61;
    opacity: 0.75;
}

#recentcomments .recentcomments:hover>a {
    color: #fff;
}

.widget li:hover {
    background: #764B61;
    color: #fff;
    opacity: 0.75;
}

.widget li:hover a {
    color: #fff;
    text-decoration: none;
}

.search-submit {
    margin: 0 12px;
}

.widget .wpcf7-list-item-label {
    display: inline;
    margin: 0 10px;
}

.widget_search label {
    display: none;
}

.widget_search p {
    margin: 0;
    padding: 0;
}

.widget_search form {
    position: relative;
    display: block !important;
    top: 0 !important;
    margin: 21px auto 0;
    border: none;
}

.widget_search [type="text"] {
    position: relative;
    width: 100% !important;
    padding: 5px 0 5px 10px;
    font-size: 14px;
    background-color: #fff;
    height: 42px;
    border: 1px solid #764b61 !important;
}

.widget_search [type="submit"] {
    padding: 11px 10px 10px;
    right: 0;
    border: none;
    position: absolute;
    top: 0;
    color: #fff;
    background-size: 50%;
    height: 100%;
    margin-top: 0 !important;
    background-color: #764B61;
    border: 1px solid #764B61;
}

.widget_search [type="submit"]:hover {
    opacity: 0.75;
}

.widget-popular-posts li {
    position: relative;
}

.widget-popular-posts li span {
    font-size: 12px;
    color: #D31145;
}

.widget-popular-posts li:hover span {
    color: #fff;
}

@media(min-width: 768px) {
    .widget {
        margin-left: 0;
        margin-right: 0;
    }

    .widget_search .search-field {
        width: 100% !important;
    }
}

@media(min-width: 768px) {
    .widget {
        margin-left: 0;
        margin-right: 0;
    }

    .widget_search .search-field {
        width: 95% !important;
    }
}

/*WP PAGENAVI*/
.wp-pagenavi {
    display: block;
    margin: 50px 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #D31145;
    padding: 10px 15px !important;
    margin: 2px;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    border-color: #D31145;
    background-color: #D31145;
    color: #fff !important;
}

/* 404 Page
    ===============================*/
.error-page-search-form {
    margin: 25px 0 50px;
}

.error-page-search-form .search-content input {
    height: 50px !important;
    outline: none !important;
}

.error-page-search-form .search-content input[type="submit"] {
    background-color: #D31145 !important;
    color: #fff;
    border: none !important;
    position: absolute;
    top: 0;
    right: 0;
}

/* Sitemap and Search Results Page
    ===============================*/
.error404 ul .page-item-6,
.error404 ul .page-item-2,
.page-id-2 ul .page-item-6,
.page-id-2 ul .page-item-2 {
    display: none;
}

.search-results .tab-content {
    border-bottom: 1px solid #ccc;
    padding: 25px 0 44px !important;
}

.search-results .tab-content:last-child {
    border-bottom: 1px solid transparent !important;
    padding: 25px 0 !important;
}

.search-results h3.title_section_results {
    text-decoration: underline;
}

.search-results .post-item__heading a {
    text-transform: capitalize !important;
}

/* Styling thank you page redirectedfrom Homepage and Contact Page
// page-id-194 - thank you
// page-id-192 - contact us -> thank you
===============================*/
.error404 .page-item-327,
.error404 .page-item-194,
.error404 .page-item-29 .children,
.page-id-194 .wsp-pages-list .children,
.page-id-194 .page-item-6,
.page-id-194 .page-item-2,
.page-id-194 .page-item-194,
.page-id-192 .wsp-pages-list .children,
.page-id-192 .page-item-6,
.page-id-192 .page-item-2,
.page-id-192 .page-item-194,
.page-id-2 li.page-item-29 ul.children,
.page-id-2 .wsp-pages-list .page-item-194 {
    display: none;
}

.post-194 a:hover {
    text-decoration: none;
}

/**
 * Page-footer
 */
.page-footer {
    padding: 55px 0;
    background-color: #fff;
}

.f-logo {
    margin: 0 auto;
    width: 194px;
}

.f-logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.f-text {
    text-align: center;
    padding: 45px 0 0 0;
}

.f-text a {
    text-transform: uppercase;
}

.f-last a {
    text-transform: lowercase !important;
}

.f-text .directions {
    letter-spacing: 2px;
    font-weight: 500;
}

.f-text .directions .icon-arrow-right {
    font-size: 12px;
}

.f-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #281C2B;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.f-last p {
    padding: 10px 0 5px 0;
}

.f-last ul {
    margin: 0;
    padding: 0;
}

.f-last ul li {
    display: inline-block;
    padding: 0 6px 0 38px;
    font-size: 25px;
}

.f-last ul li:first-child {
    padding-left: 0 !important;
}

.f-last ul li:before {
    display: none;
}

.f-last ul {
    padding-top: 30px;
}

.f-last ul li a {
    color: #764B61;
}

.f-last ul li a:hover {
    color: #D31145;
    text-decoration: none;
}

.copyright-content {
    border-top: 1px solid rgba(118, 75, 97, 0.25);
    text-align: center;
    padding: 25px;
}

.copyright-content ul {
    margin: 0 auto;
    padding: 0;
    max-width: 200px;
}

.copyright-content ul li {
    display: block;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 400;
    color: #281C2B;
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: 1.5em;
}

.copyright-content ul li:before {
    display: none;
}

.copyright-content ul li a {
    font-weight: 400;
    color: #281C2B;
}

.copyright-content ul li a:hover {
    text-decoration: none;
    color: #D31145;
}

.copyright-content ul li.back-to-top a {
    font-weight: 700;
    color: #764B61;
}

@media (min-width: 768px) {
    .f-text {
        text-align: left;
    }

    .f-logo {
        margin: 0;
        width: 265px;
    }

    .f-logo a {
        display: block;
        position: relative;
    }

    .copyright-content {
        position: relative;
        margin: 0 50px;
    }

    .copyright-content ul {
        max-width: 100%;
    }

    .copyright-content ul li {
        display: inline-block;
        padding: 10px 15px 10px 20px;
    }

    .copyright-content ul li:nth-child(4) {
        display: block;
        padding: 0;
    }

    .copyright-content ul li.back-to-top {
        position: absolute;
        right: 0;
        top: -35px;
    }

    .copyright-content ul li.back-to-top a {
        font-weight: 400;
        color: #281C2B;
    }
}

@media (min-width: 1025px) {
    .f-logo {
        margin: 0;
        width: auto;
        max-width: 265px;
    }

    .f-text {
        padding: 0 0 0 0;
    }

    .copyright-content ul li:nth-child(4) {
        display: inline-block;
        padding: 10px 15px 10px 20px;
    }

    .copyright-content ul li.back-to-top {
        position: relative;
        right: 0;
        top: -0;
    }

    .copyright-content ul li.back-to-top a {
        font-weight: 700;
        color: #764B61;
    }
}

@media (min-width: 1200px) {
    .page-footer {
        padding: 90px 0;
    }

    .copyright-content {
        max-width: 1540px;
        padding-left: 22px;
        padding-right: 22px;
        margin: 0 auto;
    }

    .f-logo {
        margin: 0;
        width: 265px;
        max-width: auto;
    }
}

.masthead {
    position: relative;
    height: 514px;
    overflow: hidden;
}

.masthead-image {
    width: 100%;
    height: 100%;
}

.masthead-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;'; /* IE object-fit fix */
}

.masthead-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.masthead-inner {
    margin: 0 auto;
    margin-top: 92px;
    width: 276px;
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 32px 46px;
}

.masthead-inner h3 {
    font-size: 14px;
    font-weight: 600;
    color: #764B61;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    padding-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.masthead-inner p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7em;
    color: #000;
    letter-spacing: 1px;
    padding: 0;
}

.masthead-inner h1 {
    font-size: 30px;
    line-height: 1.2em;
    font-weight: normal;
    color: #281C2B;
    letter-spacing: .5px;
    font-family: 'Playfair Display', serif;
    padding: 0;
}

.masthead-inner h1 span {
    font-style: italic;
}

.masthead-inner h3 span {
    display: none;
}

.masthead-content a {
    margin-top: 20px;
}

.masthead-content .btn.btn-quaternary {
    text-align: left;
}

.masthead-content h3,
.masthead-content p,
.masthead-content a span {
    display: none;
}

.masthead-content a span.mob {
    display: inline;
}

.masthead-content .btn-quaternary:hover {
    text-decoration: none;
    border-bottom: 1px solid #D31145;
}

.innerpage-masthead {
    background-color: #FBF5F3;
    text-align: center;
    padding: 30px;
    margin-top: 92px;
}

.masthead-content .btn.btn-quaternary::after {
    content: none;
}

.scroll-down {
    width: 50px;
    height: 50px;
    display: inline-block;
    text-decoration: none;
    color: #000;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 50;
    padding: 13px 0;
    transform: translate(-50%);
    text-decoration: none !important;
}

.scroll-down .icon-arrow-2-down {
    font-size: 20px;
}

.scroll-down .icon-arrow-2-down {
    display: block;
    line-height: normal;
    text-align: center;
    color: #fff;
}

@media (min-width: 768px) {
    .masthead {
        height: 600px;
    }

    .masthead-image img {
        width: 50%;
        float: left;
    }

    .masthead-inner {
        width: 724px;
        padding: 32px;
        padding-bottom: 65px;
    }

    .masthead-inner h3 {
        background: url(../img/master-painter-logo.png) center no-repeat;
        padding: 16px 0;
        margin-bottom: 18px;
    }

    .masthead-inner h3 span {
        display: inline-block;
    }

    .masthead-content p {
        display: block;
    }

    .masthead-content a span {
        display: initial;
    }

    .masthead-content h3 {
        display: block;
        position: relative;
        margin-bottom: 12px;
        background: none;
    }

    .masthead-content h3:after {
        bottom: 0;
        position: absolute;
        content: "";
        left: 50%;
        margin-left: -37px;
        width: 74px;
        height: 2px;
        background-color: #764B61;
    }

    .masthead-content {
        padding-top: 25px;
    }

    .masthead-content a span.mob {
        display: none;
    }

    .innerpage-masthead {
        padding: 75px 0 45px 0;
    }
}

@media (min-width: 1025px) {
    .innerpage-masthead {
        margin-top: 101px;
    }
}

@media (min-width: 1200px) {
    .masthead {
        height: 850px;
        overflow: hidden;
    }

    .masthead-inner {
        width: 787px;
        padding: 32px;
        padding-bottom: 65px;
    }

    .masthead-inner h1 {
        font-size: 45px;
    }

    .masthead-inner h3 {
        font-size: 16px;
    }

    .innerpage-masthead {
        margin-top: 103px;
    }
}

/* banner end */
.page-container {
    position: relative;
    background-color: rgba(255, 255, 255, 0.5);
}

.page-container p:last-child {
    padding-bottom: 0 !important;
}

.white-content-section {
    padding: 40px 22px 40px 40px;
}

.inner-white {
    padding-left: 0;
    padding-right: 0;
}

.white-content-section h5 {
    color: #764B61;
    padding-bottom: 20px;
}

.white-slide-section,
.white-slide-section-mob {
    padding: 40px 0 80px 0;
}

.white-slide-section img,
.white-slide-section-mob img {
    height: 340px;
    width: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;'; /* IE object-fit fix */
}

.white-slide-section .slick-prev,
.white-slide-section .slick-next,
.white-slide-section-mob .slick-prev,
.white-slide-section-mob .slick-next {
    top: auto;
    bottom: 0;
    width: 48px;
    border: 1px solid rgba(118, 75, 97, 0.5);
}

.white-slide-section .slick-prev:before,
.white-slide-section .slick-next:before,
.white-slide-section-mob .slick-prev:before,
.white-slide-section-mob .slick-next:before {
    color: #764B61;
    background-color: #fff;
    border-radius: 0;
}

.white-slide-section .slick-prev:hover::before,
.white-slide-section .slick-next:hover::before,
.white-slide-section-mob .slick-prev:hover::before,
.white-slide-section-mob .slick-next:hover::before {
    color: #764B61;
    opacity: 0.8;
}

.white-slide-section .slick-next,
.white-slide-section-mob .slick-next {
    right: 50%;
    margin-right: -48px;
    border-left: none;
}

.white-slide-section .slick-prev,
.white-slide-section-mob .slick-prev {
    left: 50%;
    margin-left: -48px;
    border-right: none;
}

.white-slide-section .slick-prev::after,
.white-slide-section-mob .slick-prev::after {
    width: 1px;
    background-color: rgba(118, 75, 97, 0.5);
    top: 4px;
    right: 0;
    height: 38px;
    content: '';
    position: absolute;
}

@media (min-width: 600px) {

    .white-slide-section,
    .white-slide-section-mob {
        width: calc(100% - 110px);
        padding-bottom: 0;
        padding-top: 55px;
    }

    .white-slide-section .item,
    .white-slide-section-mob .item {
        padding-right: 20px;
    }

    .white-slide-section .slick-prev,
    .white-slide-section .slick-next,
    .white-slide-section-mob .slick-prev,
    .white-slide-section-mob .slick-next {
        bottom: -9px;
    }

    .white-slide-section .slick-prev,
    .white-slide-section-mob .slick-prev {
        left: auto;
        margin: 0;
        right: -48px;
    }

    .white-slide-section .slick-next,
    .white-slide-section-mob .slick-next {
        left: auto;
        margin: 0;
        right: -96px;
    }
}

@media (min-width: 768px) {
    .white-content-section {
        padding: 60px 50px 0 60px;
    }

    .inner-white {
        padding-left: 0;
        padding-right: 0;
    }

    .white-slide-section img,
    .white-slide-section-mob img {
        height: 510px;
        width: 100%;
        object-fit: cover;
        font-family: 'object-fit: cover;'; /* IE object-fit fix */
    }
}

@media (min-width: 1200px) {
    .gallery-content p {
        padding-bottom: 18px !important;
    }

    .white-content-section {
        padding: 100px 0 100px 0;
    }

    .page-template-page-gallery .white-content-section.inner-white {
        padding: 100px 0 0 0 !important;
    }

    .white-text-section {
        width: 50%;
        float: right;
        padding: 0 10px 0 30px;
    }

    .white-slide-section,
    .white-slide-section-mob {
        width: 50%;
        float: left;
        padding: 0 4px 0 0px;
    }

    .white-slide-section .item,
    .white-slide-section-mob .item {
        height: 800px;
    }

    .white-slide-section .item img,
    .white-slide-section-mob .item img {
        height: 683px;
        max-width: 554px;
        width:auto;
        object-fit: cover;
        font-family: 'object-fit: cover;'; /* IE object-fit fix */
    }

    .white-slide-section .slick-prev,
    .white-slide-section-mob .slick-prev {
        right: -78px;
    }

    .white-slide-section .slick-next,
    .white-slide-section-mob .slick-next {
        right: -126px;
    }
}

@media (min-width: 1200px){
.no-flexboxlegacy .white-slide-section,
.no-flexboxlegacy .white-slide-section-mob {
    width: 100%;
    
}
}

@media (min-width: 1366px) {

    .white-slide-section .item,
    .white-slide-section-mob .item {
        height: auto;
    }
}

@media (min-width: 1440px) {
    .white-text-section {
        padding: 0 74px 0 16px;
    }

    .white-slide-section,
    .white-slide-section-mob {
        padding: 0 74px 0 0px;
    }

    .white-slide-section .slick-prev,
    .white-slide-section-mob .slick-prev {
        right: -64px;
    }

    .white-slide-section .slick-next,
    .white-slide-section-mob .slick-next {
        right: -112px;
    }

    .white-slide-section .item,
    .white-slide-section-mob .item {
        padding-right: 34px;
    }
}

@media (min-width: 1600px) {
    .white-text-section {
        padding: 15px 100px 0 16px;
    }
}

.pink-content-section {
    background-color: rgba(247, 235, 231, 0.5);
    padding: 25px 0 44px 0;
}

.expertise-pict {
    padding: 0 0 45px 0;
}

.expertise-pict img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.expertise-text .btn-quaternary {
    text-align: left;
    padding-top: 5px;
    width: 236px;
}

.expertise-text .btn-quaternary::after {
    content: none;
}

@media (min-width: 768px) {
    .pink-content-section {
        padding: 55px 0 65px 0;
        margin-top: 50px
    }

    .pink-content-section .container {
        padding: 0 22px;
    }

    .expertise-text .btn-quaternary {
        width: 290px;
    }

    .expertise-pict {
        border: 1px solid rgba(112, 112, 112, 0.33);
        padding: 54px 0;
        margin-top: 10px;
    }
}

@media (min-width: 1200px) {
    .expertise-text .btn-quaternary {
        width: auto;
    }

    .home .pink-content-section {
        margin-top: 0px;
    }

    .pink-content-section {
        margin-top: 90px;
        padding: 101px 0;
    }

    .expertise-pict {
        padding: 34px 0;
    }
}

.white-content-bottom-section {
    padding: 30px 0;
}

.white-content-bottom-section h5 {
    color: #764B61;
}

.white-content-bottom-section .btn {
    font-size: 12px;
    padding: 13px 14px;
    margin-bottom: 25px;
    display: block;
}

.vision-slider {
    padding: 10px 0 85px 0;
}

.vision-slider img {
    max-width: 100%;
}

.vision-slider .slick-prev,
.vision-slider .slick-next {
    top: auto;
    bottom: 0;
    width: 48px;
    border: 1px solid rgba(118, 75, 97, 0.5);
}

.vision-slider .slick-prev:before,
.vision-slider .slick-next:before {
    color: #764B61;
    background-color: #fff;
    border-radius: 0;
}

.vision-slider .slick-prev:hover::before,
.vision-slider .slick-next:hover::before {
    color: #764B61;
    opacity: 0.8;
}

.vision-slider .slick-next {
    right: 50%;
    margin-right: -48px;
    border-left: none;
}

.vision-slider .slick-prev {
    left: 50%;
    margin-left: -48px;
    border-right: none;
}

.vision-slider .slick-prev::after {
    width: 1px;
    background-color: rgba(118, 75, 97, 0.5);
    top: 4px;
    right: 0;
    height: 38px;
    content: '';
    position: absolute;
}

.vision-slider p {
    display: none;
}

@media (min-width: 600px) {
    .vision-slider p {
        display: block;
        font-size: 13px;
        font-weight: 400;
        font-style: italic;
        letter-spacing: 1px;
        padding: 0;
    }

    .vision-slider {
        margin: 0 -8px;
        padding-top: 40px;
        padding-bottom: 0;
    }

    .vision-slider .item {
        padding: 0 8px;
    }

    .white-content-bottom-section .btn {
        margin-bottom: 0;
        padding: 13px 30px;
    }

    .cta-padd h2 {
        margin-top: 10px;
    }
}

@media (min-width: 1200px) {
    .white-content-bottom-section {
        padding: 80px 0;
    }

    .white-content-bottom-section .btn {
        display: inline-block;
    }

    .vision-slider {
        margin: 0 -18px;
        padding-top: 60px;
    }

    .vision-slider .item {
        padding: 0 18px;
    }

    .white-content-bottom-section .col-md-5 {
        border-right: 1px solid rgba(118, 75, 97, 0.5);
    }

    .cta-padd {
        padding: 20px 0;
    }

    .cta-padd-t {
        padding: 10px 0 0 20px;
    }

    .white-content-bottom-section p {
        padding-top: 15px;
    }

    .white-content-bottom-section .col-md-7 {
        padding-left: 60px;
    }
}

.show--tab {
    display: none !important;
}

@media (max-width: 405px) {
    .white-content-bottom-section h5 {
        line-height: 1.5em;
        width: 276px;
        padding-right: 90px;
    }

    .white-content-bottom-section h5:after {
        top: auto;
        bottom: 10px;
    }
}

@media (min-width: 600px) and (max-width: 1024px) {
    .hidden--tab {
        display: none !important;
    }

    .show--tab {
        display: inline-block !important;
    }
}

.contact-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: none;
    font-weight: 400;
    line-height: 20px;
}

.contact-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #707070;
}

.contact-checkbox input:checked~.checkmark {
    background-color: #fff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.contact-checkbox input:checked~.checkmark:after {
    display: block;
}

.contact-checkbox .checkmark:after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D31145;
}

.contact-pink-section {
    background-color: #f8ede9
        /*rgba(247, 235, 231, 0.9)*/
    ;
    padding: 40px 22px;
}

.contact-home-section h5 {
    color: #764B61;
    margin-bottom: 7px;
}

.contact-white-section {
    padding: 25px 22px;
    background-color: #fff;
}

.contact-col ul {
    margin: 0;
    padding: 0;
}

.contact-col ul li {
    margin: 0;
    padding: 0 24px 0 0;
    float: left;
}

.contact-col ul li:before {
    display: none;
}

.contact-col ul li:last-child {
    padding: 0;
}

.btn.btn-secondary input {
    background: transparent;
    border: none;
    outline: none;
}

.wpcf7-form .wpcf7-submit.submit {
    letter-spacing: 3px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .contact-pink-section {
        padding: 65px 50px 50px 50px;
    }

    .contact-white-section {
        padding: 50px;
    }

    .contact-col ul li {
        padding: 0 60px 0 0;
    }
}

@media (min-width: 1200px) {
    .contact-home-section {
        background: url(../img/contact-bg.jpg) 0 0 no-repeat;
        background-size: cover;
        padding: 136px 0;
    }

    .contact-content-section {
        max-width: 1540px;
        margin: 0 auto;
        padding: 0 22px;
    }

    .contact-pink-section {
        float: left;
        width: 50%;
        padding: 46px 74px 9px 74px;
        min-height: 675px;
    }

    .contact-pink-section h2 {
        max-width: 472px;
    }

    .contact-white-section {
        float: left;
        width: 50%;
        min-height: 674px;
    }

    .wpcf7-form .contact-col .wpcf7-not-valid-tip {
        bottom: -26px;
    }
}

@media (min-width: 1600px) {
    .contact-pink-section {
        padding: 86px 74px 104px 74px;
    }
}

.example-bttn ul {
    margin: 20px 0 0 0;
    padding: 0;
}

.example-bttn ul li {
    padding: 20px 0;
    text-align: center;
}

.example-bttn ul li:before {
    display: none;
}

.example-bttn ul li:nth-child(3) {
    background-color: #764B61;
}

@media (min-width: 600px) {
    .example-bttn ul li {
        float: left;
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .example-bttn ul li {
        width: 25%;
        text-align: left;
    }

    .example-bttn ul li:nth-child(3) {
        text-align: center;
    }

    .example-bttn ul li:last-child {
        text-align: right;
    }
}

.image-button-section {
    padding: 30px 0;
    text-align: center;
}

.img-button-link {
    text-decoration: none;
    color: transparent;
}

.img-button-link:hover {
    color: transparent;
}

.image-button {
    margin-top: 30px;
    position: relative;
    height: 363px;
    overflow: hidden;
}

.image-button img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    font-family: 'object-fit: cover;'; /* IE object-fit fix */
    transition: transform .9s ease;
}

.button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(118, 75, 97, 0.8);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    padding: 0 20px;
    opacity: 0;
    transition: all .5s;
    line-height: 2em;
}

.image-button-hover {
    cursor: pointer;
}

.image-button-hover a {
    text-decoration: none !important;
    text-align: center;
}

.image-button-hover:hover .button-overlay {
    opacity: 1;
    transition: all .5s;
}

.image-button-hover:hover>.image-button img {
    transform: scale(1.1);
}

.button-text {
    background-color: #fff;
    border: 1px solid #B09BA7;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .7px;
    color: #764B61;
    text-transform: uppercase;
    width: 90%;
    margin-left: 5%;
    line-height: 16px;
    padding: 15px 0;
    margin-top: -32px;
    position: relative;
}

@media (min-width: 768px) {
    .image-button-section {
        padding: 50px 0;
    }

    .image-button {
        margin-top: 45px;
    }

    .button-text {
        padding: 27px 10px;
        margin-top: -36px;
        width: 80%;
        margin-left: 10%;
    }
}

@media (min-width: 1200px) {
    .page-id-16 .image-button-section {
        padding: 40px 0 100px 0;
    }

    .image-button-section {
        padding: 80px 0 100px 0;
    }

    .button-overlay {
        padding: 0 65px;
    }
}

.contact-pink-section-full {
    width: 100%;
    float: none;
    min-height: auto;
}

.contact-pink-section-full h5 {
    color: #764B61;
}

.contact-pink-section.contact-pink-section-full h2 {
    max-width: 100%;
}

.contact-content-section {
    position: relative;
    z-index: 10;
}

.full-image-inner-section img {
    display: none;
}

@media (min-width: 1200px) {
    .contact-pink-section-full {
        width: 83.33333333%;
        margin: 0 auto;
        padding-bottom: 80px;
    }

    .full-image-inner-section {
        position: relative;
        padding: 136px 0;
    }

    .full-image-inner-section img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        font-family: 'object-fit: cover;'; /* IE object-fit fix */
        z-index: 5;
    }

    .contact-content-section {
        display: flex;
    }

    .home.page-template-default.page-id-6 .contact-content-section textarea {
        height: 100px !important;
    }
}

.light-bg {
    background-color: #FBF5F3;
    padding-top: 40px;
    padding-bottom: 40px;
}

.light-bg h4 {
    color: #764B61;
}

@media (min-width: 768px) {
    .light-bg {
        padding-top: 65px;
        padding-bottom: 65px;
    }
}

@media (min-width: 1200px) {
    .light-bg {
        padding-bottom: 98px;
    }
}

.half-and-half {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #764B61;
    color: #FFFFFF;
}

.half-and-half h3,
.half-and-half h2 {
    color: #fff;
}

.half-and-half h5 {
    color: #F7EBE7;
}

.half-and-half h5::after {
    background-color: #F7EBE7;
}

.half-left-text {
    padding: 22px;
}

.half-text-wrapper .btn-tertiary:hover {
    color: #fff;
}

.half-left-image,
.half-left-text {
    position: relative;
    flex: 0 0 100%;
}

.half-left-image img {
    height: 100%;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    -o-object-fit: cover;
    font-family: 'object-fit: cover;';
}

.half-left-text {
    padding: 50px 20px;
}

.half-and-half-text.left {
    margin-left: auto;
}

.half-and-half-text.right {
    margin-right: auto;
}

@media only screen and (min-width: 1024px) {
    .half-left-text {
        padding: 40px 25px;
    }

    .half-left-image,
    .half-left-text {
        position: relative;
        flex: 0 0 50%;
    }

    .half-left-image img {
        position: absolute;
    }

    .half-left-text {
        padding: 50px 30px;
        max-width: 662px;
    }
}

@media (min-width: 1200px) {
    .half-left-text {
        padding: 125px 25px 125px 96px;
    }
}

.parallax-img-content {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 22px;
}

.parallax-text {
    padding: 25px;
    background-color: rgba(247, 235, 231, 0.9);
}

.parallax-text h5 {
    padding-right: 75px;
    color: #764B61;
}

.parallax-text h5:after {
    width: 70px;
}

@media (min-width: 768px) {
    .parallax-img-content {
        padding: 140px 0 0 0;
    }

    .parallax-text {
        width: 60%;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 50px;
    }

    .parallax-text h5 {
        padding-right: 110px;
    }

    .parallax-text h5:after {
        width: 104px;
    }
}

@media (min-width: 1440px) {
    .parallax-img-content {
        padding: 380px 0 0 0;
    }

    .parallax-text {
        width: 50%;
        padding-top: 90px;
        padding-bottom: 90px;
        padding-left: 0;
        padding-right: 0;
    }

    .parallax-wrapper {
        max-width: 620px;
        padding-right: 200px;
        float: right;
    }
}

.contact-us-content {
    background: url(../img/contact-us-bg.jpg) left 0 no-repeat;
    background-size: cover;
    padding: 25px 0;
    border-bottom: 1px solid rgba(118, 97, 75, 0.25);
}

.contact-us-wrapper {
    max-width: 892px;
    margin: 0;
    padding: 0;
}

.contact-us-wrapper h2 {
    position: relative;
    margin-bottom: 25px;
}

.contact-us-wrapper h2:before {
    content: '';
    bottom: 0;
    left: 0;
    position: absolute;
    width: 68px;
    height: 3px;
    background-color: #684157;
}

.contact-us-wrapper textarea {
    height: 99px;
}

.contact-col p {
    font-size: 13px;
}

.contact-col p a {
    font-weight: 400;
}

@media (min-width: 768px) {
    .contact-us-content {
        padding: 90px 0 110px 0;
    }
}

.gallery-content p {
    font-size: 16px;
}

.gallery ul {
    padding: 0;
    margin: 0;
    height: initial !important;
}

/* @keyframes galleryItemZoom {
    from {transform: scale(0)}
    to {transform: scale(1);}
} */
/* .single .gallery li { column-gap: 0 !important; }
 */
.gallery ul li:before {
    display: none;
}

.gallery ul li {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
    /* animation: galleryItemZoom 0.5s ease-in-out; */
}

.will-lazyload {
    opacity: 0;
    transition: opacity .25s;
}

.will-lazyload.lazyloaded {
    opacity: 1;
    transition: opacity .25s;
}

.gallery ul li>img {
    width: 100%;
    display: block;
}

.gallery li.gap {
    opacity: 0;
    height: 0;
    display: inline-block;
}

.gallery {
    padding: 0;
    width: 100%;
    margin: 0 auto;
    float: none;
    position: relative;
    overflow: hidden;
}

.gallery-load-more {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    padding: 35px 0;
}

.gallery-load-more a {
    font-size: 14px;
    font-weight: 600;
    color: #D31145;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
}

.loadmore-line {
    position: relative;
    margin: 20px 0;
    width: 100%;
    height: 5px;
    background-color: #BAA5B0;
}

.line-over {
    top: 0;
    left: 0;
    position: absolute;
    height: 5px;
    background-color: #764B61;
}

.loadmore-display {
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
}

.gallery-content h2::before {
    display: none !important;
}

.gallery-content h2 span {
    font-style: italic;
}

@media (min-width: 600px) {
    .gallery ul {
        padding: 0;
        column-count: 3;
        column-gap: 10px;
    }

    .gallery ul li {
        break-inside: avoid;
    }

    .gallery ul li>img {
        grid-row: 1 / -1;
        grid-column: 1;
    }
}

@media (min-width: 1200px) {
    .gallery ul {
        column-gap: 20px;
    }

    .gallery ul li {
        margin-bottom: 20px;
    }
}

.cd-main-content {
    position: relative;
    min-height: 100vh;
}

.gallery_menu_area {
    height: 40px;
    width: 240px;
    margin: 0 auto 30px auto;
    z-index: 1;
    position: relative;
}

.gallery_menu_area ul {
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #fff;
    border: 1px solid #684157;
}

.gallery_menu li {
    display: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gallery_menu li:before {
    display: none;
}

.gallery_menu li:first-child {
    display: block;
}

.gallery_menu li a {
    display: block;
    line-height: 40px;
    color: #684157;
    text-align: left;
    padding: 0 20px;
}

.gallery_menu li a:hover {
    text-decoration: none;
}

.gallery_menu_area a.selected {
    background: #684157;
    color: #ffffff;
}

.gallery_menu_area.is-open ul {
    box-shadow: inset 0 -2px 0 #41307c, 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery_menu_area.is-open ul li {
    display: block;
    border: 1px solid #684157;
}

.gallery_menu_area.is-open .placeholder a {
    opacity: .4;
}

.gallery_menu li.placeholder {
    display: none !important;
}

.gallery_menu.is-open li.placeholder {
    position: relative;
}

.gallery_menu.is-open li.placeholder:before {
    height: 100%;
    width: 16%;
    background-color: #0000;
    display: block;
    content: '';
    top: 0;
    left: 82%;
    background-image: url(../img/placeholder.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.gallery_menu.is-open li.filter a {
    height: 40px;
    border-top: 1px solid #684157;
}

.gallery_menu.is-open li.filter:first-child a {
    border-top: 0 solid transparent;
}

.gallery_menu.is-open li a.selected,
.gallery_menu.is-open li.filter a:hover {
    height: 40px;
    color: #fff;
    background: url(../img/checks25.png) #684157;
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: 100%;
}

.gallery .widget ul {
    padding: 0;
    column-count: 1;
    column-gap: 0;
}

.gallery .widget li {
    padding: 15px 20px !important;
}

.gallery_menu.is-open li {
    display: block
}

.gallery_menu li.placeholder {
    display: block !important;
}

.gallery img {
    display: block;
    width: 100%;
}

@media (min-width: 768px) {
    .gallery_menu_area {
        width: 100%;
    }

    .gallery_menu_area ul {
        border: none;
    }

    .gallery_menu li {
        display: inline-block;
    }

    .gallery_menu li a {
        padding: 0 15px;
        border: 1px solid #684157;
    }

    .gallery_menu li a:hover {
        color: #fff;
        background-color: #684157;
    }

    .gallery_menu li.placeholder {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .cd-main-content {
        padding: 0 10px 0 20px;
    }

    .gallery_menu_area {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .gallery_menu li {
        padding: 0 10px;
    }

    .gallery_menu li a {
        padding: 0 20px;
    }
}

/**
 * Print CSS
 */
@media print {

    /* Reset*/
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        filter: none !important;
        -webkit-filter: none !important;
        text-shadow: none !important;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    figure,
    table {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    p {
        orphans: 2;
        widows: 2;
    }

    /* Grid Styling */
    .container {
        width: auto;
    }

    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666666666666%;
    }

    .col-sm-10 {
        width: 83.33333333333334%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666666666666%;
    }

    .col-sm-7 {
        width: 58.333333333333336%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666666666667%;
    }

    .col-sm-4 {
        width: 33.33333333333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.666666666666664%;
    }

    .col-sm-1 {
        width: 8.333333333333332%;
    }

    /* Slick Slider - remove if not using slick slider */
    .slick-slider .slick-arrow,
    .slick-slider .slick-dots {
        display: none !important;
    }

    /* For sliders you want to display full width for print.
	   Update ".slick-slider" with your specific slider names. */
    .slick-slider,
    .slick-sliderg .slick-list,
    .slick-slider .slick-track,
    .slick-slider .slick-slide {
        width: 100% !important;
        height: auto !important;
    }

    /* For sliders where you only want to show the 1st image of that slider.
	   Update ".slick-slider" with your specific slider names. */
    .slick-slider .slick-slide {
        display: none !important;
    }

    .slick-slider .slick-slide.slick-active {
        display: block !important;
    }

    /* Show Only Active Thumbnails */
    .slick-slider .slick-cloned {
        display: none;
    }

    /* Reset adaptiveHeight */
    .slick-list {
        height: auto !important;
    }

    /* Remove Scrollbars */
    .slick-track {
        width: auto !important;
        height: auto !important;
        transform: none !important;
    }

    .slick-track.slick-slide {
        width: auto !important;
    }
}

body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */
.fancybox-button {
    background: rgba(211, 17, 69, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85) 0%,
            rgba(0, 0, 0, .3) 50%,
            rgba(0, 0, 0, .15) 65%,
            rgba(0, 0, 0, .075) 75.5%,
            rgba(0, 0, 0, .037) 82.85%,
            rgba(0, 0, 0, .019) 88%,
            rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Transition effects */
.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}

/* Share */
.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}

/*------------------------------------*\
    Trumps
\*------------------------------------*/
@-ms-viewport {
    width: device-width;
}

/**
 * Images
 */
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

/**
 * Visiblity
 */
.show {
    display: block !important;
}

.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 599px) {

    .visible-xxs {
        display: block !important;
    }

    table.visible-xxs {
        display: table;
    }

    tr.visible-xxs {
        display: table-row !important;
    }

    th.visible-xxs,
    td.visible-xxs {
        display: table-cell !important;
    }

    .visible-xxs-block {
        display: block !important;
    }

    .visible-xxs-inline {
        display: inline !important;
    }

    .visible-xxs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }

    .visible-xs-block {
        display: block !important;
    }

    .visible-xs-inline {
        display: inline !important;
    }

    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }

    .visible-sm-block {
        display: block !important;
    }

    .visible-sm-inline {
        display: inline !important;
    }

    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table;
    }

    tr.visible-md {
        display: table-row !important;
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }

    .visible-md-block {
        display: block !important;
    }

    .visible-md-inline {
        display: inline !important;
    }

    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }

    .visible-lg-block {
        display: block !important;
    }

    .visible-lg-inline {
        display: inline !important;
    }

    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

/**
 * Hiding
 */
.hide,
.hidden-xxs-up {
    display: none !important;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.invisible {
    visibility: hidden !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

@media (max-width: 599px) {
    .hidden-xxs {
        display: none !important;
    }
}

@media (min-width: 600px) {
    .hidden-xs-up {
        display: none !important;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hidden-xs-down {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hidden-sm-up {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .hidden-sm-down {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .hidden-md-up {
        display: none !important;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .hidden-md-down {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

/**
 * Screen Readers
 */
.sr-only,
.wpcf7 .screen-reader-response {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

/**
 * Print
 */
.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table;
    }

    tr.visible-print {
        display: table-row !important;
    }

    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }

    .visible-print-block {
        display: block !important;
    }

    .visible-print-inline {
        display: inline !important;
    }

    .visible-print-inline-block {
        display: inline-block !important;
    }

    .hidden-print {
        display: none !important;
    }
}

/**
 * Text alignment
 */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

/**
 * Positioning
 */
.affix-top {
    position: fixed !important;
    top: 0 !important;
}

.affix-bottom {
    position: fixed !important;
    bottom: 0 !important;
}

.affix-left {
    position: fixed !important;
    left: 0 !important;
}

.affix-right {
    position: fixed !important;
    right: 0 !important;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/**
 * Add/remove margins
 */
.push {
    margin: 20px !important;
}

.push-top {
    margin-top: 20px !important;
}

.push-right {
    margin-right: 20px !important;
}

.push-bottom {
    margin-bottom: 20px !important;
}

.push-left {
    margin-left: 20px !important;
}

.push-ends {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.push-sides {
    margin-right: 20px !important;
    margin-left: 20px !important;
}

.push-half {
    margin: 10px !important;
}

.push-half-top {
    margin-top: 10px !important;
}

.push-half-right {
    margin-right: 10px !important;
}

.push-half-bottom {
    margin-bottom: 10px !important;
}

.push-half-left {
    margin-left: 10px !important;
}

.push-half-ends {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.push-half-sides {
    margin-right: 10px !important;
    margin-left: 10px !important;
}

.flush {
    margin: 0 !important;
}

.flush-top {
    margin-top: 0 !important;
}

.flush-right {
    margin-right: 0 !important;
}

.flush-bottom {
    margin-bottom: 0 !important;
}

.flush-left {
    margin-left: 0 !important;
}

.flush-ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.flush-sides {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/**
 * Add/remove paddings
 */
.soft {
    padding: 20px !important;
}

.soft-top {
    padding-top: 20px !important;
}

.soft-right {
    padding-right: 20px !important;
}

.soft-bottom {
    padding-bottom: 20px !important;
}

.soft-left {
    padding-left: 20px !important;
}

.soft-ends {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.soft-sides {
    padding-right: 20px !important;
    padding-left: 20px !important;
}

.soft-half {
    padding: 10px !important;
}

.soft-half-top {
    padding-top: 10px !important;
}

.soft-half-right {
    padding-right: 10px !important;
}

.soft-half-bottom {
    padding-bottom: 10px !important;
}

.soft-half-left {
    padding-left: 10px !important;
}

.soft-half-ends {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.soft-half-sides {
    padding-right: 10px !important;
    padding-left: 10px !important;
}

.hard {
    padding: 0 !important;
}

.hard-top {
    padding-top: 0 !important;
}

.hard-right {
    padding-right: 0 !important;
}

.hard-bottom {
    padding-bottom: 0 !important;
}

.hard-left {
    padding-left: 0 !important;
}

.hard-ends {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hard-sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

@media (min-width:600px) {
    .flush-xs {
        margin: 0 !important;
    }

    .flush-xs-top {
        margin-top: 0 !important;
    }

    .flush-xs-right {
        margin-right: 0 !important;
    }

    .flush-xs-bottom {
        margin-bottom: 0 !important;
    }

    .flush-xs-left {
        margin-left: 0 !important;
    }

    .flush-xs-ends {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .flush-xs-sides {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .push-xs {
        margin: 20px !important;
    }

    .push-xs-top {
        margin-top: 20px !important;
    }

    .push-xs-right {
        margin-right: 20px !important;
    }

    .push-xs-bottom {
        margin-bottom: 20px !important;
    }

    .push-xs-left {
        margin-left: 20px !important;
    }

    .push-xs-ends {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .push-xs-sides {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .push-half-xs {
        margin: 10px !important;
    }

    .push-half-xs-top {
        margin-top: 10px !important;
    }

    .push-half-xs-right {
        margin-right: 10px !important;
    }

    .push-half-xs-bottom {
        margin-bottom: 10px !important;
    }

    .push-half-xs-left {
        margin-left: 10px !important;
    }

    .push-half-xs-ends {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .push-half-xs-sides {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .push-double-xs {
        margin: 40px !important;
    }

    .push-double-xs-top {
        margin-top: 40px !important;
    }

    .push-double-xs-right {
        margin-right: 40px !important;
    }

    .push-double-xs-bottom {
        margin-bottom: 40px !important;
    }

    .push-double-xs-left {
        margin-left: 40px !important;
    }

    .push-double-xs-ends {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .push-double-xs-sides {
        margin-right: 40px !important;
        margin-left: 40px !important;
    }

    .push-triple-xs {
        margin: 60px !important;
    }

    .push-triple-xs-top {
        margin-top: 60px !important;
    }

    .push-triple-xs-right {
        margin-right: 60px !important;
    }

    .push-triple-xs-bottom {
        margin-bottom: 60px !important;
    }

    .push-triple-xs-left {
        margin-left: 60px !important;
    }

    .push-triple-xs-ends {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .push-triple-xs-sides {
        margin-right: 60px !important;
        margin-left: 60px !important;
    }

    .soft-xs {
        padding: 20px !important;
    }

    .soft-xs-top {
        padding-top: 20px !important;
    }

    .soft-xs-right {
        padding-right: 20px !important;
    }

    .soft-xs-bottom {
        padding-bottom: 20px !important;
    }

    .soft-xs-left {
        padding-left: 20px !important;
    }

    .soft-xs-ends {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .soft-xs-sides {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .soft-half-xs {
        padding: 10px !important;
    }

    .soft-half-xs-top {
        padding-top: 10px !important;
    }

    .soft-half-xs-right {
        padding-right: 10px !important;
    }

    .soft-half-xs-bottom {
        padding-bottom: 10px !important;
    }

    .soft-half-xs-left {
        padding-left: 10px !important;
    }

    .soft-half-xs-ends {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .soft-half-xs-sides {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .soft-double-xs {
        padding: 40px !important;
    }

    .soft-double-xs-top {
        padding-top: 40px !important;
    }

    .soft-double-xs-right {
        padding-right: 40px !important;
    }

    .soft-double-xs-bottom {
        padding-bottom: 40px !important;
    }

    .soft-double-xs-left {
        padding-left: 40px !important;
    }

    .soft-double-xs-ends {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .soft-double-xs-sides {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .soft-triple-xs {
        padding: 60px !important;
    }

    .soft-triple-xs-top {
        padding-top: 60px !important;
    }

    .soft-triple-xs-right {
        padding-right: 60px !important;
    }

    .soft-triple-xs-bottom {
        padding-bottom: 60px !important;
    }

    .soft-triple-xs-left {
        padding-left: 60px !important;
    }

    .soft-triple-xs-ends {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .soft-triple-xs-sides {
        padding-right: 60px !important;
        padding-left: 60px !important;
    }

    .hard-xs {
        padding: 0 !important;
    }

    .hard-xs-top {
        padding-top: 0 !important;
    }

    .hard-xs-right {
        padding-right: 0 !important;
    }

    .hard-xs-bottom {
        padding-bottom: 0 !important;
    }

    .hard-xs-left {
        padding-left: 0 !important;
    }

    .hard-xs-ends {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hard-xs-sides {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (min-width:768px) {
    .flush-sm {
        margin: 0 !important;
    }

    .flush-sm-top {
        margin-top: 0 !important;
    }

    .flush-sm-right {
        margin-right: 0 !important;
    }

    .flush-sm-bottom {
        margin-bottom: 0 !important;
    }

    .flush-sm-left {
        margin-left: 0 !important;
    }

    .flush-sm-ends {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .flush-sm-sides {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .push-sm {
        margin: 20px !important;
    }

    .push-sm-top {
        margin-top: 20px !important;
    }

    .push-sm-right {
        margin-right: 20px !important;
    }

    .push-sm-bottom {
        margin-bottom: 20px !important;
    }

    .push-sm-left {
        margin-left: 20px !important;
    }

    .push-sm-ends {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .push-sm-sides {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .push-half-sm {
        margin: 10px !important;
    }

    .push-half-sm-top {
        margin-top: 10px !important;
    }

    .push-half-sm-right {
        margin-right: 10px !important;
    }

    .push-half-sm-bottom {
        margin-bottom: 10px !important;
    }

    .push-half-sm-left {
        margin-left: 10px !important;
    }

    .push-half-sm-ends {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .push-half-sm-sides {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .push-double-sm {
        margin: 40px !important;
    }

    .push-double-sm-top {
        margin-top: 40px !important;
    }

    .push-double-sm-right {
        margin-right: 40px !important;
    }

    .push-double-sm-bottom {
        margin-bottom: 40px !important;
    }

    .push-double-sm-left {
        margin-left: 40px !important;
    }

    .push-double-sm-ends {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .push-double-sm-sides {
        margin-right: 40px !important;
        margin-left: 40px !important;
    }

    .push-triple-sm {
        margin: 60px !important;
    }

    .push-triple-sm-top {
        margin-top: 60px !important;
    }

    .push-triple-sm-right {
        margin-right: 60px !important;
    }

    .push-triple-sm-bottom {
        margin-bottom: 60px !important;
    }

    .push-triple-sm-left {
        margin-left: 60px !important;
    }

    .push-triple-sm-ends {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .push-triple-sm-sides {
        margin-right: 60px !important;
        margin-left: 60px !important;
    }

    .soft-sm {
        padding: 20px !important;
    }

    .soft-sm-top {
        padding-top: 20px !important;
    }

    .soft-sm-right {
        padding-right: 20px !important;
    }

    .soft-sm-bottom {
        padding-bottom: 20px !important;
    }

    .soft-sm-left {
        padding-left: 20px !important;
    }

    .soft-sm-ends {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .soft-sm-sides {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .soft-half-sm {
        padding: 10px !important;
    }

    .soft-half-sm-top {
        padding-top: 10px !important;
    }

    .soft-half-sm-right {
        padding-right: 10px !important;
    }

    .soft-half-sm-bottom {
        padding-bottom: 10px !important;
    }

    .soft-half-sm-left {
        padding-left: 10px !important;
    }

    .soft-half-sm-ends {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .soft-half-sm-sides {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .soft-double-sm {
        padding: 40px !important;
    }

    .soft-double-sm-top {
        padding-top: 40px !important;
    }

    .soft-double-sm-right {
        padding-right: 40px !important;
    }

    .soft-double-sm-bottom {
        padding-bottom: 40px !important;
    }

    .soft-double-sm-left {
        padding-left: 40px !important;
    }

    .soft-double-sm-ends {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .soft-double-sm-sides {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .soft-triple-sm {
        padding: 60px !important;
    }

    .soft-triple-sm-top {
        padding-top: 60px !important;
    }

    .soft-triple-sm-right {
        padding-right: 60px !important;
    }

    .soft-triple-sm-bottom {
        padding-bottom: 60px !important;
    }

    .soft-triple-sm-left {
        padding-left: 60px !important;
    }

    .soft-triple-sm-ends {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .soft-triple-sm-sides {
        padding-right: 60px !important;
        padding-left: 60px !important;
    }

    .hard-sm {
        padding: 0 !important;
    }

    .hard-sm-top {
        padding-top: 0 !important;
    }

    .hard-sm-right {
        padding-right: 0 !important;
    }

    .hard-sm-bottom {
        padding-bottom: 0 !important;
    }

    .hard-sm-left {
        padding-left: 0 !important;
    }

    .hard-sm-ends {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hard-sm-sides {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (min-width:1025px) {
    .flush-md {
        margin: 0 !important;
    }

    .flush-md-top {
        margin-top: 0 !important;
    }

    .flush-md-right {
        margin-right: 0 !important;
    }

    .flush-md-bottom {
        margin-bottom: 0 !important;
    }

    .flush-md-left {
        margin-left: 0 !important;
    }

    .flush-md-ends {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .flush-md-sides {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .push-md {
        margin: 20px !important;
    }

    .push-md-top {
        margin-top: 20px !important;
    }

    .push-md-right {
        margin-right: 20px !important;
    }

    .push-md-bottom {
        margin-bottom: 20px !important;
    }

    .push-md-left {
        margin-left: 20px !important;
    }

    .push-md-ends {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .push-md-sides {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .push-half-md {
        margin: 10px !important;
    }

    .push-half-md-top {
        margin-top: 10px !important;
    }

    .push-half-md-right {
        margin-right: 10px !important;
    }

    .push-half-md-bottom {
        margin-bottom: 10px !important;
    }

    .push-half-md-left {
        margin-left: 10px !important;
    }

    .push-half-md-ends {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .push-half-md-sides {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .push-double-md {
        margin: 40px !important;
    }

    .push-double-md-top {
        margin-top: 40px !important;
    }

    .push-double-md-right {
        margin-right: 40px !important;
    }

    .push-double-md-bottom {
        margin-bottom: 40px !important;
    }

    .push-double-md-left {
        margin-left: 40px !important;
    }

    .push-double-md-ends {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .push-double-md-sides {
        margin-right: 40px !important;
        margin-left: 40px !important;
    }

    .push-triple-md {
        margin: 60px !important;
    }

    .push-triple-md-top {
        margin-top: 60px !important;
    }

    .push-triple-md-right {
        margin-right: 60px !important;
    }

    .push-triple-md-bottom {
        margin-bottom: 60px !important;
    }

    .push-triple-md-left {
        margin-left: 60px !important;
    }

    .push-triple-md-ends {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .push-triple-md-sides {
        margin-right: 60px !important;
        margin-left: 60px !important;
    }

    .soft-md {
        padding: 20px !important;
    }

    .soft-md-top {
        padding-top: 20px !important;
    }

    .soft-md-right {
        padding-right: 20px !important;
    }

    .soft-md-bottom {
        padding-bottom: 20px !important;
    }

    .soft-md-left {
        padding-left: 20px !important;
    }

    .soft-md-ends {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .soft-md-sides {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .soft-half-md {
        padding: 10px !important;
    }

    .soft-half-md-top {
        padding-top: 10px !important;
    }

    .soft-half-md-right {
        padding-right: 10px !important;
    }

    .soft-half-md-bottom {
        padding-bottom: 10px !important;
    }

    .soft-half-md-left {
        padding-left: 10px !important;
    }

    .soft-half-md-ends {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .soft-half-md-sides {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .soft-double-md {
        padding: 40px !important;
    }

    .soft-double-md-top {
        padding-top: 40px !important;
    }

    .soft-double-md-right {
        padding-right: 40px !important;
    }

    .soft-double-md-bottom {
        padding-bottom: 40px !important;
    }

    .soft-double-md-left {
        padding-left: 40px !important;
    }

    .soft-double-md-ends {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .soft-double-md-sides {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .soft-triple-md {
        padding: 60px !important;
    }

    .soft-triple-md-top {
        padding-top: 60px !important;
    }

    .soft-triple-md-right {
        padding-right: 60px !important;
    }

    .soft-triple-md-bottom {
        padding-bottom: 60px !important;
    }

    .soft-triple-md-left {
        padding-left: 60px !important;
    }

    .soft-triple-md-ends {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .soft-triple-md-sides {
        padding-right: 60px !important;
        padding-left: 60px !important;
    }

    .hard-md {
        padding: 0 !important;
    }

    .hard-md-top {
        padding-top: 0 !important;
    }

    .hard-md-right {
        padding-right: 0 !important;
    }

    .hard-md-bottom {
        padding-bottom: 0 !important;
    }

    .hard-md-left {
        padding-left: 0 !important;
    }

    .hard-md-ends {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hard-md-sides {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (min-width:1200px) {
    .flush-lg {
        margin: 0 !important;
    }

    .flush-lg-top {
        margin-top: 0 !important;
    }

    .flush-lg-right {
        margin-right: 0 !important;
    }

    .flush-lg-bottom {
        margin-bottom: 0 !important;
    }

    .flush-lg-left {
        margin-left: 0 !important;
    }

    .flush-lg-ends {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .flush-lg-sides {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .push-lg {
        margin: 20px !important;
    }

    .push-lg-top {
        margin-top: 20px !important;
    }

    .push-lg-right {
        margin-right: 20px !important;
    }

    .push-lg-bottom {
        margin-bottom: 20px !important;
    }

    .push-lg-left {
        margin-left: 20px !important;
    }

    .push-lg-ends {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .push-lg-sides {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .push-half-lg {
        margin: 10px !important;
    }

    .push-half-lg-top {
        margin-top: 10px !important;
    }

    .push-half-lg-right {
        margin-right: 10px !important;
    }

    .push-half-lg-bottom {
        margin-bottom: 10px !important;
    }

    .push-half-lg-left {
        margin-left: 10px !important;
    }

    .push-half-lg-ends {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .push-half-lg-sides {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .push-double-lg {
        margin: 40px !important;
    }

    .push-double-lg-top {
        margin-top: 40px !important;
    }

    .push-double-lg-right {
        margin-right: 40px !important;
    }

    .push-double-lg-bottom {
        margin-bottom: 40px !important;
    }

    .push-double-lg-left {
        margin-left: 40px !important;
    }

    .push-double-lg-ends {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .push-double-lg-sides {
        margin-right: 40px !important;
        margin-left: 40px !important;
    }

    .push-triple-lg {
        margin: 60px !important;
    }

    .push-triple-lg-top {
        margin-top: 60px !important;
    }

    .push-triple-lg-right {
        margin-right: 60px !important;
    }

    .push-triple-lg-bottom {
        margin-bottom: 60px !important;
    }

    .push-triple-lg-left {
        margin-left: 60px !important;
    }

    .push-triple-lg-ends {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .push-triple-lg-sides {
        margin-right: 60px !important;
        margin-left: 60px !important;
    }

    .soft-lg {
        padding: 20px !important;
    }

    .soft-lg-top {
        padding-top: 20px !important;
    }

    .soft-lg-right {
        padding-right: 20px !important;
    }

    .soft-lg-bottom {
        padding-bottom: 20px !important;
    }

    .soft-lg-left {
        padding-left: 20px !important;
    }

    .soft-lg-ends {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .soft-lg-sides {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .soft-half-lg {
        padding: 10px !important;
    }

    .soft-half-lg-top {
        padding-top: 10px !important;
    }

    .soft-half-lg-right {
        padding-right: 10px !important;
    }

    .soft-half-lg-bottom {
        padding-bottom: 10px !important;
    }

    .soft-half-lg-left {
        padding-left: 10px !important;
    }

    .soft-half-lg-ends {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .soft-half-lg-sides {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .soft-double-lg {
        padding: 40px !important;
    }

    .soft-double-lg-top {
        padding-top: 40px !important;
    }

    .soft-double-lg-right {
        padding-right: 40px !important;
    }

    .soft-double-lg-bottom {
        padding-bottom: 40px !important;
    }

    .soft-double-lg-left {
        padding-left: 40px !important;
    }

    .soft-double-lg-ends {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .soft-double-lg-sides {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .soft-triple-lg {
        padding: 60px !important;
    }

    .soft-triple-lg-top {
        padding-top: 60px !important;
    }

    .soft-triple-lg-right {
        padding-right: 60px !important;
    }

    .soft-triple-lg-bottom {
        padding-bottom: 60px !important;
    }

    .soft-triple-lg-left {
        padding-left: 60px !important;
    }

    .soft-triple-lg-ends {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .soft-triple-lg-sides {
        padding-right: 60px !important;
        padding-left: 60px !important;
    }

    .hard-lg {
        padding: 0 !important;
    }

    .hard-lg-top {
        padding-top: 0 !important;
    }

    .hard-lg-right {
        padding-right: 0 !important;
    }

    .hard-lg-bottom {
        padding-bottom: 0 !important;
    }

    .hard-lg-left {
        padding-left: 0 !important;
    }

    .hard-lg-ends {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hard-lg-sides {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .admin-bar .page-header {
        top: 46px;
        position: fixed;
    }

    .admin-bar .page-header.js-scrolled {
        top: 0 !important;
    }

    html {
        margin-top: 0 !important;
    }
}

@media (min-width: 768px) {

    .admin-bar .page-header,
    .admin-bar .page-header.js-scrolled {
        top: 32px;
    }
}