:root {
    --primary-font: 'Helvetica Neue', sans-serif;
    --secondary-font: 'Playfair Display', serif;
/*    --primary-color: #F7CE3B;*/
    --secondary-color: #1D1C24;
    --brand-color: #00A756;
    --text-color: #333;
}



body {
	margin: 0;
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
}

p {
    margin: 0px;
}

img {
	max-width: 100%;
}

.site-content img[class*=wp-image-] {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
    -webkit-user-select: initial !important;
    -moz-user-select: initial !important;
    -ms-user-select: initial !important;
    user-select: initial !important;
}

.slick-center {
  /*-webkit-transform: scale(1.15);*/
  /*-moz-transform: scale(1.15);*/
  /*transform: scale(1.15);    */
}

.slick-next {
    right: 0;
}

.slick-prev {
    left: 0;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-arrow {
    width: 60px;
    height: 120px;
    background-repeat: no-repeat !important;
    background-size: auto !important;
    background-color: #e0e0e0 !important;
    transition: .4s;
    z-index: 1;
}

.slick-prev {
    background-image: url(../img/slick/arrow-black-left.png) !important;
    background-position: calc(100% - 25px) center !important;
    border-radius: 0 100px 100px 0;
}

.slick-next {
    background-image: url(../img/slick/arrow-black-right.png) !important;
    background-position: calc(100% - 10px) center !important;
    border-radius: 100px 0 0 100px;
}

.slick-prev:hover {
    background-color: rgb(var(--primary-color)) !important;
    background-image: url(../img/slick/arrow-white-left.png) !important;
}

.slick-next:hover {
    background-color: rgb(var(--primary-color)) !important;
    background-image: url(../img/slick/arrow-white-right.png) !important;
}


.slick-dots {
    left: 0;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li {
    width: 17px;
    height: 17px;
    transition: .3s;
}

.slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 50px;
    background-color: rgba(var(--primary-color), .6);
}

.slick-dots li.slick-active {
    width: 40px;
}
.slick-dots li.slick-active button {
    background-color: rgb(var(--primary-color));
}

ol, ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.h1 {
    font-weight: 700;
}

.h2 {
    font-weight: 700;
}

.h3 {
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h1,
.h1 {
    font-size: 60px;
    line-height: 1.2;
}

.h2,
h2 {
    font-size: 46px;
    line-height: 1.4;
}

.h3,
h3 {
    font-size: 32px;
    line-height: 1.5;
}

.h4,
h4 {
    font-size: 24px;
    line-height: 1.6;
}

.h5,
h5 {
    font-size: 22px;
    line-height: 1.7;
}

.h6,
h6 {
    font-size: 20px;
    line-height: 1.8;
}

.p {
    font-size: 16px;
    line-height: 1.4;
}

.sec-title {
    font-family: var(--secondary-font);
    color: white;
    font-size: 56px; 
    margin: 0;
}

.inner-title {
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    font-size: 32px; 
    margin: 0;
    font-weight: 800;
}

a {
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    color: var(--text-color);
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    color: rgb(var(--primary-color));
}

.container {
    max-width: 1430px;
    padding-left: 15px;
    padding-right: 15px;
}

/*Color */

.bg-primary {
    background: rgb(var(--primary-color)) !important;
}

.bg-secondary {
    background: #00A756 !important;
}

.bg-gray {
    background-color: #f3f3f3 !important;
}

.bg-third {
    background-color: #007A3D !important;
}

.bg-white,
.bg-light {
    background: #fff !important;
}

.bg-dark {
    background: #000 !important;
}

.text-dark {
    color: #000 !important;
}

.text-gray a:not(.btn),
.text-gray {
    color: rgb(var(--text-color)) !important;
}

.text-light a:not(.btn),
.text-light {
    color: #ffffff !important;
}

.texts-light *:not(.btn),
.texts-light {
    color: #ffffff !important;
}

.text-light.entry-content > * {
    color: #ffffff !important;
}

.text-dark a:not(.btn),
.text-dark {
    color: #000 !important;
}

a.text-primary:hover,
a.text-primary:focus,
.text-primary {
    color: rgb(var(--primary-color)) !important;
}

a.text-brand:hover,
a.text-brand:focus,
.text-brand {
    color: rgb(var(--brand-color)) !important;
}

a.text-secondary:hover,
a.text-secondary:focus,
.text-secondary {
    color: rgb(var(--secondary-color)) !important;
}

/* Typography */

.font-primary {
   font-family: var(--primary-font); 
}

.font-secondary {
   font-family: var(--secondary-font); 
}

.lh-1 {
    line-height: 1 !important;
}
.lh-12 {
    line-height: 1.2 !important;
}
.lh-13 {
    line-height: 1.3 !important;
}
.lh-14 {
    line-height: 1.4 !important;
}
.lh-15 {
    line-height: 1.5 !important;
}
.lh-16 {
    line-height: 1.6 !important;
}

.lh-18 {
    line-height: 1.8 !important;
}

.lh-2 {
    line-height: 2 !important;
}

.font-300 {
    font-weight: 300 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.font-600 {
    font-weight: 600 !important;
}

.font-700 {
    font-weight: 700 !important;
}

.font-800 {
    font-weight: 800 !important;
}

.font-900 {
    font-weight: 900 !important;
}

/*Buttons*/

.btn {
    font-family: var(--primary-font);
    display: inline-block;
    position: relative;
    border: 0;
    transition: .5s;
    text-align: center;
    border-radius: 6px;
    text-transform: uppercase;
    color: #0E1C25;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase; 
    padding: 16px 53px;
    background-color: rgb(var(--primary-color));
}

.btn:focus,
.btn:active,
.btn:hover {
    opacity: .8;
    color: #0E1C25;
}

.btn-lg {
    padding: 16px 33px;
}

.btn-sm {
    font-size: 16px;
}

.btn-primary {
    background-color: rgb(var(--primary-color)) !important;
    color: #ffffff !important;
}

.btn-secondary {
    background-color: var(--secondary-color) !important;
    color: #000 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background-color: rgb(var(--primary-color)) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
}

.wp-block-button.btn .wp-block-button__link {
    background: transparent;
    color: inherit;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-transform: inherit;
    text-align: inherit;
}

.form-wrap {

}
/* Reusable Classes*/

.emg-sec {
	position: relative;
    padding: 80px 0 70px;
    background-color: #000;
}
.inner-content .emg-sec {
    background-color: #fff;
}
.has-image-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.shadow-text {
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.has-shadow {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07) !important;
}

.has-overlay {
    position: relative;
    z-index: 1;
}

.has-overlay:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(40,11,9, .5);
}

/*Social*/

.emg_social {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
    justify-content: center;
    padding: 0;
}

.emg_social li {
    /*width: 34px;*/
    /*height: 34px;*/
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #fff;*/
    /*border-radius: 50%;*/
}

.emg_social li.icon-fb {
    /*background: #3B5998;*/
}

.emg_social li.icon-tw {
    /*background: #1DA1F2;*/
}

.emg_social li.icon-yt {
    /*background: #FF0000;*/
}

.emg_social li.icon-ins {
    /*background: #405de6;*/
}

.emg_social li.icon-yelp {
    /*background: #af0606;*/
}

.emg_social li.icon-pin {
    /*background: #e60023;*/
}

.emg_social li:not(:last-child) {
    margin-right: 10px;
}

.emg_social li a {
    width: 100%;
    height: 100%;
    display: flex;
}

.emg_social li img {
    width: auto;
    margin: auto;
    height: 20px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}


.emg_social_inline {
    flex-wrap: wrap;
}
.emg_social_inline li {
    width: 100%;
    margin: 0 0 15px;
}

.emg_social_inline li a {
    position: relative;
    padding-left: 35px;
}

.emg_social_inline li a img {
    margin: 0;
    position: absolute;
    left: 0;
    top: 5px;
}

.bg-image {
    position: absolute!important;
    top: 46%;
    left: 0;
    width: 100%;
    height: 85vh!important;
    min-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transform: translateY(-50%);
}

.has-border span {
    padding-right: 15px;
    display: inline-block;
    position: relative;
}

.has-border.text-center span {
    padding-left: 15px;
}

.has-border.text-center span:before,
.has-border span:after {
    content: '';
    width: 130px;
    height: 1px;
    background: rgb(var(--primary-color));
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.text-light.has-border.text-center span:before,
.text-light.has-border span:after {
    background: rgb(var(--secondary-color));
}

.has-border.text-center span:before {
    left: auto;
    right: 100%;
}

.has-mirror {
    padding-top: 100px;
    position: relative;
    z-index: 1;
    /*overflow: hidden;*/

}

.has-mirror::after {
    content: attr(data-mirror);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 200px;
    white-space: nowrap;
    opacity: .18;
    /*opacity: .5;*/
    color: #e4e3e3;
    line-height: .7;
    z-index: -1;
}

.text-center.has-mirror::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-light.has-mirror::after {
    color: #1f1f1f;
    opacity: .7;
}


.wp-block-column ul:not(.entry-meta):not(.wufoo-ul):not(.gform_fields) li,
.entry-content ul:not(.entry-meta):not(.wufoo-ul):not(.gform_fields) li {
    padding-left: 35px;
    position: relative;
    list-style:none;
    margin-bottom: 15px;
}

.wp-block-column ul:not(.entry-meta):not(.wufoo-ul):not(.gform_fields) li:before,
.entry-content ul:not(.entry-meta):not(.wufoo-ul):not(.gform_fields) li:before {
    content: '';
    width: 23px;
    height: 23px;
    position: absolute;
    top: 3px;
    left: 0;
    background-image: url(../img/08.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
}


/* START GRAVITY FORM STYLE*/

.emg-form {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
}

.gform_heading {
    display: none;
}

.contact-form-title span {
    font-size: 45px;
    line-height: 1.2;
}

.gform_wrapper.emg-g-form_wrapper {
    margin-top: 0;
    margin-bottom: 0;
}

.gform_wrapper label.gfield_label,
.gform_wrapper legend.gfield_label {
    color: #333;
    font-weight: 400!important;
}

.gform_wrapper.emg-g-form_wrapper ul li.gfield {
    margin-top: 20px;
    margin-bottom: 0;
}

.gform_wrapper.emg-g-form_wrapper li.hidden_label input {
    margin-top: 0;
}

.gform_wrapper.emg-g-form_wrapper select,
.gform_wrapper.emg-g-form_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    height: initial !important;
}

.gform_wrapper.emg-g-form_wrapper select,
.gform_wrapper.emg-g-form_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper.emg-g-form_wrapper textarea {
    font-family: inherit;
    letter-spacing: normal;
    font-size: 18px !important;
    padding: 9px 10px;
    box-shadow: none!important;
    background: #E4E4E4!important;
    border-radius: 0;
    color: #333;
    border: 1px solid transparent;
    margin-bottom: 0;
    width: 100%;
}

.gform_wrapper.emg-g-form_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
.gform_wrapper.emg-g-form_wrapper textarea:focus {
    border-color: transparent;
    outline: none;
}

.gform_wrapper.emg-g-form_wrapper select {
    padding: 7px 10px 7px !important;
    height: auto !important;
}

.gform_wrapper.emg-g-form_wrapper .gform_footer {
    padding: 0;
    text-align: center;
    margin: 25px 0 0 0;
}

/* Submit Button*/
.gform_wrapper.emg-g-form_wrapper .gform_footer input.button,
.gform_wrapper.emg-g-form_wrapper .gform_footer input[type=submit],
.gform_wrapper.emg-g-form_wrapper .gform_page_footer input.button,
.gform_wrapper.emg-g-form_wrapper .gform_page_footer input[type=submit] {
    background: rgb(var(--primary-color));
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25 !important;
    min-height: auto !important;
    color: #000;
    box-shadow: none !important;
    padding: 18px 20px;

    border: 0;

    outline: none !important;
    margin-right: 0 !important;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    border-radius: 50px;
    font-family: var(--primary-font);
}

.gform_wrapper.emg-g-form_wrapper .top_label div.ginput_container {
    margin-top: 2px !important;
}

.gform_wrapper.emg-g-form_wrapper .field_sublabel_below .ginput_complex.ginput_container label,
.gform_wrapper.emg-g-form_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {
    margin: 5px 0 0;
    line-height: 1.2;
    font-size: 14px;
    color: #333;
}

.footer-top .emg-g-form_wrapper select,
.footer-top .emg-g-form_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.footer-top .emg-g-form_wrapper textarea {
    padding: 18px 10px;
    padding-left: 20px;
}

.footer-top .emg-g-form_wrapper .gform_footer input.button,
.footer-top .emg-g-form_wrapper .gform_footer input[type=submit],
.footer-top .emg-g-form_wrapper .gform_page_footer input.button,
.footer-top .emg-g-form_wrapper .gform_page_footer input[type=submit] {
    border-radius: 0;
    text-transform: uppercase;
}

@media only screen and (min-width: 641px){
    .gform_wrapper.emg-g-form_wrapper ul.gform_fields li.gfield:not(.gf_left_half ) {
        padding-right: 0;
    }
}

/*Validation*/
.gform_wrapper .gform_validation_errors>h2 {
    font-size: 15px !important;
}
.gform_wrapper.emg-g-form_wrapper .validation_message {
    padding: 3px 15px !important;
}

.gform_wrapper.emg-g-form_wrapper li.gfield.gfield_error {
    background-color: transparent;
}
.gform_wrapper.emg-g-form_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper.emg-g-form_wrapper li.gfield_error textarea {
    /*border-color: #790000;*/
}

.gform_wrapper.emg-g-form_wrapper div.validation_error {
    display: none;
}
.gform_wrapper.emg-g-form_wrapper li.gfield.gfield_error,
.gform_wrapper.emg-g-form_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    padding-top: 0;
    border: 0 !important;
}
.gform_wrapper .ginput_container.ginput_container_phone + .gfield_description {
    display: none; 
}


.sidebar-form-wrap {
    box-shadow: rgba(0,0,0,.15) 0px 8px 16px 0px;
    padding: 20px;
}

@media screen and (max-width: 1199px) {
    .emg-sec {
        padding: 50px 0;
    }



}

@media screen and (max-width: 991px) {

    .emg-title {
        font-size: 40px;
        line-height: 1.2;
    }

    .has-mirror::after {
        white-space: initial;
        font-size: 70px;
    }

    .btn {
        /*font-size: 20px;
        padding: 12px 55px;*/
    }
}

@media screen and (max-width: 767px) {

    .has-border.text-center span:after,
    .has-border.text-center span:before {
        width: 30px;
    }

    img.alignright,
    .wp-block-image .alignright,
    img.alignleft,
    .wp-block-image .alignright,
    img.aligncenter,
    .wp-block-image .alignright {
        margin: 0 auto 15px !important;
        display: block;
        float: none !important;
    }

    .btn {
        font-size: 18px;
        padding: 14px 25px;
    }


}

@media screen and (max-width:600px) {
    .emg-sec {
        padding: 55px 0;
    }

   .btn-xs-full {
        text-align: center;
        max-width: 400px;
        width: 100% !important;
    }

}

@media screen and (max-width: 575px) {

    .slick-arrow {
        width: 40px;
        height: 80px;
        background-size: 18px !important;
    }

    .slick-prev {
        background-position: calc(100% - 15px) center !important;
    }

}