 
a.fy-link-inverse {
    color: #000;
}

a.fy-link-inverse:hover {
    color: #32323e
}

.fy-animation-rotate {
    animation-name: animationRotate;
    animation-duration: .6s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

.fy-animation-pulse {
    animation-name: animationPulse;
    animation-duration: .6s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

.fy-animation-fade-in {
    animation-name: animationFadeIn;
    animation-duration: .6s;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards
}

.fy-animation-fade-out {
    animation-name: animationFadeOut;
    animation-duration: .6s;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards
}

.fy-animation-slide-in {
    animation-name: animationSlideTop;
    animation-duration: .6s;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards
}

.fy-animation-slide-out {
    animation-name: animationSlideTopOut;
    animation-duration: .6s;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards
}

@keyframes animationRotate {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes animationRotate {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes animationPulse {
    0% {
        transform: scale(1, 1)
    }
    50% {
        transform: scale(1.1, 1.1)
    }
    100% {
        transform: scale(1, 1)
    }
}

@-webkit-keyframes animationPulse {
    0% {
        transform: scale(1, 1)
    }
    50% {
        transform: scale(1.1, 1.1)
    }
    100% {
        transform: scale(1, 1)
    }
}

@keyframes animationFadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes animationFadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes animationFadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@-webkit-keyframes animationFadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes animationSlideIn {
    from {
        width: 0
    }
    to {
        width: 100%
    }
}

@-webkit-keyframes animationSlideIn {
    from {
        width: 0
    }
    to {
        width: 100%
    }
}

@keyframes animationSlideOut {
    from {
        width: 100%
    }
    to {
        width: 0
    }
}

@-webkit-keyframes animationSlideOut {
    from {
        width: 100%
    }
    to {
        width: 0
    }
}

@keyframes animationProgress {
    from {
        width: 0
    }
}

@-webkit-keyframes animationProgress {
    from {
        width: 0
    }
}

::selection {
    color: #fff !important;
    background-color: #626d86;
    text-shadow: none
}
::-webkit-selection {
    color: #fff !important;
    background-color: #626d86;
    text-shadow: none
}

::-moz-selection {
    color: #fff !important;
    background-color: #626d86;
    text-shadow: none
}

img::selection {
    background: transparent
}

img::-moz-selection {
    background: transparent
}

input::selection,
textarea::selection,
select::selection {
    -webkit-text-fill-color: #fff !important
}

input:-webkit-autofill::selection,
textarea:-webkit-autofill::selection,
select:-webkit-autofill::selection {
    -webkit-text-fill-color: #fff !important
}

.clearfix:after {
    content: '';
    display: table;
    clear: both
}

.fy-position-relative {
    position: relative
}

.fy-position-absolute {
    position: absolute
}

.fy-position-static {
    position: static
}

.fy-float-left {
    float: left
}

.fy-float-right {
    float: right
}

.fy-block {
    display: block
}

.fy-block-center {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.fy-align-left {
    text-align: left
}

.fy-align-center {
    text-align: center
}

.fy-align-right {
    text-align: right
}

.fy-align-justify {
    text-align: justify
}

.fy-show {
    display: block;
    visibility: visible
}

.fy-hide {
    display: none !important;
    visibility: hidden !important;
    padding: 0;
    margin: 0
}

.fy-hidden {
    visibility: hidden
}

.fy-visible {
    visibility: visible
}

.fy-padding-small {
    padding: 20px 20px
}

.fy-padding,
.fy-padding-medium {
    padding: 40px 40px
}

.fy-padding-large {
    padding: 80px 80px
}

.fy-padding-0 {
    padding: 0
}

.fy-padding-top {
    padding-top: 40px
}

.fy-padding-top-0 {
    padding-top: 0
}

.fy-padding-right {
    padding-right: 40px
}

.fy-padding-right-0 {
    padding-right: 0
}

.fy-padding-bottom {
    padding-bottom: 40px
}

.fy-padding-bottom-0 {
    padding-bottom: 0
}

.fy-padding-left {
    padding-left: 40px
}

.fy-padding-left-0 {
    padding-left: 0
}

.fy-padding-vertical-0 {
    padding-top: 0;
    padding-bottom: 0
}

.fy-padding-horizontal-0 {
    padding-right: 0;
    padding-left: 0
}

.fy-margin-small {
    margin: 20px 20px
}

.fy-margin,
.fy-margin-medium {
    margin: 40px 40px
}

.fy-margin-large {
    margin: 80px 80px
}

.fy-margin-0 {
    margin: 0
}

.fy-margin-top {
    margin-top: 40px
}

.fy-margin-top-0 {
    margin-top: 0
}

.fy-margin-right {
    margin-right: 40px
}

.fy-margin-right-0 {
    margin-right: 0
}

.fy-margin-bottom {
    margin-bottom: 40px
}

.fy-margin-bottom-0 {
    margin-bottom: 0
}

.fy-margin-left {
    margin-left: 40px
}

.fy-margin-left-0 {
    margin-left: 0
}

@media(max-width:481px) {
    .fy-phone-min-show {
        display: block
    }
    .fy-phone-min-hide {
        display: none
    }
}

@media(max-width:767px) {
    .fy-phone-show {
        display: block
    }
    .fy-phone-hide {
        display: none
    }
}

@media(min-width:768px) and (max-width:1023px) {
    .fy-tablet-show {
        display: block
    }
    .fy-phone-show,
    .fy-desktop-show,
    .fy-desktop-wide-show {
        display: none
    }
    .fy-tablet-hide {
        display: none
    }
}

@media(min-width:1024px) and (max-width:1279px) {
    .fy-desktop-show {
        display: block
    }
    .fy-phone-show,
    .fy-tablet-show,
    .fy-desktop-wide-show {
        display: none
    }
    .fy-desktop-hide {
        display: none
    }
}

@media(min-width:1280px) {
    .fy-desktop-wide-show {
        display: block
    }
    .fy-phone-show,
    .fy-tablet-show,
    .fy-desktop-show {
        display: none
    }
    .fy-desktop-wide-hide {
        display: none
    }
}

@media(min-width:1480px) {
    .fy-desktop-super-wide-show {
        display: block
    }
    .fy-phone-show,
    .fy-tablet-show,
    .fy-desktop-show,
    .fy-desktop-wide-show {
        display: none
    }
    .fy-desktop-super-wide-hide {
        display: none
    }
}

@media print {
    .fy-print-show {
        display: block
    }
    .fy-print-hide {
        display: none
    }
}

   

.fy-image {
    display: block;
    vertical-align: middle;
    border: 0
}

.fy-image-responsive {
    display: block;
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    height: auto
}

.fy-image-rounded {
    display: block;
    vertical-align: middle;
    border: 0;
    border-radius: 4px
}

.fy-image-circle {
    display: block;
    vertical-align: middle;
    border: 0;
    border-radius: 80px
}

form.fy-form {
    display: block;
    margin-bottom: 40px
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0
}

fieldset.fy-fieldset legend,
fieldset.fy-fieldset .fy-legend {
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    border: 0
}

.fy-field {
    position: relative;
    padding: 0;
    margin: 20px 0 40px
}

.fy-field:before,
.fy-field:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0
}

.fy-field:before {
    width: 0;
    height: 1px;
    z-index: 1;
    background-color: #644baf;
    transition-property: width, height, background-color, box-shadow, opacity;
    transition-duration: .3s;
    transition-timing-function: ease-out
}

.fy-field:after {
    width: 100%;
    height: 1px;
    z-index: 0;
    background-color: rgba(50, 50, 62, 0.2);
    transition: none .3s ease-out 0s
}

label.fy-label {
    display: inline-block;
    padding: 0;
    margin-bottom: 10px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #32323e;
    cursor: pointer;
    transition-property: color, background-color;
    transition-duration: .3s;
    transition-timing-function: ease-out;
    user-select: none
}

label.fy-label.fy-error {
    color: #fa6e78
}

label.fy-label .fy-required {
    font-size: 13px;
    text-decoration: none;
    border-bottom: 0 !important
}

label.fy-label-error {
    display: block;
    padding: 10px 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    line-height: normal;
    color: #fa6e78
}

.fy-field .fy-label-error {
    position: absolute;
    top: 100%;
    left: 0
}

input.fy-input,
textarea.fy-input,
select.fy-input {
    display: block;
    width: 100%;
    margin: 0;
    padding: 10px 20px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .025em;
    text-transform: none;
    line-height: 46px;
    color: rgba(50, 50, 62, 0.6);
    background-color: transparent;
    border: 1px solid rgba(50, 50, 62, 0.2);
    -webkit-appearance: none;
    -moz-appearance: none;
    transition-property: color, background-color, border-color, box-shadow;
    transition-duration: .3s;
    transition-timing-function: ease-out
}

input.fy-input::-webkit-input-placeholder,
textarea.fy-input::-webkit-input-placeholder,
select.fy-input::-webkit-input-placeholder {
    color: rgba(50, 50, 62, 0.4) !important;
    transition: color .3s ease-out 0s
}

input.fy-input:-ms-input-placeholder,
textarea.fy-input:-ms-input-placeholder,
select.fy-input:-ms-input-placeholder {
    color: rgba(50, 50, 62, 0.4) !important;
    transition: color .3s ease-out 0s
}

input.fy-input:focus::-webkit-input-placeholder,
textarea.fy-input:focus::-webkit-input-placeholder,
select.fy-input:focus::-webkit-input-placeholder {
    color: rgba(50, 50, 62, 0.2) !important
}

input.fy-input:focus:-ms-input-placeholder,
textarea.fy-input:focus:-ms-input-placeholder,
select.fy-input:focus:-ms-input-placeholder {
    color: rgba(50, 50, 62, 0.2) !important
}

input.fy-input:focus,
textarea.fy-input:focus,
select.fy-input:focus {
    outline: 0;
    color: #32323e;
    border-color: #644baf;
    background-color: transparent
}

input.fy-input::-moz-focus-inner,
textarea.fy-input::-moz-focus-inner,
select.fy-input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input.fy-input[disabled],
input.fy-input[readonly],
fieldset[disabled] input.fy-input,
textarea.fy-input[disabled],
textarea.fy-input[readonly],
fieldset[disabled] textarea.fy-input,
select.fy-input[disabled],
select.fy-input[readonly],
fieldset[disabled] select.fy-input {
    opacity: 1;
    cursor: default;
    color: rgba(50, 50, 62, 0.6);
    background-color: transparent;
    border-width: 1px;
    border-color: rgba(50, 50, 62, 0.2)
}

input.fy-input.fy-field-small,
textarea.fy-input.fy-field-small,
select.fy-input.fy-field-small {
    font-size: 14px;
    padding: 10px 20px
}

input.fy-input.fy-field-medium,
textarea.fy-input.fy-field-medium,
select.fy-input.fy-field-medium {
    font-size: 16px;
    padding: 10px 20px
}

input.fy-input.fy-field-large,
textarea.fy-input.fy-field-large,
select.fy-input.fy-field-large {
    font-size: 18px;
    padding: 10px 40px
}

input.fy-input.fy-field-warning,
textarea.fy-input.fy-field-warning,
select.fy-input.fy-field-warning {
    color: #648cb4;
    border-color: #648cb4
}

input.fy-input.fy-field-error,
textarea.fy-input.fy-field-error,
select.fy-input.fy-field-error {
    color: #fa6e78;
    border-color: #fa6e78
}

input.fy-input.fy-field-success,
textarea.fy-input.fy-field-success,
select.fy-input.fy-field-success {
    color: #3c9678;
    border-color: #3c9678
}

textarea {
    display: block
}

textarea.fy-textarea {
    height: auto;
    line-height: 46px;
    overflow: auto;
    resize: vertical
}

select.fy-select {
    width: 100%;
    padding-right: 64px;
    line-height: 46px;
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.4)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon points="13,13 13,6 12,6 12,13 9,13 12.5,18 16,13"/></svg>');
    background-position: right 20px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none
}

select.fy-select option {
    color: #000;
    background-color: #fff
}

select.fy-select optgroup {
    font-weight: 700
}

select.fy-select:focus {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.99)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon points="13,13 13,6 12,6 12,13 9,13 12.5,18 16,13"/></svg>')
}

input.fy-checkbox,
input.fy-radio {
    display: inline-block;
    position: relative;
    top: -1px;
    padding: 0 0 0 40px;
    margin-right: 10px;
    margin-left: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer
}

input.fy-checkbox+input.fy-checkbox,
input.fy-checkbox+input.fy-radio,
input.fy-radio+input.fy-checkbox,
input.fy-radio+input.fy-radio {
    margin-left: 20px
}

.fy-field.fy-field-checkbox,
.fy-field.fy-field-radio {
    background-color: transparent;
    border: 0
}

.fy-field.fy-field-checkbox:before,
.fy-field.fy-field-checkbox:after,
.fy-field.fy-field-radio:before,
.fy-field.fy-field-radio:after {
    display: none
}

input[type='number'] .fy-input-number::-webkit-inner-spin-button,
input[type='number'] .fy-input-number::-webkit-outer-spin-button {
    height: auto
}

input[type='color'] .fy-input-color {
    display: block;
    padding: 0 2px;
    height: 50px
}

input[type='range'] .fy-input-range {
    display: block;
    width: 100%
}

input[type='search'] .fy-input-search {
    box-sizing: border-box;
    -webkit-appearance: textfield;
    -moz-appearance: textfield
}

input[type='search'] .fy-input-search::-webkit-search-cancel-button,
input[type='search'] .fy-input-search::-webkit-search-decoration {
    -webkit-appearance: none;
    -moz-appearance: none
}

.fy-field-picker .fy-input {
    cursor: pointer
}

.fy-field-description {
    display: block;
    margin: 20px 0
}

.fy-field-description-inline {
    display: inline;
    margin: 0 20px
}

.fy-field-icon .fy-icon {
    position: absolute;
    bottom: 10px;
    right: 0;
    margin-top: -12px;
    z-index: 1;
    cursor: pointer;
    color: rgba(50, 50, 62, 0.6)
}

.fy-field-icon .fy-icon .icon {
    float: left;
    fill: currentColor
}

.fy-field-icon .fy-icon .icon .shape {
    fill: currentColor
}

.fy-field-icon .fy-input {
    position: relative;
    z-index: 1
}

.fy-field-icon.field-active .fy-icon {
    color: #32323e
}

.fy-field.field-active:before {
    width: 100%;
    background-color: #644baf
}

.fy-field.field-active .fy-label {
    color: #644baf
}

.fy-field.field-active .fy-input {
    color: #32323e
}

.fy-field.field-error:before,
.fy-field.field-error:after {
    background-color: #fa6e78
}

.fy-field.field-error label,
.fy-field.field-error .fy-label {
    color: #fa6e78
}

.fy-form-header {
    margin-bottom: 20px
}

.fy-form-before-submit {
    padding: 20px 0
}

.fy-form-recaptcha {
    padding: 20px 0
}

.fy-form-submit {
    padding-top: 20px
}

.fy-flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    margin: 0
}

.fy-flex-container.fy-flex-container-reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse
}

.fy-flex-container.fy-flex-container-column {
    flex-direction: column;
    flex-wrap: wrap
}

.fy-flex-container.fy-flex-container-column-reverse {
    flex-direction: column-reverse;
    flex-wrap: wrap-reverse
}

.fy-flex-container.fy-flex-container-top {
    align-items: flex-start
}

.fy-flex-container.fy-flex-container-top-center {
    align-items: flex-start;
    justify-content: center
}

.fy-flex-container.fy-flex-container-top-right {
    align-items: flex-start;
    justify-content: flex-end
}

.fy-flex-container.fy-flex-container-center {
    align-items: center
}

.fy-flex-container.fy-flex-container-center-center {
    align-items: center;
    justify-content: center
}

.fy-flex-container.fy-flex-container-bottom {
    align-items: flex-end
}

.fy-flex-container.fy-flex-container-bottom-center {
    align-items: flex-end;
    justify-content: center
}

.fy-flex-container.fy-flex-container-bottom-right {
    align-items: flex-end;
    justify-content: flex-end
}

.fy-flex-container.fy-flex-container-stretch {
    align-items: stretch
}

.fy-flex-container.fy-flex-container-baseline {
    align-items: baseline
}

.fy-flex-container.fy-flex-container-initial {
    align-items: initial
}

.fy-flex-container {
    margin-left: -40px
}

.fy-flex-container .fy-flex-container:first-child:nth-last-child(1) {
    padding-bottom: 0
}

.fy-flex-container .fy-flex-container:last-child {
    padding-bottom: 0
}

.fy-flex-container>[class^="fy-flex-column"],
.fy-flex-container>[class*=" fy-flex-column"] {
    padding-left: 40px
}

.fy-flex-container>[class^="fy-flex-column"]>.fy-flex-row,
.fy-flex-container>[class*=" fy-flex-column"]>.fy-flex-row {
    margin-bottom: 40px
}

.fy-flex-container.fy-flex-gutter-0 {
    margin-left: 0
}

.fy-flex-container.fy-flex-gutter-0>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-0>[class*=" fy-flex-column"] {
    padding-left: 0
}

.fy-flex-container.fy-flex-gutter-0>[class^="fy-flex-column"]>.fy-flex-row,
.fy-flex-container.fy-flex-gutter-0>[class*=" fy-flex-column"]>.fy-flex-row {
    margin-bottom: 0
}

.fy-flex-container.fy-flex-gutter-1 {
    margin-left: -1px
}

.fy-flex-container.fy-flex-gutter-1>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-1>[class*=" fy-flex-column"] {
    padding-left: 1px
}

.fy-flex-container.fy-flex-gutter-1>[class^="fy-flex-column"]>.fy-flex-row,
.fy-flex-container.fy-flex-gutter-1>[class*=" fy-flex-column"]>.fy-flex-row {
    margin-bottom: 1px
}

.fy-flex-container.fy-flex-gutter-xxsmall {
    margin-left: -5px
}

.fy-flex-container.fy-flex-gutter-xxsmall>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-xxsmall>[class*=" fy-flex-column"] {
    padding-left: 5px
}

.fy-flex-container.fy-flex-gutter-xxsmall>[class^="fy-flex-column"]>.fy-flex-row,
.fy-flex-container.fy-flex-gutter-xxsmall>[class*=" fy-flex-column"]>.fy-flex-row {
    margin-bottom: 5px
}

.fy-flex-container.fy-flex-gutter-xsmall {
    margin-left: -10px
}

.fy-flex-container.fy-flex-gutter-xsmall>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-xsmall>[class*=" fy-flex-column"] {
    padding-left: 10px
}

.fy-flex-container.fy-flex-gutter-xsmall>[class^="fy-flex-column"]>.fy-flex-row,
.fy-flex-container.fy-flex-gutter-xsmall>[class*=" fy-flex-column"]>.fy-flex-row {
    margin-bottom: 10px
}

.fy-flex-container.fy-flex-gutter-small {
    margin-left: -20px
}

.fy-flex-container.fy-flex-gutter-small>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-small>[class*=" fy-flex-column"] {
    padding-left: 20px
}

.fy-flex-container.fy-flex-gutter-small>[class^="fy-flex-column"]>.fy-flex-row,
.fy-flex-container.fy-flex-gutter-small>[class*=" fy-flex-column"]>.fy-flex-row {
    margin-bottom: 20px
}

.fy-flex-container.fy-flex-gutter-medium {
    margin-left: -40px
}

.fy-flex-container.fy-flex-gutter-medium>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-medium>[class*=" fy-flex-column"] {
    padding-left: 40px
}

.fy-flex-container.fy-flex-gutter-medium>[class^="fy-flex-column"]>.fy-flex-row,
.fy-flex-container.fy-flex-gutter-medium>[class*=" fy-flex-column"]>.fy-flex-row {
    margin-bottom: 40px
}

.fy-flex-container.fy-flex-gutter-large {
    margin-left: -80px
}

.fy-flex-container.fy-flex-gutter-large>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-large>[class*=" fy-flex-column"] {
    padding-left: 80px
}

.fy-flex-container.fy-flex-gutter-large>[class^="fy-flex-column"]>.fy-flex-row,
.fy-flex-container.fy-flex-gutter-large>[class*=" fy-flex-column"]>.fy-flex-row {
    margin-bottom: 80px
}

.fy-flex-container.fy-flex-gutter-xlarge {
    margin-left: -120px
}

.fy-flex-container.fy-flex-gutter-xlarge>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-xlarge>[class*=" fy-flex-column"] {
    padding-left: 120px
}

.fy-flex-container.fy-flex-gutter-xlarge>[class^="fy-flex-column"]>.fy-flex-row,
.fy-flex-container.fy-flex-gutter-xlarge>[class*=" fy-flex-column"]>.fy-flex-row {
    margin-bottom: 120px
}

.fy-flex-container.fy-flex-gutter-xxlarge {
    margin-left: -160px
}

.fy-flex-container.fy-flex-gutter-xxlarge>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-xxlarge>[class*=" fy-flex-column"] {
    padding-left: 160px
}

.fy-flex-container.fy-flex-gutter-xxlarge>[class^="fy-flex-column"]>.fy-flex-row,
.fy-flex-container.fy-flex-gutter-xxlarge>[class*=" fy-flex-column"]>.fy-flex-row {
    margin-bottom: 160px
}

.fy-flex-container [class^="fy-flex-column"],
.fy-flex-container [class*=" fy-flex-column"] {
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-box-flex: 0;
    -moz-box-flex: 0
}

.fy-flex-container .fy-flex-column-auto {
    flex-grow: 1;
    flex-basis: 0;
    width: auto;
    max-width: 100%
}

.fy-flex-container .fy-flex-column-100 {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%
}

.fy-flex-container .fy-flex-column-95 {
    flex-basis: 95%;
    width: 95%;
    max-width: 95%
}

.fy-flex-container .fy-flex-column-90 {
    flex-basis: 90%;
    width: 90%;
    max-width: 90%
}

.fy-flex-container .fy-flex-column-85 {
    flex-basis: 85%;
    width: 85%;
    max-width: 85%
}

.fy-flex-container .fy-flex-column-80 {
    flex-basis: 80%;
    width: 80%;
    max-width: 80%
}

.fy-flex-container .fy-flex-column-75 {
    flex-basis: 75%;
    width: 75%;
    max-width: 75%
}

.fy-flex-container .fy-flex-column-70 {
    flex-basis: 70%;
    width: 70%;
    max-width: 70%
}

.fy-flex-container .fy-flex-column-66 {
    flex-basis: 66.666%;
    width: 66.666%;
    max-width: 66.666%
}

.fy-flex-container .fy-flex-column-65 {
    flex-basis: 65%;
    width: 65%;
    max-width: 65%
}

.fy-flex-container .fy-flex-column-60 {
    flex-basis: 60%;
    width: 60%;
    max-width: 60%
}

.fy-flex-container .fy-flex-column-55 {
    flex-basis: 55%;
    width: 55%;
    max-width: 55%
}

.fy-flex-container .fy-flex-column-50 {
    flex-basis: 50%;
    width: 50%;
    max-width: 50%
}

.fy-flex-container .fy-flex-column-45 {
    flex-basis: 45%;
    width: 45%;
    max-width: 45%
}

.fy-flex-container .fy-flex-column-40 {
    flex-basis: 40%;
    width: 40%;
    max-width: 40%
}

.fy-flex-container .fy-flex-column-35 {
    flex-basis: 35%;
    width: 35%;
    max-width: 35%
}

.fy-flex-container .fy-flex-column-33 {
    flex-basis: 33.333%;
    width: 33.333%;
    max-width: 33.333%
}

.fy-flex-container .fy-flex-column-30 {
    flex-basis: 30%;
    width: 30%;
    max-width: 30%
}

.fy-flex-container .fy-flex-column-25 {
    flex-basis: 25%;
    width: 25%;
    max-width: 25%
}

.fy-flex-container .fy-flex-column-20 {
    flex-basis: 20%;
    width: 20%;
    max-width: 20%
}

.fy-flex-container .fy-flex-column-15 {
    flex-basis: 15%;
    width: 15%;
    max-width: 15%
}

.fy-flex-container .fy-flex-column-10 {
    flex-basis: 10%;
    width: 10%;
    max-width: 10%
}

.fy-flex-container .fy-flex-column-5 {
    flex-basis: 5%;
    width: 5%;
    max-width: 5%
}

@media only screen and (max-width:1479px) {
    .fy-flex-container [class^="fy-flex-column-desktop-wide"],
    .fy-flex-container [class*=" fy-flex-column-desktop-wide"] {
        flex-grow: 0;
        flex-shrink: 0
    }
    .fy-flex-container .fy-flex-column-desktop-wide-auto {
        flex-grow: 1;
        flex-basis: 0;
        width: auto;
        max-width: 100%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-100 {
        flex-basis: 100%;
        width: 100%;
        max-width: 100%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-95 {
        flex-basis: 95%;
        width: 95%;
        max-width: 95%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-90 {
        flex-basis: 90%;
        width: 90%;
        max-width: 90%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-85 {
        flex-basis: 85%;
        width: 85%;
        max-width: 85%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-80 {
        flex-basis: 80%;
        width: 80%;
        max-width: 80%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-75 {
        flex-basis: 75%;
        width: 75%;
        max-width: 75%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-70 {
        flex-basis: 70%;
        width: 70%;
        max-width: 70%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-66 {
        flex-basis: 66.666%;
        width: 66.666%;
        max-width: 66.666%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-65 {
        flex-basis: 65%;
        width: 65%;
        max-width: 65%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-60 {
        flex-basis: 60%;
        width: 60%;
        max-width: 60%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-55 {
        flex-basis: 55%;
        width: 55%;
        max-width: 55%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-50 {
        flex-basis: 50%;
        width: 50%;
        max-width: 50%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-45 {
        flex-basis: 45%;
        width: 45%;
        max-width: 45%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-40 {
        flex-basis: 40%;
        width: 40%;
        max-width: 40%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-35 {
        flex-basis: 35%;
        width: 35%;
        max-width: 35%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-33 {
        flex-basis: 33.333%;
        width: 33.333%;
        max-width: 33.333%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-30 {
        flex-basis: 30%;
        width: 30%;
        max-width: 30%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-25 {
        flex-basis: 25%;
        width: 25%;
        max-width: 25%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-20 {
        flex-basis: 20%;
        width: 20%;
        max-width: 20%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-15 {
        flex-basis: 15%;
        width: 15%;
        max-width: 15%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-10 {
        flex-basis: 10%;
        width: 10%;
        max-width: 10%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-5 {
        flex-basis: 5%;
        width: 5%;
        max-width: 5%
    }
    .fy-flex-container .fy-flex-column-desktop-wide-0 {
        flex-basis: 0;
        width: 0;
        max-width: 0
    }
    .fy-flex-container .fy-flex-column-desktop-wide {
        flex-basis: auto;
        width: auto;
        max-width: 100%
    }
}

@media only screen and (max-width:1279px) {
    .fy-flex-container [class^="fy-flex-column-desktop"],
    .fy-flex-container [class*=" fy-flex-column-desktop"] {
        flex-grow: 0;
        flex-shrink: 0
    }
    .fy-flex-container .fy-flex-column-desktop-auto {
        flex-grow: 1;
        flex-basis: 0;
        width: auto;
        max-width: 100%
    }
    .fy-flex-container .fy-flex-column-desktop-100 {
        flex-basis: 100%;
        width: 100%;
        max-width: 100%
    }
    .fy-flex-container .fy-flex-column-desktop-95 {
        flex-basis: 95%;
        width: 95%;
        max-width: 95%
    }
    .fy-flex-container .fy-flex-column-desktop-90 {
        flex-basis: 90%;
        width: 90%;
        max-width: 90%
    }
    .fy-flex-container .fy-flex-column-desktop-85 {
        flex-basis: 85%;
        width: 85%;
        max-width: 85%
    }
    .fy-flex-container .fy-flex-column-desktop-80 {
        flex-basis: 80%;
        width: 80%;
        max-width: 80%
    }
    .fy-flex-container .fy-flex-column-desktop-75 {
        flex-basis: 75%;
        width: 75%;
        max-width: 75%
    }
    .fy-flex-container .fy-flex-column-desktop-70 {
        flex-basis: 70%;
        width: 70%;
        max-width: 75%
    }
    .fy-flex-container .fy-flex-column-desktop-66 {
        flex-basis: 66.666%;
        width: 66.666%;
        max-width: 66.666%
    }
    .fy-flex-container .fy-flex-column-desktop-65 {
        flex-basis: 65%;
        width: 65%;
        max-width: 65%
    }
    .fy-flex-container .fy-flex-column-desktop-60 {
        flex-basis: 60%;
        width: 60%;
        max-width: 60%
    }
    .fy-flex-container .fy-flex-column-desktop-55 {
        flex-basis: 55%;
        width: 55%;
        max-width: 55%
    }
    .fy-flex-container .fy-flex-column-desktop-50 {
        flex-basis: 50%;
        width: 50%;
        max-width: 50%
    }
    .fy-flex-container .fy-flex-column-desktop-45 {
        flex-basis: 45%;
        width: 45%;
        max-width: 45%
    }
    .fy-flex-container .fy-flex-column-desktop-40 {
        flex-basis: 40%;
        width: 40%;
        max-width: 40%
    }
    .fy-flex-container .fy-flex-column-desktop-35 {
        flex-basis: 35%;
        width: 35%;
        max-width: 35%
    }
    .fy-flex-container .fy-flex-column-desktop-33 {
        flex-basis: 33.333%;
        width: 33.333%;
        max-width: 33.333%
    }
    .fy-flex-container .fy-flex-column-desktop-30 {
        flex-basis: 30%;
        width: 30%;
        max-width: 30%
    }
    .fy-flex-container .fy-flex-column-desktop-25 {
        flex-basis: 25%;
        width: 25%;
        max-width: 25%
    }
    .fy-flex-container .fy-flex-column-desktop-20 {
        flex-basis: 20%;
        width: 20%;
        max-width: 20%
    }
    .fy-flex-container .fy-flex-column-desktop-15 {
        flex-basis: 15%;
        width: 15%;
        max-width: 15%
    }
    .fy-flex-container .fy-flex-column-desktop-10 {
        flex-basis: 10%;
        width: 10%;
        max-width: 10%
    }
    .fy-flex-container .fy-flex-column-desktop-5 {
        flex-basis: 5%;
        width: 5%;
        max-width: 5%
    }
    .fy-flex-container .fy-flex-column-desktop-0 {
        flex-basis: 0;
        width: 0;
        max-width: 0
    }
    .fy-flex-container .fy-flex-column-desktop {
        flex-basis: auto;
        width: auto
    }
}

@media only screen and (max-width:1023px) {
    .fy-flex-container [class^="fy-flex-column-tablet"],
    .fy-flex-container [class*=" fy-flex-column-tablet"] {
        flex-grow: 0;
        flex-shrink: 0
    }
    .fy-flex-container .fy-flex-column-tablet-auto {
        flex-grow: 1;
        flex-basis: 0;
        width: auto;
        max-width: 100%
    }
    .fy-flex-container .fy-flex-column-tablet-100 {
        flex-basis: 100%;
        width: 100%;
        max-width: 100%
    }
    .fy-flex-container .fy-flex-column-tablet-95 {
        flex-basis: 95%;
        width: 95%;
        max-width: 95%
    }
    .fy-flex-container .fy-flex-column-tablet-90 {
        flex-basis: 90%;
        width: 90%;
        max-width: 90%
    }
    .fy-flex-container .fy-flex-column-tablet-85 {
        flex-basis: 85%;
        width: 85%;
        max-width: 85%
    }
    .fy-flex-container .fy-flex-column-tablet-80 {
        flex-basis: 80%;
        width: 80%;
        max-width: 80%
    }
    .fy-flex-container .fy-flex-column-tablet-75 {
        flex-basis: 75%;
        width: 75%;
        max-width: 75%
    }
    .fy-flex-container .fy-flex-column-tablet-70 {
        flex-basis: 70%;
        width: 70%;
        max-width: 70%
    }
    .fy-flex-container .fy-flex-column-tablet-66 {
        flex-basis: 66.666%;
        width: 66.666%;
        max-width: 66.666%
    }
    .fy-flex-container .fy-flex-column-tablet-65 {
        flex-basis: 65%;
        width: 65%;
        max-width: 65%
    }
    .fy-flex-container .fy-flex-column-tablet-60 {
        flex-basis: 60%;
        width: 60%;
        max-width: 60%
    }
    .fy-flex-container .fy-flex-column-tablet-55 {
        flex-basis: 55%;
        width: 55%;
        max-width: 55%
    }
    .fy-flex-container .fy-flex-column-tablet-50 {
        flex-basis: 50%;
        width: 50%;
        max-width: 50%
    }
    .fy-flex-container .fy-flex-column-tablet-45 {
        flex-basis: 4%;
        width: 4%;
        max-width: 4%
    }
    .fy-flex-container .fy-flex-column-tablet-40 {
        flex-basis: 40%;
        width: 40%;
        max-width: 40%
    }
    .fy-flex-container .fy-flex-column-tablet-35 {
        flex-basis: 35%;
        width: 35%;
        max-width: 35%
    }
    .fy-flex-container .fy-flex-column-tablet-33 {
        flex-basis: 33.333%;
        width: 33.333%;
        max-width: 33.333%
    }
    .fy-flex-container .fy-flex-column-tablet-30 {
        flex-basis: 30%;
        width: 30%;
        max-width: 30%
    }
    .fy-flex-container .fy-flex-column-tablet-25 {
        flex-basis: 25%;
        width: 25%;
        max-width: 25%
    }
    .fy-flex-container .fy-flex-column-tablet-20 {
        flex-basis: 20%;
        width: 20%;
        max-width: 20%
    }
    .fy-flex-container .fy-flex-column-tablet-15 {
        flex-basis: 15%;
        width: 15%;
        max-width: 15%
    }
    .fy-flex-container .fy-flex-column-tablet-10 {
        flex-basis: 10%;
        width: 10%;
        max-width: 10%
    }
    .fy-flex-container .fy-flex-column-tablet-5 {
        flex-basis: 5%;
        width: 5%;
        max-width: 5%
    }
    .fy-flex-container .fy-flex-column-tablet-0 {
        flex-basis: 0;
        width: 0;
        max-width: 0
    }
    .fy-flex-container .fy-flex-column-tablet {
        flex-basis: auto;
        width: auto;
        max-width: 100%
    }
}

@media only screen and (max-width:767px) {
    .fy-flex-container [class^="fy-flex-column-phone"],
    .fy-flex-container [class*=" fy-flex-column-phone"] {
        flex-grow: 0;
        flex-shrink: 0
    }
    .fy-flex-container .fy-flex-column-phone-auto {
        flex-grow: 1;
        flex-basis: 0;
        width: auto;
        max-width: 100%
    }
    .fy-flex-container .fy-flex-column-phone-100 {
        flex-basis: 100%;
        width: 100%;
        max-width: 100%
    }
    .fy-flex-container .fy-flex-column-phone-95 {
        flex-basis: 95%;
        width: 95%;
        max-width: 95%
    }
    .fy-flex-container .fy-flex-column-phone-90 {
        flex-basis: 90%;
        width: 90%;
        max-width: 90%
    }
    .fy-flex-container .fy-flex-column-phone-85 {
        flex-basis: 85%;
        width: 85%;
        max-width: 85%
    }
    .fy-flex-container .fy-flex-column-phone-80 {
        flex-basis: 80%;
        width: 80%;
        max-width: 80%
    }
    .fy-flex-container .fy-flex-column-phone-75 {
        flex-basis: 75%;
        width: 75%;
        max-width: 75%
    }
    .fy-flex-container .fy-flex-column-phone-70 {
        flex-basis: 70%;
        width: 70%;
        max-width: 70%
    }
    .fy-flex-container .fy-flex-column-phone-66 {
        flex-basis: 66.666%;
        width: 66.666%;
        max-width: 66.666%
    }
    .fy-flex-container .fy-flex-column-phone-65 {
        flex-basis: 65%;
        width: 65%;
        max-width: 65%
    }
    .fy-flex-container .fy-flex-column-phone-60 {
        flex-basis: 60%;
        width: 60%;
        max-width: 60%
    }
    .fy-flex-container .fy-flex-column-phone-55 {
        flex-basis: 55%;
        width: 55%;
        max-width: 55%
    }
    .fy-flex-container .fy-flex-column-phone-50 {
        flex-basis: 50%;
        width: 50%;
        max-width: 50%
    }
    .fy-flex-container .fy-flex-column-phone-45 {
        flex-basis: 45%;
        width: 45%;
        max-width: 45%
    }
    .fy-flex-container .fy-flex-column-phone-40 {
        flex-basis: 40%;
        width: 40%;
        max-width: 40%
    }
    .fy-flex-container .fy-flex-column-phone-35 {
        flex-basis: 35%;
        width: 35%;
        max-width: 35%
    }
    .fy-flex-container .fy-flex-column-phone-33 {
        flex-basis: 33.333%;
        width: 33.333%;
        max-width: 33.333%
    }
    .fy-flex-container .fy-flex-column-phone-30 {
        flex-basis: 30%;
        width: 30%;
        max-width: 30%
    }
    .fy-flex-container .fy-flex-column-phone-25 {
        flex-basis: 25%;
        width: 25%;
        max-width: 25%
    }
    .fy-flex-container .fy-flex-column-phone-20 {
        flex-basis: 20%;
        width: 20%;
        max-width: 20%
    }
    .fy-flex-container .fy-flex-column-phone-15 {
        flex-basis: 15%;
        width: 15%;
        max-width: 15%
    }
    .fy-flex-container .fy-flex-column-phone-10 {
        flex-basis: 10%;
        width: 10%;
        max-width: 10%
    }
    .fy-flex-container .fy-flex-column-phone-5 {
        flex-basis: 5%;
        width: 5%;
        max-width: 5%
    }
    .fy-flex-container .fy-flex-column-phone-0 {
        flex-basis: 0;
        width: 0;
        max-width: 0
    }
    .fy-flex-container .fy-flex-column-phone {
        flex-basis: auto;
        width: auto;
        max-width: 100%
    }
}

@media only screen and (max-width:481px) {
    .fy-flex-container .fy-flex-column-phone-min-auto {
        flex-grow: 1;
        flex-basis: 0;
        width: auto;
        max-width: 100%
    }
    .fy-flex-container .fy-flex-column-phone-min-100 {
        flex-basis: 100%;
        width: 100%;
        max-width: 100%
    }
    .fy-flex-container .fy-flex-column-phone-min-95 {
        flex-basis: 95%;
        width: 95%;
        max-width: 95%
    }
    .fy-flex-container .fy-flex-column-phone-min-90 {
        flex-basis: 90%;
        width: 90%;
        max-width: 90%
    }
    .fy-flex-container .fy-flex-column-phone-min-85 {
        flex-basis: 85%;
        width: 85%;
        max-width: 85%
    }
    .fy-flex-container .fy-flex-column-phone-min-80 {
        flex-basis: 80%;
        width: 80%;
        max-width: 80%
    }
    .fy-flex-container .fy-flex-column-phone-min-75 {
        flex-basis: 75%;
        width: 75%;
        max-width: 75%
    }
    .fy-flex-container .fy-flex-column-phone-min-70 {
        flex-basis: 70%;
        width: 70%;
        max-width: 70%
    }
    .fy-flex-container .fy-flex-column-phone-min-66 {
        flex-basis: 66.666%;
        width: 66.666%;
        max-width: 66.666%
    }
    .fy-flex-container .fy-flex-column-phone-min-65 {
        flex-basis: 65%;
        width: 65%;
        max-width: 65%
    }
    .fy-flex-container .fy-flex-column-phone-min-60 {
        flex-basis: 60%;
        width: 60%;
        max-width: 60%
    }
    .fy-flex-container .fy-flex-column-phone-min-55 {
        flex-basis: 55%;
        width: 55%;
        max-width: 55%
    }
    .fy-flex-container .fy-flex-column-phone-min-50 {
        flex-basis: 50%;
        width: 50%;
        max-width: 50%
    }
    .fy-flex-container .fy-flex-column-phone-min-45 {
        flex-basis: 45%;
        width: 45%;
        max-width: 45%
    }
    .fy-flex-container .fy-flex-column-phone-min-40 {
        flex-basis: 40%;
        width: 40%;
        max-width: 40%
    }
    .fy-flex-container .fy-flex-column-phone-min-35 {
        flex-basis: 35%;
        width: 35%;
        max-width: 35%
    }
    .fy-flex-container .fy-flex-column-phone-min-33 {
        flex-basis: 33.333%;
        width: 33.333%;
        max-width: 33.333%
    }
    .fy-flex-container .fy-flex-column-phone-min-30 {
        flex-basis: 30%;
        width: 30%;
        max-width: 30%
    }
    .fy-flex-container .fy-flex-column-phone-min-25 {
        flex-basis: 25%;
        width: 25%;
        max-width: 25%
    }
    .fy-flex-container .fy-flex-column-phone-min-20 {
        flex-basis: 20%;
        width: 20%;
        max-width: 20%
    }
    .fy-flex-container .fy-flex-column-phone-min-15 {
        flex-basis: 15%;
        width: 15%;
        max-width: 15%
    }
    .fy-flex-container .fy-flex-column-phone-min-10 {
        flex-basis: 10%;
        width: 10%;
        max-width: 10%
    }
    .fy-flex-container .fy-flex-column-phone-min-5 {
        flex-basis: 5%;
        width: 5%;
        max-width: 5%
    }
    .fy-flex-container .fy-flex-column-phone-min-0 {
        flex-basis: 0;
        width: 0;
        max-width: 0
    }
    .fy-flex-container .fy-flex-column-phone-min {
        flex-basis: auto;
        width: auto;
        max-width: 100%
    }
}

.fy-flex-container [class^="fy-flex-column"].fy-flex-grow-0,
.fy-flex-container [class*=" fy-flex-column"].fy-flex-grow-0 {
    flex-grow: 0
}

.fy-flex-container [class^="fy-flex-column"].fy-flex-grow-1,
.fy-flex-container [class*=" fy-flex-column"].fy-flex-grow-1 {
    flex-grow: 1
}

.fy-flex-container [class^="fy-flex-column"].fy-flex-grow-2,
.fy-flex-container [class*=" fy-flex-column"].fy-flex-grow-2 {
    flex-grow: 2
}

.fy-flex-container [class^="fy-flex-column"].fy-flex-grow-3,
.fy-flex-container [class*=" fy-flex-column"].fy-flex-grow-3 {
    flex-grow: 3
}

.fy-flex-container [class^="fy-flex-column"].fy-flex-grow-4,
.fy-flex-container [class*=" fy-flex-column"].fy-flex-grow-4 {
    flex-grow: 4
}

.fy-flex-container [class^="fy-flex-column"].fy-flex-grow-5,
.fy-flex-container [class*=" fy-flex-column"].fy-flex-grow-5 {
    flex-grow: 5
}

.fy-flex-container [class^="fy-flex-column"].fy-flex-grow-6,
.fy-flex-container [class*=" fy-flex-column"].fy-flex-grow-6 {
    flex-grow: 6
}

.fy-flex-container [class^="fy-flex-column"].fy-flex-grow-7,
.fy-flex-container [class*=" fy-flex-column"].fy-flex-grow-7 {
    flex-grow: 7
}

.fy-flex-container [class^="fy-flex-column"].fy-flex-grow-8,
.fy-flex-container [class*=" fy-flex-column"].fy-flex-grow-8 {
    flex-grow: 8
}

.fy-flex-container [class^="fy-flex-column"].fy-flex-grow-9,
.fy-flex-container [class*=" fy-flex-column"].fy-flex-grow-9 {
    flex-grow: 9
}

.fy-flex-container [class^="fy-flex-column"] .fy-flex-order-1,
.fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-1 {
    order: 1
}

.fy-flex-container [class^="fy-flex-column"] .fy-flex-order-2,
.fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-2 {
    order: 2
}

.fy-flex-container [class^="fy-flex-column"] .fy-flex-order-3,
.fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-3 {
    order: 3
}

.fy-flex-container [class^="fy-flex-column"] .fy-flex-order-4,
.fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-4 {
    order: 4
}

.fy-flex-container [class^="fy-flex-column"] .fy-flex-order-5,
.fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-5 {
    order: 5
}

.fy-flex-container [class^="fy-flex-column"] .fy-flex-order-6,
.fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-6 {
    order: 6
}

.fy-flex-container [class^="fy-flex-column"] .fy-flex-order-7,
.fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-7 {
    order: 7
}

.fy-flex-container [class^="fy-flex-column"] .fy-flex-order-8,
.fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-8 {
    order: 8
}

.fy-flex-container [class^="fy-flex-column"] .fy-flex-order-9,
.fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-9 {
    order: 9
}

@media only screen and (max-width:1279px) {
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-desktop-1,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-desktop-1 {
        order: 1
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-desktop-2,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-desktop-2 {
        order: 2
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-desktop-3,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-desktop-3 {
        order: 3
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-desktop-4,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-desktop-4 {
        order: 4
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-desktop-5,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-desktop-5 {
        order: 5
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-desktop-6,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-desktop-6 {
        order: 6
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-desktop-7,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-desktop-7 {
        order: 7
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-desktop-8,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-desktop-8 {
        order: 8
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-desktop-9,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-desktop-9 {
        order: 9
    }
}

@media only screen and (max-width:1023px) {
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-tablet-1,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-tablet-1 {
        order: 1
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-tablet-2,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-tablet-2 {
        order: 2
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-tablet-3,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-tablet-3 {
        order: 3
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-tablet-4,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-tablet-4 {
        order: 4
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-tablet-5,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-tablet-5 {
        order: 5
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-tablet-6,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-tablet-6 {
        order: 6
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-tablet-7,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-tablet-7 {
        order: 7
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-tablet-8,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-tablet-8 {
        order: 8
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-tablet-9,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-tablet-9 {
        order: 9
    }
}

@media only screen and (max-width:767px) {
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-phone-1,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-phone-1 {
        order: 1
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-phone-2,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-phone-2 {
        order: 2
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-phone-3,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-phone-3 {
        order: 3
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-phone-4,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-phone-4 {
        order: 4
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-phone-5,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-phone-5 {
        order: 5
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-phone-6,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-phone-6 {
        order: 6
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-phone-7,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-phone-7 {
        order: 7
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-phone-8,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-phone-8 {
        order: 8
    }
    .fy-flex-container [class^="fy-flex-column"] .fy-flex-order-phone-9,
    .fy-flex-container [class*=" fy-flex-column"] .fy-flex-order-phone-9 {
        order: 9
    }
}

label,
label.fy-label {
    margin-bottom: 0;
    line-height: 40px
}

label a,
label.fy-label a {
    border-bottom: 1px solid #644baf
}

label a:hover,
label.fy-label a:hover {
    color: #644baf;
    border-bottom-color: #644baf
}

label .fy-required,
label.fy-label .fy-required {
    line-height: normal
}

label.fy-label-error {
    display: block;
    position: relative;
    padding: 5px 20px;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    line-height: normal
}

label.fy-label-error:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 2px;
    margin-top: -1px;
    background-color: #fa6e78
}

.fy-field {
    position: relative;
    margin-bottom: 20px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: left
}

.fy-field:before {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    background-color: #644baf;
    transition: all .3s ease-out 0s
}

.fy-field:after {
    display: none
}

.fy-field .fy-input {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
    line-height: 46px;
    border-width: 1px;
    border-color: rgba(50, 50, 62, 0.2);
    border-style: solid;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all .3s ease-out 0s;
    box-shadow: none
}

.fy-field .fy-input::-webkit-input-placeholder {
    color: rgba(50, 50, 62, 0.6) !important;
    transition: color .3s ease-out 0s
}

.fy-field .fy-input:-ms-input-placeholder {
    color: rgba(50, 50, 62, 0.6) !important;
    transition: color .3s ease-out 0s
}

.fy-field .fy-input:focus::-webkit-input-placeholder {
    color: rgba(50, 50, 62, 0.2) !important
}

.fy-field .fy-input:focus:-ms-input-placeholder {
    color: rgba(50, 50, 62, 0.2) !important
}

.fy-field .fy-input:focus {
    border-color: #644baf
}

.fy-field .fy-textarea {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: normal
}

.fy-field input[type='time'] {
    color: rgba(50, 50, 62, 0.4);
    height: 48px
}

.fy-field input[type='time']::-webkit-inner-spin-button,
.fy-field input[type='time']::-webkit-outer-spin-button,
.fy-field input[type='time']::-webkit-clear-button,
.fy-field input[type='date']::-webkit-inner-spin-button,
.fy-field input[type='date']::-webkit-outer-spin-button,
.fy-field input[type='date']::-webkit-clear-button {
    -webkit-appearance: none;
    margin: 0
}

.fy-field input[type='number'] {
    padding-right: 0
}

.fy-field .fy-icon {
    bottom: 20px;
    right: 20px;
    color: rgba(50, 50, 62, 0.2)
}

.fy-field.field-active:before {
    width: 100%;
    left: 0;
    right: auto;
    background-color: #644baf
}

.fy-field.field-active .fy-label {
    color: #32323e
}

.fy-field.field-active .fy-input {
    border-color: #644baf;
    background-color: transparent
}

.fy-field.field-active input[type='time'] {
    color: rgba(50, 50, 62, 0.6)
}

.fy-field.field-active .fy-icon {
    color: #644baf
}

.fy-field label.fy-label-error {
    min-width: 100%;
    left: 0;
    white-space: nowrap
}

select {
    width: 100%;
    padding-right: 48px;
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.4)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon class="shape" points="16.7,11.8 13,15.5 13,6 12,6 12,15.5 8.3,11.8 7.6,12.5 12.5,17.4 17.4,12.5"></polygon></svg>');
    background-position: right 10px center;
    background-repeat: no-repeat;
    border-width: 0;
    -webkit-appearance: none;
    -moz-appearance: none
}

.gecko select {
    padding-top: 10px !important;
    padding-bottom: 10px !important
}

select:focus {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.99)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon class="shape" points="16.7,11.8 13,15.5 13,6 12,6 12,15.5 8.3,11.8 7.6,12.5 12.5,17.4 17.4,12.5"></polygon></svg>')
}

select option {
    color: #32323e;
    background-color: #fff
}

textarea {
    display: block;
    max-height: 50vh;
    min-height: 120px;
    overflow-x: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: normal;
    resize: vertical;
    overflow: auto
}

textarea::-webkit-scrollbar {
    width: 4px
}

textarea::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0)
}

textarea::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2)
}

textarea::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.4)
}

.form-submit,
.fy-form-submit {
    display: block;
    margin-top: 40px
}

.fy-field.fy-field-search {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0
}

.fy-field.fy-field-search .fy-input {
    padding-right: 48px
}

.fy-field.fy-field-search .fy-button {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 20px;
    margin: 0;
    color: rgba(50, 50, 62, 0.4);
    background-color: transparent;
    border: 0;
    box-shadow: none
}

.fy-field.fy-field-search .fy-button .icon {
    width: 24px;
    height: 24px
}

.fy-field.fy-field-search .fy-button:hover,
.fy-field.fy-field-search .fy-button:focus {
    color: #32323e;
    background-color: transparent !important;
    box-shadow: none !important
}

.fy-form-header h2,
.fy-form-header h3 {
    color: #32323e
}

.fy-form-reservation,
.fy-form-contact {
    padding-top: 40px;
    padding-bottom: 40px
}

.fy-form-reservation br,
.fy-form-contact br {
    display: none;
    float: left
}

.fy-form-reservation p,
.fy-form-contact p {
    margin: 0
}

.fy-form-reservation .fy-form-before-submit,
.fy-form-contact .fy-form-before-submit {
    margin: 20px 0 40px;
    font-size: 15px
}

.fy-form-reservation .fy-form-submit:after,
.fy-form-contact .fy-form-submit:after {
    content: '';
    display: table;
    clear: both
}

.fy-form-reservation .fy-form-submit:after,
.fy-form-contact .fy-form-submit:after {
    content: '';
    display: table;
    clear: both
}

.fy-form-reservation .fy-form-recaptcha,
.fy-form-contact .fy-form-recaptcha {
    padding-top: 20px;
    padding-bottom: 0
}

.fy-form-reservation .fy-form-recaptcha .g-recaptcha,
.fy-form-contact .fy-form-recaptcha .g-recaptcha {
    margin-bottom: 0
}

.wpcf7 form p,
.woocommerce form p,
.rtb-booking-form form p,
.mc4wp-form form p,
.post-password-form form p,
.fy-widget form p {
    margin-bottom: 20px
}

.wpcf7 fieldset,
.woocommerce fieldset,
.rtb-booking-form fieldset,
.mc4wp-form fieldset,
.post-password-form fieldset,
.fy-widget fieldset {
    margin-bottom: 20px
}

.wpcf7 legend,
.woocommerce legend,
.rtb-booking-form legend,
.mc4wp-form legend,
.post-password-form legend,
.fy-widget legend {
    display: block;
    padding: 40px 0 20px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: #32323e
}

.wpcf7 label,
.woocommerce label,
.rtb-booking-form label,
.mc4wp-form label,
.post-password-form label,
.fy-widget label {
    display: block;
    padding: 0;
    margin-bottom: 0;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #32323e;
    cursor: pointer;
    transition-property: color, background-color;
    transition-duration: .3s;
    transition-timing-function: ease-out;
    user-select: none
}

.wpcf7 label.fy-label-error,
.woocommerce label.fy-label-error,
.rtb-booking-form label.fy-label-error,
.mc4wp-form label.fy-label-error,
.post-password-form label.fy-label-error,
.fy-widget label.fy-label-error {
    padding: 5px 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    line-height: normal;
    color: #fa6e78
}

.wpcf7 input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']),
.wpcf7 textarea,
.wpcf7 select,
.woocommerce input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']),
.woocommerce textarea,
.woocommerce select,
.rtb-booking-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']),
.rtb-booking-form textarea,
.rtb-booking-form select,
.mc4wp-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']),
.mc4wp-form textarea,
.mc4wp-form select,
.post-password-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']),
.post-password-form textarea,
.post-password-form select,
.fy-widget input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']),
.fy-widget textarea,
.fy-widget select {
    display: block;
    padding: 0 20px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 46px !important;
    outline: 0;
    color: rgba(50, 50, 62, 0.6);
    background-color: transparent;
    border-width: 1px;
    border-color: rgba(50, 50, 62, 0.2);
    border-style: solid;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all .3s ease-out 0s;
    box-shadow: none
}

.wpcf7 input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset'])::-webkit-input-placeholder,
.wpcf7 textarea::-webkit-input-placeholder,
.wpcf7 select::-webkit-input-placeholder,
.woocommerce input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset'])::-webkit-input-placeholder,
.woocommerce textarea::-webkit-input-placeholder,
.woocommerce select::-webkit-input-placeholder,
.rtb-booking-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset'])::-webkit-input-placeholder,
.rtb-booking-form textarea::-webkit-input-placeholder,
.rtb-booking-form select::-webkit-input-placeholder,
.mc4wp-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset'])::-webkit-input-placeholder,
.mc4wp-form textarea::-webkit-input-placeholder,
.mc4wp-form select::-webkit-input-placeholder,
.post-password-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset'])::-webkit-input-placeholder,
.post-password-form textarea::-webkit-input-placeholder,
.post-password-form select::-webkit-input-placeholder,
.fy-widget input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset'])::-webkit-input-placeholder,
.fy-widget textarea::-webkit-input-placeholder,
.fy-widget select::-webkit-input-placeholder {
    color: rgba(50, 50, 62, 0.6) !important;
    transition: color .3s ease-out 0s
}

.wpcf7 input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):-ms-input-placeholder,
.wpcf7 textarea:-ms-input-placeholder,
.wpcf7 select:-ms-input-placeholder,
.woocommerce input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):-ms-input-placeholder,
.woocommerce textarea:-ms-input-placeholder,
.woocommerce select:-ms-input-placeholder,
.rtb-booking-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):-ms-input-placeholder,
.rtb-booking-form textarea:-ms-input-placeholder,
.rtb-booking-form select:-ms-input-placeholder,
.mc4wp-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):-ms-input-placeholder,
.mc4wp-form textarea:-ms-input-placeholder,
.mc4wp-form select:-ms-input-placeholder,
.post-password-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):-ms-input-placeholder,
.post-password-form textarea:-ms-input-placeholder,
.post-password-form select:-ms-input-placeholder,
.fy-widget input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):-ms-input-placeholder,
.fy-widget textarea:-ms-input-placeholder,
.fy-widget select:-ms-input-placeholder {
    color: rgba(50, 50, 62, 0.6) !important;
    transition: color .3s ease-out 0s
}

.wpcf7 input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus::-webkit-input-placeholder,
.wpcf7 textarea:focus::-webkit-input-placeholder,
.wpcf7 select:focus::-webkit-input-placeholder,
.woocommerce input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus::-webkit-input-placeholder,
.woocommerce textarea:focus::-webkit-input-placeholder,
.woocommerce select:focus::-webkit-input-placeholder,
.rtb-booking-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus::-webkit-input-placeholder,
.rtb-booking-form textarea:focus::-webkit-input-placeholder,
.rtb-booking-form select:focus::-webkit-input-placeholder,
.mc4wp-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus::-webkit-input-placeholder,
.mc4wp-form textarea:focus::-webkit-input-placeholder,
.mc4wp-form select:focus::-webkit-input-placeholder,
.post-password-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus::-webkit-input-placeholder,
.post-password-form textarea:focus::-webkit-input-placeholder,
.post-password-form select:focus::-webkit-input-placeholder,
.fy-widget input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus::-webkit-input-placeholder,
.fy-widget textarea:focus::-webkit-input-placeholder,
.fy-widget select:focus::-webkit-input-placeholder {
    color: rgba(50, 50, 62, 0.2) !important
}

.wpcf7 input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus:-ms-input-placeholder,
.wpcf7 textarea:focus:-ms-input-placeholder,
.wpcf7 select:focus:-ms-input-placeholder,
.woocommerce input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus:-ms-input-placeholder,
.woocommerce textarea:focus:-ms-input-placeholder,
.woocommerce select:focus:-ms-input-placeholder,
.rtb-booking-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus:-ms-input-placeholder,
.rtb-booking-form textarea:focus:-ms-input-placeholder,
.rtb-booking-form select:focus:-ms-input-placeholder,
.mc4wp-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus:-ms-input-placeholder,
.mc4wp-form textarea:focus:-ms-input-placeholder,
.mc4wp-form select:focus:-ms-input-placeholder,
.post-password-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus:-ms-input-placeholder,
.post-password-form textarea:focus:-ms-input-placeholder,
.post-password-form select:focus:-ms-input-placeholder,
.fy-widget input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus:-ms-input-placeholder,
.fy-widget textarea:focus:-ms-input-placeholder,
.fy-widget select:focus:-ms-input-placeholder {
    color: rgba(50, 50, 62, 0.2) !important
}

.wpcf7 input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus,
.woocommerce input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus,
.woocommerce textarea:focus,
.woocommerce select:focus,
.rtb-booking-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus,
.rtb-booking-form textarea:focus,
.rtb-booking-form select:focus,
.mc4wp-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus,
.mc4wp-form textarea:focus,
.mc4wp-form select:focus,
.post-password-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus,
.post-password-form textarea:focus,
.post-password-form select:focus,
.fy-widget input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus,
.fy-widget textarea:focus,
.fy-widget select:focus {
    color: #32323e;
    background-color: transparent;
    border-color: #644baf
}

.wpcf7 input[type='number'],
.woocommerce input[type='number'],
.rtb-booking-form input[type='number'],
.mc4wp-form input[type='number'],
.post-password-form input[type='number'],
.fy-widget input[type='number'] {
    min-width: 100px;
    padding-right: 0 !important;
    text-align: left !important
}

.wpcf7 input[type='file'],
.woocommerce input[type='file'],
.rtb-booking-form input[type='file'],
.mc4wp-form input[type='file'],
.post-password-form input[type='file'],
.fy-widget input[type='file'] {
    margin: 10px 0;
    padding: 0 !important;
    line-height: 0 !important;
    background-color: transparent;
    border: 0 !important
}

.wpcf7 input[type='checkbox'],
.wpcf7 input[type='radio'],
.woocommerce input[type='checkbox'],
.woocommerce input[type='radio'],
.rtb-booking-form input[type='checkbox'],
.rtb-booking-form input[type='radio'],
.mc4wp-form input[type='checkbox'],
.mc4wp-form input[type='radio'],
.post-password-form input[type='checkbox'],
.post-password-form input[type='radio'],
.fy-widget input[type='checkbox'],
.fy-widget input[type='radio'] {
    margin: -1px 10px 0 6px !important
}

.wpcf7 input[type='checkbox']:focus,
.wpcf7 input[type='radio']:focus,
.woocommerce input[type='checkbox']:focus,
.woocommerce input[type='radio']:focus,
.rtb-booking-form input[type='checkbox']:focus,
.rtb-booking-form input[type='radio']:focus,
.mc4wp-form input[type='checkbox']:focus,
.mc4wp-form input[type='radio']:focus,
.post-password-form input[type='checkbox']:focus,
.post-password-form input[type='radio']:focus,
.fy-widget input[type='checkbox']:focus,
.fy-widget input[type='radio']:focus {
    outline: 2px solid #644baf;
    outline-offset: 4px
}

.wpcf7 input[type='time']::-webkit-inner-spin-button,
.wpcf7 input[type='time']::-webkit-outer-spin-button,
.wpcf7 input[type='time']::-webkit-clear-button,
.wpcf7 input[type='date']::-webkit-inner-spin-button,
.wpcf7 input[type='date']::-webkit-outer-spin-button,
.wpcf7 input[type='date']::-webkit-clear-button,
.woocommerce input[type='time']::-webkit-inner-spin-button,
.woocommerce input[type='time']::-webkit-outer-spin-button,
.woocommerce input[type='time']::-webkit-clear-button,
.woocommerce input[type='date']::-webkit-inner-spin-button,
.woocommerce input[type='date']::-webkit-outer-spin-button,
.woocommerce input[type='date']::-webkit-clear-button,
.rtb-booking-form input[type='time']::-webkit-inner-spin-button,
.rtb-booking-form input[type='time']::-webkit-outer-spin-button,
.rtb-booking-form input[type='time']::-webkit-clear-button,
.rtb-booking-form input[type='date']::-webkit-inner-spin-button,
.rtb-booking-form input[type='date']::-webkit-outer-spin-button,
.rtb-booking-form input[type='date']::-webkit-clear-button,
.mc4wp-form input[type='time']::-webkit-inner-spin-button,
.mc4wp-form input[type='time']::-webkit-outer-spin-button,
.mc4wp-form input[type='time']::-webkit-clear-button,
.mc4wp-form input[type='date']::-webkit-inner-spin-button,
.mc4wp-form input[type='date']::-webkit-outer-spin-button,
.mc4wp-form input[type='date']::-webkit-clear-button,
.post-password-form input[type='time']::-webkit-inner-spin-button,
.post-password-form input[type='time']::-webkit-outer-spin-button,
.post-password-form input[type='time']::-webkit-clear-button,
.post-password-form input[type='date']::-webkit-inner-spin-button,
.post-password-form input[type='date']::-webkit-outer-spin-button,
.post-password-form input[type='date']::-webkit-clear-button,
.fy-widget input[type='time']::-webkit-inner-spin-button,
.fy-widget input[type='time']::-webkit-outer-spin-button,
.fy-widget input[type='time']::-webkit-clear-button,
.fy-widget input[type='date']::-webkit-inner-spin-button,
.fy-widget input[type='date']::-webkit-outer-spin-button,
.fy-widget input[type='date']::-webkit-clear-button {
    -webkit-appearance: none;
    margin: 0
}

.wpcf7 input.input-text,
.woocommerce input.input-text,
.rtb-booking-form input.input-text,
.mc4wp-form input.input-text,
.post-password-form input.input-text,
.fy-widget input.input-text {
    padding: 0 20px
}

.wpcf7 textarea,
.woocommerce textarea,
.rtb-booking-form textarea,
.mc4wp-form textarea,
.post-password-form textarea,
.fy-widget textarea {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    line-height: normal !important;
    max-height: 20vh
}

.wpcf7 textarea::-webkit-input-placeholder,
.woocommerce textarea::-webkit-input-placeholder,
.rtb-booking-form textarea::-webkit-input-placeholder,
.mc4wp-form textarea::-webkit-input-placeholder,
.post-password-form textarea::-webkit-input-placeholder,
.fy-widget textarea::-webkit-input-placeholder {
    line-height: normal
}

.wpcf7 select,
.woocommerce select,
.rtb-booking-form select,
.mc4wp-form select,
.post-password-form select,
.fy-widget select {
    padding-right: 48px
}

.wpcf7 button[type='button'],
.wpcf7 button[type='submit'],
.wpcf7 button[type='reset'],
.wpcf7 a.button,
.wpcf7 button.button,
.wpcf7 input[type='button'],
.wpcf7 input[type='submit'],
.wpcf7 #respond input#submit,
.woocommerce button[type='button'],
.woocommerce button[type='submit'],
.woocommerce button[type='reset'],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input[type='button'],
.woocommerce input[type='submit'],
.woocommerce #respond input#submit,
.rtb-booking-form button[type='button'],
.rtb-booking-form button[type='submit'],
.rtb-booking-form button[type='reset'],
.rtb-booking-form a.button,
.rtb-booking-form button.button,
.rtb-booking-form input[type='button'],
.rtb-booking-form input[type='submit'],
.rtb-booking-form #respond input#submit,
.mc4wp-form button[type='button'],
.mc4wp-form button[type='submit'],
.mc4wp-form button[type='reset'],
.mc4wp-form a.button,
.mc4wp-form button.button,
.mc4wp-form input[type='button'],
.mc4wp-form input[type='submit'],
.mc4wp-form #respond input#submit,
.post-password-form button[type='button'],
.post-password-form button[type='submit'],
.post-password-form button[type='reset'],
.post-password-form a.button,
.post-password-form button.button,
.post-password-form input[type='button'],
.post-password-form input[type='submit'],
.post-password-form #respond input#submit,
.fy-widget button[type='button'],
.fy-widget button[type='submit'],
.fy-widget button[type='reset'],
.fy-widget a.button,
.fy-widget button.button,
.fy-widget input[type='button'],
.fy-widget input[type='submit'],
.fy-widget #respond input#submit {
    display: inline-block;
    padding: 0 40px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 15px !important;
    font-weight: 400;
    text-transform: none;
    letter-spacing: .025em;
    line-height: 46px !important;
    outline: 0;
    cursor: pointer;
    color: #fff;
    background-color: #644baf;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all .3s ease-out 0s;
    box-shadow: none
}

.wpcf7 button[type='button'] br,
.wpcf7 button[type='submit'] br,
.wpcf7 button[type='reset'] br,
.wpcf7 a.button br,
.wpcf7 button.button br,
.wpcf7 input[type='button'] br,
.wpcf7 input[type='submit'] br,
.wpcf7 #respond input#submit br,
.woocommerce button[type='button'] br,
.woocommerce button[type='submit'] br,
.woocommerce button[type='reset'] br,
.woocommerce a.button br,
.woocommerce button.button br,
.woocommerce input[type='button'] br,
.woocommerce input[type='submit'] br,
.woocommerce #respond input#submit br,
.rtb-booking-form button[type='button'] br,
.rtb-booking-form button[type='submit'] br,
.rtb-booking-form button[type='reset'] br,
.rtb-booking-form a.button br,
.rtb-booking-form button.button br,
.rtb-booking-form input[type='button'] br,
.rtb-booking-form input[type='submit'] br,
.rtb-booking-form #respond input#submit br,
.mc4wp-form button[type='button'] br,
.mc4wp-form button[type='submit'] br,
.mc4wp-form button[type='reset'] br,
.mc4wp-form a.button br,
.mc4wp-form button.button br,
.mc4wp-form input[type='button'] br,
.mc4wp-form input[type='submit'] br,
.mc4wp-form #respond input#submit br,
.post-password-form button[type='button'] br,
.post-password-form button[type='submit'] br,
.post-password-form button[type='reset'] br,
.post-password-form a.button br,
.post-password-form button.button br,
.post-password-form input[type='button'] br,
.post-password-form input[type='submit'] br,
.post-password-form #respond input#submit br,
.fy-widget button[type='button'] br,
.fy-widget button[type='submit'] br,
.fy-widget button[type='reset'] br,
.fy-widget a.button br,
.fy-widget button.button br,
.fy-widget input[type='button'] br,
.fy-widget input[type='submit'] br,
.fy-widget #respond input#submit br {
    display: none
}

.wpcf7 button[type='button']:hover,
.wpcf7 button[type='button']:focus,
.wpcf7 button[type='submit']:hover,
.wpcf7 button[type='submit']:focus,
.wpcf7 button[type='reset']:hover,
.wpcf7 button[type='reset']:focus,
.wpcf7 a.button:hover,
.wpcf7 a.button:focus,
.wpcf7 button.button:hover,
.wpcf7 button.button:focus,
.wpcf7 input[type='button']:hover,
.wpcf7 input[type='button']:focus,
.wpcf7 input[type='submit']:hover,
.wpcf7 input[type='submit']:focus,
.wpcf7 #respond input#submit:hover,
.wpcf7 #respond input#submit:focus,
.woocommerce button[type='button']:hover,
.woocommerce button[type='button']:focus,
.woocommerce button[type='submit']:hover,
.woocommerce button[type='submit']:focus,
.woocommerce button[type='reset']:hover,
.woocommerce button[type='reset']:focus,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce input[type='button']:hover,
.woocommerce input[type='button']:focus,
.woocommerce input[type='submit']:hover,
.woocommerce input[type='submit']:focus,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:focus,
.rtb-booking-form button[type='button']:hover,
.rtb-booking-form button[type='button']:focus,
.rtb-booking-form button[type='submit']:hover,
.rtb-booking-form button[type='submit']:focus,
.rtb-booking-form button[type='reset']:hover,
.rtb-booking-form button[type='reset']:focus,
.rtb-booking-form a.button:hover,
.rtb-booking-form a.button:focus,
.rtb-booking-form button.button:hover,
.rtb-booking-form button.button:focus,
.rtb-booking-form input[type='button']:hover,
.rtb-booking-form input[type='button']:focus,
.rtb-booking-form input[type='submit']:hover,
.rtb-booking-form input[type='submit']:focus,
.rtb-booking-form #respond input#submit:hover,
.rtb-booking-form #respond input#submit:focus,
.mc4wp-form button[type='button']:hover,
.mc4wp-form button[type='button']:focus,
.mc4wp-form button[type='submit']:hover,
.mc4wp-form button[type='submit']:focus,
.mc4wp-form button[type='reset']:hover,
.mc4wp-form button[type='reset']:focus,
.mc4wp-form a.button:hover,
.mc4wp-form a.button:focus,
.mc4wp-form button.button:hover,
.mc4wp-form button.button:focus,
.mc4wp-form input[type='button']:hover,
.mc4wp-form input[type='button']:focus,
.mc4wp-form input[type='submit']:hover,
.mc4wp-form input[type='submit']:focus,
.mc4wp-form #respond input#submit:hover,
.mc4wp-form #respond input#submit:focus,
.post-password-form button[type='button']:hover,
.post-password-form button[type='button']:focus,
.post-password-form button[type='submit']:hover,
.post-password-form button[type='submit']:focus,
.post-password-form button[type='reset']:hover,
.post-password-form button[type='reset']:focus,
.post-password-form a.button:hover,
.post-password-form a.button:focus,
.post-password-form button.button:hover,
.post-password-form button.button:focus,
.post-password-form input[type='button']:hover,
.post-password-form input[type='button']:focus,
.post-password-form input[type='submit']:hover,
.post-password-form input[type='submit']:focus,
.post-password-form #respond input#submit:hover,
.post-password-form #respond input#submit:focus,
.fy-widget button[type='button']:hover,
.fy-widget button[type='button']:focus,
.fy-widget button[type='submit']:hover,
.fy-widget button[type='submit']:focus,
.fy-widget button[type='reset']:hover,
.fy-widget button[type='reset']:focus,
.fy-widget a.button:hover,
.fy-widget a.button:focus,
.fy-widget button.button:hover,
.fy-widget button.button:focus,
.fy-widget input[type='button']:hover,
.fy-widget input[type='button']:focus,
.fy-widget input[type='submit']:hover,
.fy-widget input[type='submit']:focus,
.fy-widget #respond input#submit:hover,
.fy-widget #respond input#submit:focus {
    color: #fff;
    background-color: #725bb9;
    border-color: transparent !important;
    cursor: pointer;
    box-shadow: 0 16px 80px rgba(0, 0, 0, 0.2)
}

.shadow-disabled .wpcf7 button[type='button']:hover,
.shadow-disabled .wpcf7 button[type='button']:focus,
.shadow-disabled .wpcf7 button[type='submit']:hover,
.shadow-disabled .wpcf7 button[type='submit']:focus,
.shadow-disabled .wpcf7 button[type='reset']:hover,
.shadow-disabled .wpcf7 button[type='reset']:focus,
.shadow-disabled .wpcf7 a.button:hover,
.shadow-disabled .wpcf7 a.button:focus,
.shadow-disabled .wpcf7 button.button:hover,
.shadow-disabled .wpcf7 button.button:focus,
.shadow-disabled .wpcf7 input[type='button']:hover,
.shadow-disabled .wpcf7 input[type='button']:focus,
.shadow-disabled .wpcf7 input[type='submit']:hover,
.shadow-disabled .wpcf7 input[type='submit']:focus,
.shadow-disabled .wpcf7 #respond input#submit:hover,
.shadow-disabled .wpcf7 #respond input#submit:focus,
.shadow-disabled .woocommerce button[type='button']:hover,
.shadow-disabled .woocommerce button[type='button']:focus,
.shadow-disabled .woocommerce button[type='submit']:hover,
.shadow-disabled .woocommerce button[type='submit']:focus,
.shadow-disabled .woocommerce button[type='reset']:hover,
.shadow-disabled .woocommerce button[type='reset']:focus,
.shadow-disabled .woocommerce a.button:hover,
.shadow-disabled .woocommerce a.button:focus,
.shadow-disabled .woocommerce button.button:hover,
.shadow-disabled .woocommerce button.button:focus,
.shadow-disabled .woocommerce input[type='button']:hover,
.shadow-disabled .woocommerce input[type='button']:focus,
.shadow-disabled .woocommerce input[type='submit']:hover,
.shadow-disabled .woocommerce input[type='submit']:focus,
.shadow-disabled .woocommerce #respond input#submit:hover,
.shadow-disabled .woocommerce #respond input#submit:focus,
.shadow-disabled .rtb-booking-form button[type='button']:hover,
.shadow-disabled .rtb-booking-form button[type='button']:focus,
.shadow-disabled .rtb-booking-form button[type='submit']:hover,
.shadow-disabled .rtb-booking-form button[type='submit']:focus,
.shadow-disabled .rtb-booking-form button[type='reset']:hover,
.shadow-disabled .rtb-booking-form button[type='reset']:focus,
.shadow-disabled .rtb-booking-form a.button:hover,
.shadow-disabled .rtb-booking-form a.button:focus,
.shadow-disabled .rtb-booking-form button.button:hover,
.shadow-disabled .rtb-booking-form button.button:focus,
.shadow-disabled .rtb-booking-form input[type='button']:hover,
.shadow-disabled .rtb-booking-form input[type='button']:focus,
.shadow-disabled .rtb-booking-form input[type='submit']:hover,
.shadow-disabled .rtb-booking-form input[type='submit']:focus,
.shadow-disabled .rtb-booking-form #respond input#submit:hover,
.shadow-disabled .rtb-booking-form #respond input#submit:focus,
.shadow-disabled .mc4wp-form button[type='button']:hover,
.shadow-disabled .mc4wp-form button[type='button']:focus,
.shadow-disabled .mc4wp-form button[type='submit']:hover,
.shadow-disabled .mc4wp-form button[type='submit']:focus,
.shadow-disabled .mc4wp-form button[type='reset']:hover,
.shadow-disabled .mc4wp-form button[type='reset']:focus,
.shadow-disabled .mc4wp-form a.button:hover,
.shadow-disabled .mc4wp-form a.button:focus,
.shadow-disabled .mc4wp-form button.button:hover,
.shadow-disabled .mc4wp-form button.button:focus,
.shadow-disabled .mc4wp-form input[type='button']:hover,
.shadow-disabled .mc4wp-form input[type='button']:focus,
.shadow-disabled .mc4wp-form input[type='submit']:hover,
.shadow-disabled .mc4wp-form input[type='submit']:focus,
.shadow-disabled .mc4wp-form #respond input#submit:hover,
.shadow-disabled .mc4wp-form #respond input#submit:focus,
.shadow-disabled .post-password-form button[type='button']:hover,
.shadow-disabled .post-password-form button[type='button']:focus,
.shadow-disabled .post-password-form button[type='submit']:hover,
.shadow-disabled .post-password-form button[type='submit']:focus,
.shadow-disabled .post-password-form button[type='reset']:hover,
.shadow-disabled .post-password-form button[type='reset']:focus,
.shadow-disabled .post-password-form a.button:hover,
.shadow-disabled .post-password-form a.button:focus,
.shadow-disabled .post-password-form button.button:hover,
.shadow-disabled .post-password-form button.button:focus,
.shadow-disabled .post-password-form input[type='button']:hover,
.shadow-disabled .post-password-form input[type='button']:focus,
.shadow-disabled .post-password-form input[type='submit']:hover,
.shadow-disabled .post-password-form input[type='submit']:focus,
.shadow-disabled .post-password-form #respond input#submit:hover,
.shadow-disabled .post-password-form #respond input#submit:focus,
.shadow-disabled .fy-widget button[type='button']:hover,
.shadow-disabled .fy-widget button[type='button']:focus,
.shadow-disabled .fy-widget button[type='submit']:hover,
.shadow-disabled .fy-widget button[type='submit']:focus,
.shadow-disabled .fy-widget button[type='reset']:hover,
.shadow-disabled .fy-widget button[type='reset']:focus,
.shadow-disabled .fy-widget a.button:hover,
.shadow-disabled .fy-widget a.button:focus,
.shadow-disabled .fy-widget button.button:hover,
.shadow-disabled .fy-widget button.button:focus,
.shadow-disabled .fy-widget input[type='button']:hover,
.shadow-disabled .fy-widget input[type='button']:focus,
.shadow-disabled .fy-widget input[type='submit']:hover,
.shadow-disabled .fy-widget input[type='submit']:focus,
.shadow-disabled .fy-widget #respond input#submit:hover,
.shadow-disabled .fy-widget #respond input#submit:focus {
    box-shadow: none
}

.wpcf7 button:disabled,
.wpcf7 button:disabled[disabled],
.wpcf7 button.button:disabled,
.wpcf7 button.button:disabled[disabled],
.woocommerce button:disabled,
.woocommerce button:disabled[disabled],
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.rtb-booking-form button:disabled,
.rtb-booking-form button:disabled[disabled],
.rtb-booking-form button.button:disabled,
.rtb-booking-form button.button:disabled[disabled],
.mc4wp-form button:disabled,
.mc4wp-form button:disabled[disabled],
.mc4wp-form button.button:disabled,
.mc4wp-form button.button:disabled[disabled],
.post-password-form button:disabled,
.post-password-form button:disabled[disabled],
.post-password-form button.button:disabled,
.post-password-form button.button:disabled[disabled],
.fy-widget button:disabled,
.fy-widget button:disabled[disabled],
.fy-widget button.button:disabled,
.fy-widget button.button:disabled[disabled] {
    opacity: 1;
    color: rgba(50, 50, 62, 0.2);
    background-color: rgba(50, 50, 62, 0.1);
    border-color: transparent;
    box-shadow: none
}

.wpcf7 a.button.alt,
.wpcf7 a.button.submit,
.wpcf7 button.button.alt,
.wpcf7 button.button.submit,
.woocommerce a.button.alt,
.woocommerce a.button.submit,
.woocommerce button.button.alt,
.woocommerce button.button.submit,
.rtb-booking-form a.button.alt,
.rtb-booking-form a.button.submit,
.rtb-booking-form button.button.alt,
.rtb-booking-form button.button.submit,
.mc4wp-form a.button.alt,
.mc4wp-form a.button.submit,
.mc4wp-form button.button.alt,
.mc4wp-form button.button.submit,
.post-password-form a.button.alt,
.post-password-form a.button.submit,
.post-password-form button.button.alt,
.post-password-form button.button.submit,
.fy-widget a.button.alt,
.fy-widget a.button.submit,
.fy-widget button.button.alt,
.fy-widget button.button.submit {
    padding: 0 40px;
    font-weight: 400;
    color: #fff;
    background-color: #644baf;
    border: 1px solid transparent;
    transition: all .3s ease-out 0s;
    box-shadow: none
}

.wpcf7 a.button.alt:hover,
.wpcf7 a.button.alt:focus,
.wpcf7 a.button.submit:hover,
.wpcf7 a.button.submit:focus,
.wpcf7 button.button.alt:hover,
.wpcf7 button.button.alt:focus,
.wpcf7 button.button.submit:hover,
.wpcf7 button.button.submit:focus,
.woocommerce a.button.alt:hover,
.woocommerce a.button.alt:focus,
.woocommerce a.button.submit:hover,
.woocommerce a.button.submit:focus,
.woocommerce button.button.alt:hover,
.woocommerce button.button.alt:focus,
.woocommerce button.button.submit:hover,
.woocommerce button.button.submit:focus,
.rtb-booking-form a.button.alt:hover,
.rtb-booking-form a.button.alt:focus,
.rtb-booking-form a.button.submit:hover,
.rtb-booking-form a.button.submit:focus,
.rtb-booking-form button.button.alt:hover,
.rtb-booking-form button.button.alt:focus,
.rtb-booking-form button.button.submit:hover,
.rtb-booking-form button.button.submit:focus,
.mc4wp-form a.button.alt:hover,
.mc4wp-form a.button.alt:focus,
.mc4wp-form a.button.submit:hover,
.mc4wp-form a.button.submit:focus,
.mc4wp-form button.button.alt:hover,
.mc4wp-form button.button.alt:focus,
.mc4wp-form button.button.submit:hover,
.mc4wp-form button.button.submit:focus,
.post-password-form a.button.alt:hover,
.post-password-form a.button.alt:focus,
.post-password-form a.button.submit:hover,
.post-password-form a.button.submit:focus,
.post-password-form button.button.alt:hover,
.post-password-form button.button.alt:focus,
.post-password-form button.button.submit:hover,
.post-password-form button.button.submit:focus,
.fy-widget a.button.alt:hover,
.fy-widget a.button.alt:focus,
.fy-widget a.button.submit:hover,
.fy-widget a.button.submit:focus,
.fy-widget button.button.alt:hover,
.fy-widget button.button.alt:focus,
.fy-widget button.button.submit:hover,
.fy-widget button.button.submit:focus {
    color: #fff;
    background-color: #725bb9;
    border-color: #725bb9;
    box-shadow: 0 16px 80px rgba(0, 0, 0, 0.2)
}

.shadow-disabled .wpcf7 a.button.alt:hover,
.shadow-disabled .wpcf7 a.button.alt:focus,
.shadow-disabled .wpcf7 a.button.submit:hover,
.shadow-disabled .wpcf7 a.button.submit:focus,
.shadow-disabled .wpcf7 button.button.alt:hover,
.shadow-disabled .wpcf7 button.button.alt:focus,
.shadow-disabled .wpcf7 button.button.submit:hover,
.shadow-disabled .wpcf7 button.button.submit:focus,
.shadow-disabled .woocommerce a.button.alt:hover,
.shadow-disabled .woocommerce a.button.alt:focus,
.shadow-disabled .woocommerce a.button.submit:hover,
.shadow-disabled .woocommerce a.button.submit:focus,
.shadow-disabled .woocommerce button.button.alt:hover,
.shadow-disabled .woocommerce button.button.alt:focus,
.shadow-disabled .woocommerce button.button.submit:hover,
.shadow-disabled .woocommerce button.button.submit:focus,
.shadow-disabled .rtb-booking-form a.button.alt:hover,
.shadow-disabled .rtb-booking-form a.button.alt:focus,
.shadow-disabled .rtb-booking-form a.button.submit:hover,
.shadow-disabled .rtb-booking-form a.button.submit:focus,
.shadow-disabled .rtb-booking-form button.button.alt:hover,
.shadow-disabled .rtb-booking-form button.button.alt:focus,
.shadow-disabled .rtb-booking-form button.button.submit:hover,
.shadow-disabled .rtb-booking-form button.button.submit:focus,
.shadow-disabled .mc4wp-form a.button.alt:hover,
.shadow-disabled .mc4wp-form a.button.alt:focus,
.shadow-disabled .mc4wp-form a.button.submit:hover,
.shadow-disabled .mc4wp-form a.button.submit:focus,
.shadow-disabled .mc4wp-form button.button.alt:hover,
.shadow-disabled .mc4wp-form button.button.alt:focus,
.shadow-disabled .mc4wp-form button.button.submit:hover,
.shadow-disabled .mc4wp-form button.button.submit:focus,
.shadow-disabled .post-password-form a.button.alt:hover,
.shadow-disabled .post-password-form a.button.alt:focus,
.shadow-disabled .post-password-form a.button.submit:hover,
.shadow-disabled .post-password-form a.button.submit:focus,
.shadow-disabled .post-password-form button.button.alt:hover,
.shadow-disabled .post-password-form button.button.alt:focus,
.shadow-disabled .post-password-form button.button.submit:hover,
.shadow-disabled .post-password-form button.button.submit:focus,
.shadow-disabled .fy-widget a.button.alt:hover,
.shadow-disabled .fy-widget a.button.alt:focus,
.shadow-disabled .fy-widget a.button.submit:hover,
.shadow-disabled .fy-widget a.button.submit:focus,
.shadow-disabled .fy-widget button.button.alt:hover,
.shadow-disabled .fy-widget button.button.alt:focus,
.shadow-disabled .fy-widget button.button.submit:hover,
.shadow-disabled .fy-widget button.button.submit:focus {
    box-shadow: none
}

.wpcf7 a.button:disabled,
.wpcf7 a.button.disabled,
.wpcf7 a.button:disabled[disabled],
.wpcf7 button.button:disabled,
.wpcf7 button.button.disabled,
.wpcf7 button.button:disabled[disabled],
.woocommerce a.button:disabled,
.woocommerce a.button.disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button:disabled,
.woocommerce button.button.disabled,
.woocommerce button.button:disabled[disabled],
.rtb-booking-form a.button:disabled,
.rtb-booking-form a.button.disabled,
.rtb-booking-form a.button:disabled[disabled],
.rtb-booking-form button.button:disabled,
.rtb-booking-form button.button.disabled,
.rtb-booking-form button.button:disabled[disabled],
.mc4wp-form a.button:disabled,
.mc4wp-form a.button.disabled,
.mc4wp-form a.button:disabled[disabled],
.mc4wp-form button.button:disabled,
.mc4wp-form button.button.disabled,
.mc4wp-form button.button:disabled[disabled],
.post-password-form a.button:disabled,
.post-password-form a.button.disabled,
.post-password-form a.button:disabled[disabled],
.post-password-form button.button:disabled,
.post-password-form button.button.disabled,
.post-password-form button.button:disabled[disabled],
.fy-widget a.button:disabled,
.fy-widget a.button.disabled,
.fy-widget a.button:disabled[disabled],
.fy-widget button.button:disabled,
.fy-widget button.button.disabled,
.fy-widget button.button:disabled[disabled] {
    opacity: 1;
    padding: 0 40px;
    cursor: not-allowed;
    color: rgba(50, 50, 62, 0.2) !important;
    background-color: rgba(50, 50, 62, 0.1) !important;
    border-color: transparent;
    box-shadow: none
}

.wpcf7 a.button:disabled:hover,
.wpcf7 a.button:disabled:focus,
.wpcf7 a.button.disabled:hover,
.wpcf7 a.button.disabled:focus,
.wpcf7 a.button:disabled[disabled]:hover,
.wpcf7 a.button:disabled[disabled]:focus,
.wpcf7 button.button:disabled:hover,
.wpcf7 button.button:disabled:focus,
.wpcf7 button.button.disabled:hover,
.wpcf7 button.button.disabled:focus,
.wpcf7 button.button:disabled[disabled]:hover,
.wpcf7 button.button:disabled[disabled]:focus,
.woocommerce a.button:disabled:hover,
.woocommerce a.button:disabled:focus,
.woocommerce a.button.disabled:hover,
.woocommerce a.button.disabled:focus,
.woocommerce a.button:disabled[disabled]:hover,
.woocommerce a.button:disabled[disabled]:focus,
.woocommerce button.button:disabled:hover,
.woocommerce button.button:disabled:focus,
.woocommerce button.button.disabled:hover,
.woocommerce button.button.disabled:focus,
.woocommerce button.button:disabled[disabled]:hover,
.woocommerce button.button:disabled[disabled]:focus,
.rtb-booking-form a.button:disabled:hover,
.rtb-booking-form a.button:disabled:focus,
.rtb-booking-form a.button.disabled:hover,
.rtb-booking-form a.button.disabled:focus,
.rtb-booking-form a.button:disabled[disabled]:hover,
.rtb-booking-form a.button:disabled[disabled]:focus,
.rtb-booking-form button.button:disabled:hover,
.rtb-booking-form button.button:disabled:focus,
.rtb-booking-form button.button.disabled:hover,
.rtb-booking-form button.button.disabled:focus,
.rtb-booking-form button.button:disabled[disabled]:hover,
.rtb-booking-form button.button:disabled[disabled]:focus,
.mc4wp-form a.button:disabled:hover,
.mc4wp-form a.button:disabled:focus,
.mc4wp-form a.button.disabled:hover,
.mc4wp-form a.button.disabled:focus,
.mc4wp-form a.button:disabled[disabled]:hover,
.mc4wp-form a.button:disabled[disabled]:focus,
.mc4wp-form button.button:disabled:hover,
.mc4wp-form button.button:disabled:focus,
.mc4wp-form button.button.disabled:hover,
.mc4wp-form button.button.disabled:focus,
.mc4wp-form button.button:disabled[disabled]:hover,
.mc4wp-form button.button:disabled[disabled]:focus,
.post-password-form a.button:disabled:hover,
.post-password-form a.button:disabled:focus,
.post-password-form a.button.disabled:hover,
.post-password-form a.button.disabled:focus,
.post-password-form a.button:disabled[disabled]:hover,
.post-password-form a.button:disabled[disabled]:focus,
.post-password-form button.button:disabled:hover,
.post-password-form button.button:disabled:focus,
.post-password-form button.button.disabled:hover,
.post-password-form button.button.disabled:focus,
.post-password-form button.button:disabled[disabled]:hover,
.post-password-form button.button:disabled[disabled]:focus,
.fy-widget a.button:disabled:hover,
.fy-widget a.button:disabled:focus,
.fy-widget a.button.disabled:hover,
.fy-widget a.button.disabled:focus,
.fy-widget a.button:disabled[disabled]:hover,
.fy-widget a.button:disabled[disabled]:focus,
.fy-widget button.button:disabled:hover,
.fy-widget button.button:disabled:focus,
.fy-widget button.button.disabled:hover,
.fy-widget button.button.disabled:focus,
.fy-widget button.button:disabled[disabled]:hover,
.fy-widget button.button:disabled[disabled]:focus {
    box-shadow: none
}

.fy-heading .fy-field.fy-field-search .fy-input {
    color: rgba(255, 255, 255, 0.6);
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2) !important
}

.fy-heading .fy-field.fy-field-search .fy-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color .3s ease-out 0s
}

.fy-heading .fy-field.fy-field-search .fy-input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color .3s ease-out 0s
}

.fy-heading .fy-field.fy-field-search .fy-input:focus::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.2) !important
}

.fy-heading .fy-field.fy-field-search .fy-input:focus:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.2) !important
}

.fy-heading .fy-field.fy-field-search .fy-input:focus {
    color: #fff;
    background-color: transparent;
    border-color: #fa6e78 !important
}

.fy-heading .fy-field.fy-field-search .fy-button {
    color: rgba(255, 255, 255, 0.4)
}

.fy-heading .fy-field.fy-field-search .fy-button:hover,
.fy-heading .fy-field.fy-field-search .fy-button:focus {
    color: #fff
}

.fy-footer .fy-widget label {
    color: #fff
}

.fy-footer .fy-widget label.fy-label-error {
    color: #fa6e78
}

.fy-footer .fy-widget input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']),
.fy-footer .fy-widget textarea,
.fy-footer .fy-widget select {
    color: rgba(255, 255, 255, 0.6);
    background-color: #32323e;
    border-color: rgba(255, 255, 255, 0.2) !important
}

.fy-footer .fy-widget input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset'])::-webkit-input-placeholder,
.fy-footer .fy-widget textarea::-webkit-input-placeholder,
.fy-footer .fy-widget select::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color .3s ease-out 0s
}

.fy-footer .fy-widget input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):-ms-input-placeholder,
.fy-footer .fy-widget textarea:-ms-input-placeholder,
.fy-footer .fy-widget select:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color .3s ease-out 0s
}

.fy-footer .fy-widget input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus::-webkit-input-placeholder,
.fy-footer .fy-widget textarea:focus::-webkit-input-placeholder,
.fy-footer .fy-widget select:focus::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.2) !important
}

.fy-footer .fy-widget input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus:-ms-input-placeholder,
.fy-footer .fy-widget textarea:focus:-ms-input-placeholder,
.fy-footer .fy-widget select:focus:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.2) !important
}

.fy-footer .fy-widget input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus,
.fy-footer .fy-widget textarea:focus,
.fy-footer .fy-widget select:focus {
    color: #fff;
    background-color: #32323e;
    border-color: #fa6e78 !important
}

.fy-footer .fy-widget select {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(255,255,255,0.4)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon class="shape" points="16.7,11.8 13,15.5 13,6 12,6 12,15.5 8.3,11.8 7.6,12.5 12.5,17.4 17.4,12.5"></polygon></svg>')
}

.fy-footer .fy-widget select option {
    color: #fff;
    background-color: #32323e
}

.fy-footer .fy-widget select:focus {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(255,255,255,0.99)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon class="shape" points="16.7,11.8 13,15.5 13,6 12,6 12,15.5 8.3,11.8 7.6,12.5 12.5,17.4 17.4,12.5"></polygon></svg>')
}

.fy-footer .fy-widget button[type='button'],
.fy-footer .fy-widget button[type='submit'],
.fy-footer .fy-widget button[type='reset'],
.fy-footer .fy-widget input[type='button'],
.fy-footer .fy-widget input[type='submit'] {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2)
}

.fy-footer .fy-widget button[type='button']:hover,
.fy-footer .fy-widget button[type='button']:focus,
.fy-footer .fy-widget button[type='submit']:hover,
.fy-footer .fy-widget button[type='submit']:focus,
.fy-footer .fy-widget button[type='reset']:hover,
.fy-footer .fy-widget button[type='reset']:focus,
.fy-footer .fy-widget input[type='button']:hover,
.fy-footer .fy-widget input[type='button']:focus,
.fy-footer .fy-widget input[type='submit']:hover,
.fy-footer .fy-widget input[type='submit']:focus {
    color: #fff;
    background-color: transparent;
    border-color: #fa6e78
}

.wpcf7 span[role='alert'] {
    display: block;
    padding: 10px 0;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: .025em;
    line-height: normal;
    color: #fa6e78
}

.wpcf7 span.wpcf7-list-item {
    margin: 0 40px 0 0
}

.wpcf7 div.wpcf7-response-output {
    padding: 20px 40px;
    margin-right: 0;
    margin-left: 0;
    border-width: 2px
}

.woocommerce form>h3 {
    margin-bottom: 40px;
    color: #32323e
}

.woocommerce form .form-row {
    padding: 0;
    margin-bottom: 20px
}

.woocommerce form .form-row br {
    display: none
}

.woocommerce form .form-row label {
    line-height: 40px !important
}

.woocommerce form .form-row label .required {
    color: #32323e;
    text-decoration: none
}

.woocommerce form .form-row label.woocommerce-form__label-for-checkbox,
.woocommerce form .form-row label.woocommerce-form__label-for-radio {
    line-height: 1.8 !important
}

.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select,
.woocommerce form .form-row.woocommerce-validated .select2-container {
    border-color: #3c9678
}

.woocommerce form .form-row.woocommerce-invalid label {
    color: #32323e
}

.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select,
.woocommerce form .form-row.woocommerce-invalid .select2-container {
    border-color: #fa6e78
}

.woocommerce form label.woocommerce-form__label-for-checkbox {
    font-size: 16px
}

.woocommerce form input[type='number'].qty {
    max-width: 100px
}

.woocommerce form input::-webkit-input-placeholder,
.woocommerce form textarea::-webkit-input-placeholder {
    opacity: 1 !important;
    transition: color .3s ease-out !important
}

.woocommerce form input:-ms-input-placeholder,
.woocommerce form textarea:-ms-input-placeholder {
    opacity: 1 !important;
    transition: color .3s ease-out !important
}

.woocommerce form input::-moz-placeholder,
.woocommerce form textarea::-moz-placeholder {
    opacity: 1 !important;
    transition: color .3s ease-out !important
}

.woocommerce form input:-moz-placeholder,
.woocommerce form textarea:-moz-placeholder {
    opacity: 1 !important;
    transition: color .3s ease-out !important
}

.woocommerce .form-row {
    padding: 0;
    margin: 0 0 20px
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    padding: 0 20px;
    border-width: 1px;
    border-color: rgba(50, 50, 62, 0.2);
    border-style: solid
}

.woocommerce-cart table.cart td.actions .coupon .input-text:focus {
    border-color: #644baf
}

@media screen and (min-width:1024px) {
    .rtb-booking-form {
        margin: 0 auto;
        max-width: 50%
    }
}

.rtb-booking-form legend {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.rtb-booking-form input,
.rtb-booking-form select,
.rtb-booking-form textarea {
    max-width: 100% !important
}

.mc4wp-form {
    display: inline-block;
    width: auto;
    padding: 40px;
    margin: 20px auto 0;
    text-align: center;
    color: #32323e;
    background-color: #fff
}

.mc4wp-form .mc4wp-form-fields {
    display: inline-block
}

.mc4wp-form .mc4wp-form-fields>p {
    display: inline-block;
    margin: 0 0 20px 20px
}

.mc4wp-form .mc4wp-form-fields>p label:first-child {
    display: block
}

.mc4wp-form .mc4wp-alert {
    display: block;
    margin-top: 20px;
    padding: 20px 40px;
    color: #32323e;
    border: 1px solid #32323e
}

.mc4wp-form .mc4wp-alert p {
    margin: 0
}

.mc4wp-form label {
    text-align: left;
    color: #32323e
}

.mc4wp-form label>span {
    display: inline-block !important;
    padding: 0 !important
}

.mc4wp-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']),
.mc4wp-form textarea,
.mc4wp-form select {
    color: rgba(50, 50, 62, 0.6);
    background-color: #fff;
    border-color: rgba(50, 50, 62, 0.2) !important
}

.mc4wp-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset'])::-webkit-input-placeholder,
.mc4wp-form textarea::-webkit-input-placeholder,
.mc4wp-form select::-webkit-input-placeholder {
    color: rgba(50, 50, 62, 0.6) !important;
    transition: color .3s ease-out 0s
}

.mc4wp-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):-ms-input-placeholder,
.mc4wp-form textarea:-ms-input-placeholder,
.mc4wp-form select:-ms-input-placeholder {
    color: rgba(50, 50, 62, 0.6) !important;
    transition: color .3s ease-out 0s
}

.mc4wp-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus::-webkit-input-placeholder,
.mc4wp-form textarea:focus::-webkit-input-placeholder,
.mc4wp-form select:focus::-webkit-input-placeholder {
    color: rgba(50, 50, 62, 0.2) !important
}

.mc4wp-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus:-ms-input-placeholder,
.mc4wp-form textarea:focus:-ms-input-placeholder,
.mc4wp-form select:focus:-ms-input-placeholder {
    color: rgba(50, 50, 62, 0.2) !important
}

.mc4wp-form input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='reset']):focus,
.mc4wp-form textarea:focus,
.mc4wp-form select:focus {
    color: #32323e;
    background-color: #fff;
    border-color: #fa6e78 !important
}

.mc4wp-form select {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.4)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon class="shape" points="16.7,11.8 13,15.5 13,6 12,6 12,15.5 8.3,11.8 7.6,12.5 12.5,17.4 17.4,12.5"></polygon></svg>')
}

.mc4wp-form select option {
    color: #32323e;
    background-color: #fff
}

.mc4wp-form select:focus {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.99)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon class="shape" points="16.7,11.8 13,15.5 13,6 12,6 12,15.5 8.3,11.8 7.6,12.5 12.5,17.4 17.4,12.5"></polygon></svg>')
}

.mc4wp-form button[type='button'],
.mc4wp-form button[type='submit'],
.mc4wp-form button[type='reset'],
.mc4wp-form input[type='button'],
.mc4wp-form input[type='submit'] {
    color: #fff;
    background-color: #fa6e78;
    border-color: #fa6e78
}

.mc4wp-form button[type='button']:hover,
.mc4wp-form button[type='button']:focus,
.mc4wp-form button[type='submit']:hover,
.mc4wp-form button[type='submit']:focus,
.mc4wp-form button[type='reset']:hover,
.mc4wp-form button[type='reset']:focus,
.mc4wp-form input[type='button']:hover,
.mc4wp-form input[type='button']:focus,
.mc4wp-form input[type='submit']:hover,
.mc4wp-form input[type='submit']:focus {
    color: #fff;
    background-color: #fb878f !important;
    border-color: #fa6e78
}

.post-password-form {
    display: block;
    max-width: 50%;
    margin: 40px auto 0;
    text-align: center
}

@media screen and (max-width:1023px) {
    .post-password-form {
        max-width: 100%
    }
}

.post-password-form p:nth-child(1) {
    font-size: 16px
}

.post-password-form input[type='password'] {
    width: 100%
}

.post-password-form input[type='submit'] {
    margin-top: 20px
}

.fy-navigation-container {
    position: relative;
    max-height: 72px;
    z-index: 20
}

.fy-navigation {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 72px;
    will-change: transform;
    user-select: none
}

.fy-navigation>.fy-navigation {
    display: block;
    width: 100%;
    padding: 0;
    border: 0
}

.fy-navigation>ul {
    font-size: 0;
    white-space: nowrap;
    background-color: transparent;
    transition: background-color .3s ease-out 0s
}

@media screen and (max-width:1480px) {
    .fy-navigation>ul {
        padding-right: 0;
        padding-left: 0
    }
}

.fy-navigation>ul>li {
    display: inline-block;
    position: relative;
    margin: 0;
    font-size: 15px
}

.fy-navigation>ul>li:hover {
    z-index: 30
}

.fy-navigation>ul>li.float-left {
    float: left
}

.fy-navigation>ul>li.float-right {
    float: right
}

.fy-navigation>ul>li a {
    display: block;
    position: relative;
    padding: 0 20px;
    z-index: 20;
    line-height: 72px;
    cursor: pointer
}

@media screen and (min-width:1280px) and (max-width:1479px) {
    .fy-navigation>ul>li a {
        padding-right: 16px;
        padding-left: 16px
    }
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .fy-navigation>ul>li a {
        padding-right: 10px;
        padding-left: 10px
    }
}

.fy-navigation>ul>li a[href='#'] {
    cursor: default
}

.fy-navigation>ul>li.important {
    margin: 0 20px
}

.fy-navigation>ul>li.important:first-child {
    margin-left: 0
}

.fy-navigation>ul>li.important:last-child {
    margin-right: 0
}

.fy-navigation-trigger,
.fy-bar-navigation-trigger {
    display: none;
    position: relative;
    width: 72px;
    height: 72px;
    padding: 0;
    cursor: pointer;
    outline: 0;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none
}

.fy-navigation-trigger .fy-navigation-open .icon,
.fy-bar-navigation-trigger .fy-navigation-open .icon {
    float: left
}

.fy-navigation-close,
.fy-bar-navigation-close {
    opacity: 0;
    display: none;
    position: fixed;
    top: -1000vh;
    right: 0;
    width: 72px;
    height: 72px;
    z-index: 90;
    cursor: pointer;
    transition: opacity .3s ease-out 0s
}

body.navigation-align-left .fy-navigation {
    justify-content: flex-start;
    text-align: left
}

body.navigation-align-center .fy-navigation {
    justify-content: center;
    text-align: center
}

body.navigation-align-right .fy-navigation {
    justify-content: flex-end;
    text-align: right
}

body.page-template-template-coming-soon .fy-navigation-container,
body.page-template-template-page-coming-soon .fy-navigation-container {
    display: none
}

.fy-navigation>ul>li ul {
    opacity: 0;
    position: absolute;
    top: -1000vh;
    left: 0;
    width: 280px;
    min-width: 100%;
    margin-top: 20px;
    padding: 20px 0;
    z-index: 20;
    text-align: left;
    transition-property: opacity, margin-top;
    transition-duration: .3s;
    transition-timing-function: ease-out
}

.fy-navigation>ul>li ul li {
    display: block;
    position: relative;
    font-size: 15px
}

.fy-navigation>ul>li ul li a {
    position: relative;
    padding: 10px 20px;
    overflow: hidden;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    transition: all .3s ease-out 0s
}

@media screen and (min-width:1280px) and (max-width:1479px) {
    .fy-navigation>ul>li ul li a {
        padding-right: 16px;
        padding-left: 16px
    }
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .fy-navigation>ul>li ul li a {
        padding-right: 10px;
        padding-left: 10px
    }
}

@media screen and (min-width:1280px) and (max-width:1479px) {
    .fy-navigation>ul>li ul li.menu-item-has-children a,
    .fy-navigation>ul>li ul li.page_item_has_children a {
        padding-right: 40px
    }
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .fy-navigation>ul>li ul li.menu-item-has-children a,
    .fy-navigation>ul>li ul li.page_item_has_children a {
        padding-right: 40px
    }
}

.fy-navigation>ul>li ul li.divider {
    position: relative
}

.fy-navigation>ul>li ul li.divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: calc(100% - (40px));
    height: 1px;
    z-index: -1;
    margin-top: -1px;
    background-color: rgba(50, 50, 62, 0.2);
    transition: all .3s ease-out 0s
}

.fy-navigation>ul>li ul li.divider>a {
    text-indent: -999px;
    visibility: hidden;
    margin: 0;
    cursor: default
}

.fy-navigation>ul>li ul li.divider>a:before {
    display: none
}

.fy-navigation>ul>li ul li:hover>ul,
.fy-navigation>ul>li ul li.focus>ul {
    opacity: 1;
    top: 100%
}

.fy-navigation>ul>li:hover>ul,
.fy-navigation>ul>li.focus>ul {
    opacity: 1;
    top: 100%;
    margin-top: 0
}

.fy-navigation>ul>li>ul>li:hover>ul,
.fy-navigation>ul>li>ul>li.focus>ul {
    left: 100%;
    top: -20px;
    margin-top: 0;
    margin-left: -20px;
    z-index: 20
}

@media screen and (max-width:1023px) {
    .fy-navigation-container,
    .fy-bar-navigation-container {
        opacity: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        padding: 80px;
        overflow-x: hidden;
        overflow-y: auto;
        text-align: center;
        z-index: 70;
        transform: translateX(100%);
        transition-property: opacity;
        transition-duration: .6s;
        transition-timing-function: ease-out;
        -webkit-overflow-scrolling: touch
    }
    .ios .fy-navigation-container,
    .ipad .fy-navigation-container,
    .iphone .fy-navigation-container,
    .ios .fy-bar-navigation-container,
    .ipad .fy-bar-navigation-container,
    .iphone .fy-bar-navigation-container {
        overflow-y: scroll
    }
    .fy-navigation {
        display: block;
        height: auto;
        padding: 0;
        text-align: center !important
    }
    .fy-navigation>ul {
        opacity: 0;
        float: none;
        display: inline-block;
        position: relative;
        left: 0 !important;
        min-width: 0;
        margin: 0 auto;
        transition: all .6s ease-out 0s
    }
    .fy-navigation>ul:before {
        display: none
    }
    .fy-navigation>ul>li {
        display: block;
        width: 100%;
        margin: 0;
        text-align: left
    }
    .fy-navigation>ul>li>a {
        display: inline-block;
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: normal
    }
    .fy-navigation>ul>li>a[href='#'] {
        cursor: default
    }
    .fy-navigation>ul>li.important>a {
        padding-right: 20px;
        padding-left: 20px
    }
    .fy-navigation>ul>li.right {
        text-align: left
    }
    .fy-navigation>ul>li ul {
        opacity: 1;
        display: block;
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        padding: 5px 0;
        margin-top: 0 !important;
        margin-bottom: 0;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
        min-width: 0;
        text-align: center
    }
    .fy-navigation>ul>li ul li {
        border: 0;
        text-align: left !important
    }
    .fy-navigation>ul>li ul li.menu-item-has-children:before,
    .fy-navigation>ul>li ul li.page_item_has_children:before {
        display: none
    }
    .fy-navigation>ul>li ul li ul {
        padding: 5px 0 5px 20px
    }
    .fy-navigation>ul>li ul li a {
        display: block
    }
    .fy-navigation>ul>li ul li.important>a {
        padding-right: 20px;
        padding-left: 20px
    }
    .fy-navigation>ul>li ul li.right {
        text-align: left
    }
    .fy-navigation>ul>li ul li.divider:before {
        left: 0;
        width: 100%
    }
    .fy-navigation>ul>li ul li ul {
        margin-top: 20px
    }
    .fy-navigation>ul>li.current-menu-item>ul,
    .fy-navigation>ul>li.current-menu-parent>ul,
    .fy-navigation>ul>li.current_page_item>ul,
    .fy-navigation>ul>li.current_page_parent>ul {
        display: block
    }
    .fy-navigation-trigger,
    .fy-bar-navigation-trigger {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center
    }
    .fy-navigation-close,
    .fy-bar-navigation-close {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center
    }
}

body.navigation-mobile-enabled .fy-navigation-container,
body.navigation-mobile-enabled .fy-bar-navigation-container {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: 80px;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: center;
    z-index: 70;
    transform: translateX(100%);
    transition-property: opacity;
    transition-duration: .6s;
    transition-timing-function: ease-out;
    -webkit-overflow-scrolling: touch
}

.ios body.navigation-mobile-enabled .fy-navigation-container,
.ipad body.navigation-mobile-enabled .fy-navigation-container,
.iphone body.navigation-mobile-enabled .fy-navigation-container,
.ios body.navigation-mobile-enabled .fy-bar-navigation-container,
.ipad body.navigation-mobile-enabled .fy-bar-navigation-container,
.iphone body.navigation-mobile-enabled .fy-bar-navigation-container {
    overflow-y: scroll
}

body.navigation-mobile-enabled .fy-navigation {
    display: block;
    height: auto;
    padding: 0;
    text-align: center !important
}

body.navigation-mobile-enabled .fy-navigation>ul {
    opacity: 0;
    float: none;
    display: inline-block;
    position: relative;
    left: 0 !important;
    min-width: 0;
    margin: 0 auto;
    transition: all .6s ease-out 0s
}

body.navigation-mobile-enabled .fy-navigation>ul:before {
    display: none
}

body.navigation-mobile-enabled .fy-navigation>ul>li {
    display: block;
    width: 100%;
    margin: 0;
    text-align: left
}

body.navigation-mobile-enabled .fy-navigation>ul>li>a {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: normal
}

body.navigation-mobile-enabled .fy-navigation>ul>li>a[href='#'] {
    cursor: default
}

body.navigation-mobile-enabled .fy-navigation>ul>li.important>a {
    padding-right: 20px;
    padding-left: 20px
}

body.navigation-mobile-enabled .fy-navigation>ul>li.right {
    text-align: left
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul {
    opacity: 1;
    display: block;
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding: 5px 0;
    margin-top: 0 !important;
    margin-bottom: 0;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    min-width: 0;
    text-align: center
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li {
    border: 0;
    text-align: left !important
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li.menu-item-has-children:before,
body.navigation-mobile-enabled .fy-navigation>ul>li ul li.page_item_has_children:before {
    display: none
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li ul {
    padding: 5px 0 5px 20px
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li a {
    display: block
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li.important>a {
    padding-right: 20px;
    padding-left: 20px
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li.right {
    text-align: left
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li.divider:before {
    left: 0;
    width: 100%
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li ul {
    margin-top: 20px
}

body.navigation-mobile-enabled .fy-navigation>ul>li.current-menu-item>ul,
body.navigation-mobile-enabled .fy-navigation>ul>li.current-menu-parent>ul,
body.navigation-mobile-enabled .fy-navigation>ul>li.current_page_item>ul,
body.navigation-mobile-enabled .fy-navigation>ul>li.current_page_parent>ul {
    display: block
}

body.navigation-mobile-enabled .fy-navigation-trigger,
body.navigation-mobile-enabled .fy-bar-navigation-trigger {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

body.navigation-mobile-enabled .fy-navigation-close,
body.navigation-mobile-enabled .fy-bar-navigation-close {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

@media screen and (max-width:481px) {
    .fy-navigation-container,
    .fy-bar-navigation-container {
        padding-right: 40px;
        padding-left: 40px
    }
    .fy-navigation-container>.fy-navigation>ul,
    .fy-bar-navigation-container>.fy-navigation>ul {
        max-width: 100%;
        padding: 0;
        margin: 0
    }
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical>.swiper-wrapper {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0, 0, 0)
}

.swiper-container-multirow>.swiper-wrapper {
    -webkit-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-plan>.swiper-wrapper {
    margin: 0 auto;
    transition-timing-function: ease-out
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0
}

.swiper-container-fade .swiper-slide {
    opacity: 0 !important
}

.swiper-container-fade .swiper-slide.swiper-slide-active {
    opacity: 1 !important
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-wp8-horizontal {
    touch-action: pan-y
}

.swiper-wp8-vertical {
    touch-action: pan-x
}

.swiper-container-fade.swiper-container-free-plan .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition: opacity .3s ease-out 0s
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.fy-slideshow {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.fy-slideshow .fy-slideshow-wrapper {
    overflow: visible;
    transition-timing-function: ease !important
}

.fy-slideshow .fy-slide {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px
}

.fy-slideshow .fy-slide .fy-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transition: all .3s ease-out 0s
}

.fy-slideshow .fy-slide .fy-slide-background:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background-color: rgba(100, 75, 175, 0.2);
    will-change: transform;
    transition: all .3s ease-out 0s
}

.fy-slideshow .fy-slide .fy-slide-background .fy-pattern {
    z-index: 30;
    will-change: transform
}

.fy-slideshow .fy-slide .fy-slide-background.has-no-image:before {
    background-color: transparent
}

.fy-slideshow .fy-slide .fy-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #fa6e78;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transition: all .3s ease-out 0s
}

.fy-slideshow .fy-slide .fy-slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transition: all .3s ease-out 0s
}

.fy-slideshow .fy-slide .fy-slide-video:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    will-change: transform;
    background-color: rgba(100, 75, 175, 0.2)
}

.fy-slideshow .fy-slide .fy-slide-video .fy-pattern {
    z-index: 30
}

.fy-slideshow .fy-slide .fy-slide-video .fy-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.fy-slideshow .fy-slide .fy-video-controls {
    position: absolute;
    top: auto;
    bottom: 100%;
    z-index: 30;
    margin-bottom: -20px;
    transform: translate(-50%, 0)
}

.fy-slideshow .fy-slide .fy-video-controls .fy-button {
    color: #fff
}

.fy-slideshow .fy-slide .fy-video-controls .fy-button:before {
    display: none
}

.fy-slideshow .fy-slide.fy-slide-layout-split-v .fy-slide-background,
.fy-slideshow .fy-slide.fy-slide-layout-split-v .fy-slide-video,
.fy-slideshow .fy-slide.fy-slide-layout-split-v .fy-loading,
.fy-slideshow .fy-slide.fy-slide-layout-split-v-2 .fy-slide-background,
.fy-slideshow .fy-slide.fy-slide-layout-split-v-2 .fy-slide-video,
.fy-slideshow .fy-slide.fy-slide-layout-split-v-2 .fy-loading {
    width: 50%;
    left: auto;
    right: 0
}

@media screen and (max-width:1023px) {
    .fy-slideshow .fy-slide.fy-slide-layout-split-v .fy-slide-background,
    .fy-slideshow .fy-slide.fy-slide-layout-split-v .fy-slide-video,
    .fy-slideshow .fy-slide.fy-slide-layout-split-v .fy-loading,
    .fy-slideshow .fy-slide.fy-slide-layout-split-v-2 .fy-slide-background,
    .fy-slideshow .fy-slide.fy-slide-layout-split-v-2 .fy-slide-video,
    .fy-slideshow .fy-slide.fy-slide-layout-split-v-2 .fy-loading {
        width: 100%
    }
}

.fy-slideshow .fy-slide.fy-slide-layout-split-v-2 .fy-slide-background,
.fy-slideshow .fy-slide.fy-slide-layout-split-v-2 .fy-slide-video,
.fy-slideshow .fy-slide.fy-slide-layout-split-v-2 .fy-loading {
    width: 70%
}

@media screen and (max-width:1023px) {
    .fy-slideshow .fy-slide.fy-slide-layout-split-v-2 .fy-slide-background,
    .fy-slideshow .fy-slide.fy-slide-layout-split-v-2 .fy-slide-video,
    .fy-slideshow .fy-slide.fy-slide-layout-split-v-2 .fy-loading {
        width: 100%
    }
}

.fy-slideshow .fy-loading {
    opacity: 1;
    top: 0;
    visibility: visible;
    z-index: 0;
    color: rgba(255, 255, 255, 0.5);
    background-color: transparent;
    transition: opacity .3s ease-out 0s
}

.fy-slideshow .fy-loading .fy-spinner {
    position: absolute;
    top: auto;
    left: auto;
    right: 20px;
    bottom: 20px;
    border-left-color: currentColor
}

.fy-slideshow .swiper-lazy {
    opacity: 0
}

.fy-slideshow .swiper-lazy.swiper-lazy-loaded {
    opacity: 1
}

.fy-slideshow .swiper-lazy.swiper-lazy-loaded .fy-loading,
.fy-slideshow .swiper-lazy.swiper-lazy-loaded+.fy-loading {
    opacity: 0
}

@media screen and (max-width:1279px) {
    body.iphone .fy-slideshow-container {
        height: 100vh
    }
}

.fy-caption-centerer {
    display: block;
    width: 1480px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 30;
    user-select: none;
    transform: translate(-50%, -50%)
}

@media screen and (max-width:1640px) {
    .fy-caption-centerer {
        width: 100%;
        padding-right: 80px;
        padding-left: 80px
    }
}

@media screen and (max-width:1279px) {
    .fy-caption-centerer {
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (max-width:481px) {
    .fy-caption-centerer {
        padding-right: 20px;
        padding-left: 20px
    }
}

@media screen and (max-width:1479px) {
    .fy-caption-centerer {
        padding: 0 80px
    }
}

@media screen and (max-width:767px) {
    .fy-caption-centerer {
        padding: 0 60px
    }
}

.fy-caption {
    display: inline-block;
    position: relative;
    width: 60%;
    padding: 40px 0;
    color: #fff;
    transition: all .6s ease-out .6s
}

@media screen and (max-width:1479px) {
    .fy-caption {
        width: 70%
    }
}

@media screen and (max-width:1279px) {
    .fy-caption {
        width: 80%
    }
}

@media screen and (max-width:1023px) {
    .fy-caption {
        width: 100%
    }
}

.fy-caption .fy-caption-header {
    display: block;
    position: relative;
    z-index: 1;
    color: #fff
}

.fy-caption .fy-caption-header h2,
.fy-caption .fy-caption-header h3 {
    margin: 0;
    font-size: 53px;
    line-height: 1
}

@media screen and (max-width:1279px) {
    .fy-caption .fy-caption-header h2,
    .fy-caption .fy-caption-header h3 {
        font-size: 46px
    }
}

@media screen and (max-width:767px) {
    .fy-caption .fy-caption-header h2,
    .fy-caption .fy-caption-header h3 {
        font-size: 38px
    }
}

@media screen and (max-width:481px) {
    .fy-caption .fy-caption-header h2,
    .fy-caption .fy-caption-header h3 {
        font-size: 32px
    }
}

.fy-caption .fy-caption-header h2 a,
.fy-caption .fy-caption-header h3 a {
    color: currentColor
}

.fy-caption .fy-caption-header h2 a span,
.fy-caption .fy-caption-header h3 a span {
    border-bottom: 1px solid transparent;
    transition: all .3s ease-out 0s
}

.fy-caption .fy-caption-header h2 a:hover,
.fy-caption .fy-caption-header h2 a:focus,
.fy-caption .fy-caption-header h3 a:hover,
.fy-caption .fy-caption-header h3 a:focus {
    color: #fff
}

.fy-caption .fy-caption-header h2 a:hover span,
.fy-caption .fy-caption-header h2 a:focus span,
.fy-caption .fy-caption-header h3 a:hover span,
.fy-caption .fy-caption-header h3 a:focus span {
    border-bottom-color: #fff
}

.fy-caption .fy-caption-header .fy-caption-subtitle {
    display: block
}

.fy-caption .fy-caption-content {
    display: block;
    position: relative;
    margin-top: 0;
    z-index: 1;
    font-size: 18px;
    color: #fff
}

@media screen and (max-width:1023px) {
    .fy-caption .fy-caption-content {
        font-size: 16px
    }
}

.fy-caption .fy-caption-content p {
    margin: 0;
    font-size: inherit
}

.fy-caption .fy-caption-content a {
    color: inherit;
    border-bottom: 2px solid currentColor
}

.fy-caption .fy-caption-content a:hover,
.fy-caption .fy-caption-content a:focus {
    color: #fff;
    border-bottom-color: #fa6e78
}

.fy-caption .fy-caption-header+.fy-caption-content {
    margin-top: 10px
}

.fy-caption .fy-caption-header+.fy-caption-meta {
    margin-top: 10px
}

.fy-caption .fy-caption-meta a {
    color: rgba(255, 255, 255, 0.4);
    border-color: transparent
}

.fy-caption .fy-caption-meta a:hover,
.fy-caption .fy-caption-meta a:focus {
    color: #fff
}

.fy-caption .fy-caption-button {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-top: 30px
}

.fy-caption .fy-caption-button.fy-button-bordered,
.fy-caption .fy-caption-button .fy-button-bordered {
    color: #fff;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2)
}

.fy-caption .fy-caption-button.fy-button-bordered:hover,
.fy-caption .fy-caption-button.fy-button-bordered:focus,
.fy-caption .fy-caption-button .fy-button-bordered:hover,
.fy-caption .fy-caption-button .fy-button-bordered:focus {
    color: #fff;
    background-color: transparent;
    border-color: #fff
}

.fy-caption .fy-caption-button+.fy-caption-button {
    margin-left: 20px
}

.fy-caption .fy-caption-date {
    margin-top: 20px
}

.fy-caption.fy-caption-bordered,
.fy-caption.fy-caption-solid {
    padding: 60px 40px;
    overflow: hidden;
    width: 50%;
    border-radius: 4px
}

@media screen and (max-width:1479px) {
    .fy-caption.fy-caption-bordered,
    .fy-caption.fy-caption-solid {
        width: 70%
    }
}

@media screen and (max-width:1279px) {
    .fy-caption.fy-caption-bordered,
    .fy-caption.fy-caption-solid {
        width: 80%
    }
}

@media screen and (max-width:1023px) {
    .fy-caption.fy-caption-bordered,
    .fy-caption.fy-caption-solid {
        width: 100%
    }
}

.fy-caption.fy-caption-bordered .fy-caption-header h2,
.fy-caption.fy-caption-bordered .fy-caption-header h3,
.fy-caption.fy-caption-solid .fy-caption-header h2,
.fy-caption.fy-caption-solid .fy-caption-header h3 {
    font-size: 46px
}

@media screen and (max-width:1279px) {
    .fy-caption.fy-caption-bordered .fy-caption-header h2,
    .fy-caption.fy-caption-bordered .fy-caption-header h3,
    .fy-caption.fy-caption-solid .fy-caption-header h2,
    .fy-caption.fy-caption-solid .fy-caption-header h3 {
        font-size: 38px
    }
}

@media screen and (max-width:767px) {
    .fy-caption.fy-caption-bordered .fy-caption-header h2,
    .fy-caption.fy-caption-bordered .fy-caption-header h3,
    .fy-caption.fy-caption-solid .fy-caption-header h2,
    .fy-caption.fy-caption-solid .fy-caption-header h3 {
        font-size: 32px
    }
}

@media screen and (max-width:481px) {
    .fy-caption.fy-caption-bordered .fy-caption-header h2,
    .fy-caption.fy-caption-bordered .fy-caption-header h3,
    .fy-caption.fy-caption-solid .fy-caption-header h2,
    .fy-caption.fy-caption-solid .fy-caption-header h3 {
        font-size: 25px
    }
}

.fy-caption.fy-caption-bordered .fy-caption-content,
.fy-caption.fy-caption-solid .fy-caption-content {
    font-size: 16px
}

@media screen and (max-width:1023px) {
    .fy-caption.fy-caption-bordered .fy-caption-content,
    .fy-caption.fy-caption-solid .fy-caption-content {
        font-size: 15px
    }
}

.fy-caption.fy-caption-bordered .fy-video-controls,
.fy-caption.fy-caption-solid .fy-video-controls {
    bottom: auto;
    top: 20px
}

.fy-caption.fy-caption-bordered {
    border: 1px solid #fff
}

.fy-caption.fy-caption-solid {
    background-color: #fa6e78;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15)
}

.shadow-disabled .fy-caption.fy-caption-solid {
    box-shadow: none
}

.fy-slide.fy-slide-caption-position-left,
.fy-slide.fy-slide-caption-position-h-left {
    text-align: left
}

.fy-slide.fy-slide-caption-position-left .fy-video-controls,
.fy-slide.fy-slide-caption-position-h-left .fy-video-controls {
    left: 0;
    transform: translateX(0)
}

.fy-slide.fy-slide-caption-position-left .fy-caption.fy-caption-solid .fy-video-controls,
.fy-slide.fy-slide-caption-position-h-left .fy-caption.fy-caption-solid .fy-video-controls {
    left: 40px
}

.fy-slide.fy-slide-caption-position-center,
.fy-slide.fy-slide-caption-position-h-center {
    text-align: center
}

.fy-slide.fy-slide-caption-position-right,
.fy-slide.fy-slide-caption-position-h-right {
    text-align: right
}

.fy-slide.fy-slide-caption-position-right .fy-video-controls,
.fy-slide.fy-slide-caption-position-h-right .fy-video-controls {
    left: auto;
    right: 0;
    transform: translateX(0)
}

.fy-slide.fy-slide-caption-position-right .fy-caption.fy-caption-solid .fy-video-controls,
.fy-slide.fy-slide-caption-position-h-right .fy-caption.fy-caption-solid .fy-video-controls {
    right: 40px
}

.fy-slide.fy-slide-caption-position-v-top .fy-caption-centerer {
    top: 40px;
    bottom: auto;
    transform: translate(-50%, 0)
}

.fy-slide.fy-slide-caption-position-v-bottom .fy-caption-centerer {
    top: auto;
    bottom: 40px;
    transform: translate(-50%, 0)
}

.fy-slide.fy-slide-layout-split-v .fy-caption-centerer {
    width: 50%;
    left: 0;
    padding-right: 160px;
    padding-left: 160px;
    transform: translate(0, -50%)
}

@media screen and (max-width:1279px) {
    .fy-slide.fy-slide-layout-split-v .fy-caption-centerer {
        padding-right: 80px;
        padding-left: 80px
    }
}

@media screen and (max-width:1023px) {
    .fy-slide.fy-slide-layout-split-v .fy-caption-centerer {
        width: 100%
    }
}

@media screen and (max-width:767px) {
    .fy-slide.fy-slide-layout-split-v .fy-caption-centerer {
        padding-right: 60px;
        padding-left: 60px
    }
}

.fy-slide.fy-slide-layout-split-v .fy-caption-centerer.fy-slide-caption-position-v-top,
.fy-slide.fy-slide-layout-split-v .fy-caption-centerer.fy-slide-caption-position-v-bottom {
    transform: translate(0, 0)
}

.fy-slide.fy-slide-layout-split-v .fy-caption {
    width: 100%;
    max-width: 100%
}

.fy-slide.fy-slide-layout-split-v .fy-caption .fy-caption-header h2,
.fy-slide.fy-slide-layout-split-v .fy-caption .fy-caption-header h3 {
    font-size: 46px
}

@media screen and (max-width:1279px) {
    .fy-slide.fy-slide-layout-split-v .fy-caption .fy-caption-header h2,
    .fy-slide.fy-slide-layout-split-v .fy-caption .fy-caption-header h3 {
        font-size: 38px
    }
}

@media screen and (max-width:767px) {
    .fy-slide.fy-slide-layout-split-v .fy-caption .fy-caption-header h2,
    .fy-slide.fy-slide-layout-split-v .fy-caption .fy-caption-header h3 {
        font-size: 32px
    }
}

.fy-slideshow.fy-more-slides-per-view .fy-caption-centerer {
    width: 100%;
    padding: 0 80px
}

@media screen and (max-width:1640px) {
    .fy-slideshow.fy-more-slides-per-view .fy-caption-centerer {
        width: 100%;
        padding: 0 80px
    }
}

@media screen and (max-width:1599px) {
    .fy-slideshow.fy-more-slides-per-view .fy-caption-centerer {
        padding: 0 80px
    }
}

@media screen and (max-width:1479px) {
    .fy-slideshow.fy-more-slides-per-view .fy-caption-centerer {
        padding: 0 80px
    }
}

@media screen and (max-width:767px) {
    .fy-slideshow.fy-more-slides-per-view .fy-caption-centerer {
        padding: 0 60px
    }
}

.fy-slideshow.fy-more-slides-per-view .fy-caption {
    width: 100%;
    max-width: 100%
}

.fy-slideshow.fy-more-slides-per-view .fy-caption .fy-caption-header h2,
.fy-slideshow.fy-more-slides-per-view .fy-caption .fy-caption-header h3 {
    font-size: 38px
}

@media screen and (min-width:1280px) and (max-width:1599px) {
    .fy-slideshow.fy-more-slides-per-view .fy-caption .fy-caption-header h2,
    .fy-slideshow.fy-more-slides-per-view .fy-caption .fy-caption-header h3 {
        font-size: 32px
    }
}

@media screen and (max-width:1279px) {
    .fy-slideshow.fy-more-slides-per-view .fy-caption .fy-caption-header h2,
    .fy-slideshow.fy-more-slides-per-view .fy-caption .fy-caption-header h3 {
        font-size: 32px
    }
}

.fy-slideshow.fy-more-slides-per-view .fy-caption .fy-caption-content p {
    font-size: 16px
}

.fy-slideshow.fy-more-slides-per-view .fy-caption.fy-caption-solid {
    width: 100%
}

.fy-slideshow.fy-more-slides-per-view .fy-slide.fy-slide-layout-split-v .fy-caption-centerer {
    width: 100%
}

.fy-slideshow-prev,
.fy-slideshow-next {
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 64px;
    margin-top: -32px;
    cursor: pointer;
    outline: 0;
    z-index: 20;
    transition: all .3s ease-out 0s;
    color: #fff;
    background-color: transparent
}

@media screen and (max-width:767px) {
    .fy-slideshow-prev,
    .fy-slideshow-next {
        display: none
    }
}

.fy-slideshow-prev:hover,
.fy-slideshow-prev:active,
.fy-slideshow-next:hover,
.fy-slideshow-next:active {
    color: #fff
}

.fy-slideshow-prev.swiper-button-disabled,
.fy-slideshow-next.swiper-button-disabled {
    cursor: auto;
    pointer-events: auto;
    color: #fff
}

.fy-slideshow-prev {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    right: auto;
    left: 0;
    margin-right: 10px
}

.fy-slideshow-next {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    left: auto;
    right: 0;
    margin-left: 10px
}

.fy-slideshow:hover .fy-slideshow-prev,
.fy-slideshow:hover .fy-slideshow-next {
    opacity: 1
}

.fy-slideshow:hover .fy-slideshow-prev.swiper-button-disabled,
.fy-slideshow:hover .fy-slideshow-next.swiper-button-disabled {
    opacity: .2
}

.fy-slideshow:hover .fy-slideshow-prev {
    margin-left: 0
}

.fy-slideshow:hover .fy-slideshow-next {
    margin-right: 0
}

.slideshow-caption-solid .fy-slideshow-prev:before,
.slideshow-caption-solid .fy-slideshow-next:before {
    width: 100%;
    background-color: #fa6e78
}

.fy-slideshow.fy-carousel {
    background-color: transparent
}

.fy-slideshow.fy-carousel.fy-carousel-small {
    max-height: 60vh
}

.fy-slideshow.fy-carousel.fy-carousel-small .fy-slide {
    min-height: 0
}

.fy-slideshow.fy-carousel .fy-slide {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start
}

.fy-slideshow.fy-carousel .fy-slide .fy-slide-background {
    overflow: hidden
}

.fy-slideshow.fy-carousel .fy-slide .fy-caption-centerer {
    position: relative;
    width: 100%;
    top: 0 !important;
    left: 0;
    padding: 0 40px;
    margin: 0;
    transform: translate(0, 0)
}

.fy-slideshow.fy-carousel .fy-slide .fy-caption {
    width: 100%;
    padding: 0;
    text-align: left
}

.fy-slideshow.fy-carousel .fy-slide .fy-caption .fy-caption-header h1,
.fy-slideshow.fy-carousel .fy-slide .fy-caption .fy-caption-header h2,
.fy-slideshow.fy-carousel .fy-slide .fy-caption .fy-caption-header h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.8
}

.fy-slideshow.fy-carousel .fy-slide .fy-caption .fy-caption-header h1>span,
.fy-slideshow.fy-carousel .fy-slide .fy-caption .fy-caption-header h2>span,
.fy-slideshow.fy-carousel .fy-slide .fy-caption .fy-caption-header h3>span {
    border-bottom: 1px solid transparent;
    transition: all .3s ease-out 0s
}

.fy-slideshow.fy-carousel .fy-slide .fy-caption .fy-caption-header .fy-caption-date {
    display: block;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    transition: all .3s ease-out 0s
}

.fy-slideshow.fy-carousel .fy-slideshow-prev,
.fy-slideshow.fy-carousel .fy-slideshow-next {
    top: 50%;
    width: 28px
}

@media screen and (max-width:767px) {
    .fy-slideshow.fy-carousel .fy-slideshow-prev,
    .fy-slideshow.fy-carousel .fy-slideshow-next {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center
    }
}

.fy-slideshow.fy-carousel .fy-slideshow-prev {
    left: 0
}

.fy-slideshow.fy-carousel .fy-slideshow-next {
    right: 0
}

.pswp {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 1500;
    -webkit-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    outline: 0
}

.pswp * {
    box-sizing: border-box
}

.pswp img {
    max-width: none
}

.pswp--animate_opacity {
    opacity: .001;
    will-change: opacity;
    transition: opacity .3s ease-out 0s
}

.pswp--open {
    display: block
}

.pswp--zoom-allowed .pswp__img {
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}

.pswp--zoomed-in .pswp__img {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab
}

.pswp--dragging .pswp__img {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing
}

.pswp__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    will-change: opacity
}

.pswp__scroll-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.pswp__container,
.pswp__zoom-wrap {
    -ms-touch-action: none;
    touch-action: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.pswp__container,
.pswp__img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

.pswp__zoom-wrap {
    position: absolute;
    width: 100%;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    transition: transform .3s ease-out
}

.pswp__bg {
    will-change: opacity;
    transition: opacity .3s ease-out 0s
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
    -webkit-transition: none;
    transition: none
}

.pswp__container,
.pswp__zoom-wrap {
    -webkit-backface-visibility: hidden;
    will-change: transform
}

.pswp__item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden
}

.pswp__img {
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    left: 0
}

.pswp__img--placeholder {
    -webkit-backface-visibility: hidden
}

.pswp__img--placeholder--blank {
    background: #fff
}

.pswp--ie .pswp__img {
    width: 100% !important;
    height: auto !important;
    left: 0;
    top: 0
}

.pswp__error-msg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: rgba(50, 50, 62, 0.8)
}

.pswp__error-msg a {
    color: rgba(50, 50, 62, 0.8);
    text-decoration: underline
}

.pswp {
    position: fixed;
    height: 100%;
    z-index: 100100100100100;
    max-height: 100vh;
    transition: all .3s ease-out 0s
}

.pswp .pswp__bg {
    background-color: #fff
}

.pswp.pswp--fs {
    border-left-width: 40px;
    border-right-width: 40px
}

.pswp__caption,
.pswp__top-bar {
    background-color: #fff !important
}

.pswp__button {
    width: 60px;
    height: 60px;
    float: right;
    position: relative;
    cursor: pointer;
    overflow: visible;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    opacity: .6;
    transition: opacity .3s ease-out 0s;
    outline: 0;
    -webkit-appearance: none;
    color: #32323e;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px 24px
}

.pswp__button:focus,
.pswp__button:hover {
    opacity: 1;
    background-position: center center !important;
    background-color: #fff !important
}

.pswp__button:active {
    outline: 0;
    opacity: 1
}

.pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.pswp__button.pswp__button--fs {
    display: none
}

.pswp__button.pswp__button--zoom {
    display: none
}

.pswp__button.pswp__button--arrow--left,
.pswp__button.pswp__button--arrow--right {
    opacity: 1;
    position: absolute;
    height: calc(100% - (60px*2));
    top: 60px;
    color: #32323e;
    background-color: #fff !important;
    z-index: 0
}

.pswp__button.pswp__button--arrow--left:before,
.pswp__button.pswp__button--arrow--right:before {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    opacity: .6;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 36px 36px;
    transition: all .3s ease-out 0s
}

.pswp__button.pswp__button--arrow--left:focus,
.pswp__button.pswp__button--arrow--left:hover,
.pswp__button.pswp__button--arrow--right:focus,
.pswp__button.pswp__button--arrow--right:hover {
    opacity: 1;
    background-color: #fff
}

.pswp__button.pswp__button--arrow--left:focus:before,
.pswp__button.pswp__button--arrow--left:hover:before,
.pswp__button.pswp__button--arrow--right:focus:before,
.pswp__button.pswp__button--arrow--right:hover:before {
    opacity: 1
}

.pswp__button.pswp__button--arrow--left {
    left: 0;
    border-left: 0
}

.pswp__button.pswp__button--arrow--right {
    right: 0;
    border-right: 0
}

.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
    visibility: hidden
}

.pswp--supports-fs .pswp__button.pswp__button--fs {
    display: block
}

.pswp--fs .pswp__button.pswp__button--fs:focus,
.pswp--fs .pswp__button.pswp__button--fs:hover {
    opacity: 1;
    background-position: center center !important;
    background-color: transparent !important
}

.pswp--zoom-allowed .pswp__button.pswp__button--zoom {
    display: block
}

.pswp__counter,
.pswp__share-modal {
    user-select: none
}

.pswp__share-modal {
    opacity: 0;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    z-index: 1600;
    background-color: rgba(255, 255, 255, 0.6);
    transition: opacity .3s ease-out 0s;
    -webkit-backface-visibility: hidden;
    will-change: opacity
}

.pswp__share-modal--hidden {
    display: none
}

.pswp__share-tooltip {
    position: absolute;
    display: block;
    background: #fff;
    top: 60px;
    right: 44px;
    width: auto;
    z-index: 100100100100;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    transition: transform .3s;
    -webkit-backface-visibility: hidden;
    will-change: transform
}

.shadow-disabled .pswp__share-tooltip {
    box-shadow: none
}

.pswp__share-tooltip a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6)
}

.pswp__share-tooltip a:hover,
.pswp__share-tooltip a:focus {
    color: rgba(255, 255, 255, 0.6);
    background-color: #32323e
}

.pswp__share-tooltip a:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px
}

.pswp__share-tooltip a:last-child {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.pswp__share-modal--fade-in {
    opacity: 1
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
    transform: translateY(0)
}

.pswp__counter {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 60px;
    height: 60px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 60px;
    text-align: center;
    color: rgba(50, 50, 62, 0.4)
}

.pswp__caption {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 60px;
    padding: 20px 0;
    font-size: 15px;
    color: rgba(50, 50, 62, 0.6);
    background-color: #fff
}

.pswp__caption a {
    color: rgba(50, 50, 62, 0.6)
}

.pswp__caption .pswp__caption-terms {
    display: block;
    margin-bottom: 4px;
    border-radius: 0
}

.pswp__caption .pswp__caption-title {
    display: block;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0
}

.pswp__caption .pswp__caption-prices {
    display: block;
    margin-top: 4px
}

.pswp__caption small {
    font-size: 14px;
    color: rgba(50, 50, 62, 0.6)
}

.pswp__caption__center {
    text-align: center;
    max-width: 767px;
    padding: 0 40px;
    margin: 0 auto;
    color: rgba(50, 50, 62, 0.6)
}

.pswp__caption--empty {
    display: none
}

.pswp__caption--fake {
    visibility: hidden
}

.pswp__preloader {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
    will-change: opacity;
    direction: ltr
}

.pswp__preloader__icn {
    width: 24px;
    height: 24px;
    margin: 20px
}

.pswp__preloader--active {
    opacity: 1
}

.pswp__preloader--active .pswp__preloader__icn {
    background: url('../../../../themes/dox/images/photoswipe/preloader.gif') 0 0 no-repeat
}

.pswp--css_animation .pswp__preloader--active {
    opacity: 1
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
    animation: clockwise 500ms linear infinite
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
    animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite
}

.pswp--css_animation .pswp__preloader__icn {
    opacity: 1;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    background: none
}

.pswp--css_animation .pswp__preloader__cut {
    position: relative;
    width: 20px;
    height: 20px;
    overflow: hidden
}

.pswp--css_animation .pswp__preloader__donut {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    margin: 0;
    background: none;
    border: 2px solid rgba(50, 50, 62, 0.4);
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent
}

@media screen and (max-width:1024px) {
    .pswp__preloader {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        float: right
    }
}

@-webkit-keyframes clockwise {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes clockwise {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes donut-rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    50% {
        -webkit-transform: rotate(-140deg);
        transform: rotate(-140deg)
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

@keyframes donut-rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    50% {
        -webkit-transform: rotate(-140deg);
        transform: rotate(-140deg)
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

.pswp__ui {
    -webkit-font-smoothing: antialiased;
    visibility: visible;
    opacity: 1;
    z-index: 1600
}

.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    width: 100%
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    -webkit-backface-visibility: hidden;
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1)
}

.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    visibility: visible
}

.pswp__top-bar,
.pswp__caption {
    background-color: transparent
}

.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
    background-color: transparent
}

.pswp__ui--idle .pswp__top-bar {
    opacity: 0
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
    opacity: 0
}

.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
    opacity: .001
}

.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
    display: none
}

.pswp__element--disabled {
    display: none !important
}

.pswp--minimal--dark .pswp__top-bar {
    background: none
}

body.pswp-open .pace,
body.pswp-open .fy-page-loading,
body.pswp-open .fy-loading-page,
body.pswp-closing .pace,
body.pswp-closing .fy-page-loading,
body.pswp-closing .fy-loading-page {
    display: none
}

body.pswp-open .fy-container,
body.pswp-closing .fy-container {
    opacity: 1
}

.ui-datepicker {
    display: none
}

.fy-datepicker {
    display: none
}

.fy-datepicker .ui-helper-hidden {
    display: none
}

.fy-datepicker .ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px)
}

.fy-datepicker .ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none
}

.fy-datepicker .ui-state-disabled {
    cursor: default !important
}

.fy-datepicker .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat
}

.fy-datepicker .ui-widget-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.fy-datepicker .ui-priority-secondary,
.fy-datepicker .ui-widget-content .ui-priority-secondary,
.fy-datepicker .ui-widget-header .ui-priority-secondary {
    opacity: .6;
    filter: Alpha(Opacity=60);
    font-weight: normal
}

.fy-datepicker .ui-state-disabled,
.fy-datepicker .ui-widget-content .ui-state-disabled,
.fy-datepicker .ui-widget-header .ui-state-disabled {
    background-image: none
}

.fy-datepicker .ui-icon {
    display: block;
    width: 24px;
    height: 24px;
    text-indent: -99999px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all .3s ease-out 0s
}

.fy-datepicker .ui-state-hover .ui-icon,
.fy-datepicker .ui-state-focus .ui-icon {
    opacity: .6
}

.fy-datepicker .ui-datepicker-header {
    position: relative
}

.fy-datepicker .ui-datepicker-prev,
.fy-datepicker .ui-datepicker-next {
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px
}

.fy-datepicker .ui-datepicker-prev.ui-state-disabled,
.fy-datepicker .ui-datepicker-next.ui-state-disabled {
    opacity: .2
}

.fy-datepicker .ui-datepicker-prev.ui-state-disabled.ui-state-hover .ui-icon,
.fy-datepicker .ui-datepicker-prev.ui-state-disabled.ui-state-focus .ui-icon,
.fy-datepicker .ui-datepicker-next.ui-state-disabled.ui-state-hover .ui-icon,
.fy-datepicker .ui-datepicker-next.ui-state-disabled.ui-state-focus .ui-icon {
    opacity: 1
}

.fy-datepicker .ui-datepicker-prev-hover,
.fy-datepicker .ui-datepicker-next-hover {
    top: 50%
}

.fy-datepicker .ui-datepicker-prev {
    left: 0
}

.fy-datepicker .ui-datepicker-next {
    right: 0
}

.fy-datepicker .ui-datepicker-prev span,
.fy-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    top: 0;
    left: 0
}

.fy-datepicker select.ui-datepicker-month-year {
    width: 100%
}

.fy-datepicker select.ui-datepicker-month,
.fy-datepicker select.ui-datepicker-year {
    width: 49%
}

.fy-datepicker table {
    width: 100%;
    margin: 0;
    border-spacing: 0
}

.fy-datepicker table th {
    padding: 10px 20px;
    text-align: center;
    border: 0
}

.fy-datepicker table td {
    border: 0
}

.fy-datepicker table td a {
    border: 0
}

.fy-datepicker .ui-state-disabled .ui-state-default {
    background-color: transparent
}

.fy-datepicker .ui-state-disabled .ui-state-default:hover {
    background-color: transparent
}

.fy-datepicker td span,
.fy-datepicker td a {
    display: block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none
}

@media screen and (max-width:1023px) {
    .fy-datepicker td span,
    .fy-datepicker td a {
        padding: 5px 10px
    }
}

.fy-datepicker .ui-datepicker-buttonpane {
    padding: 0 20px;
    margin: 20px 0 0 0;
    background-image: none;
    border-left: 0;
    border-right: 0;
    border-bottom: 0
}

.fy-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: 20px;
    cursor: pointer;
    padding: 0 40px;
    width: auto;
    overflow: visible
}

.fy-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left
}

.fy-datepicker.ui-datepicker-multi {
    width: auto
}

.fy-datepicker.ui-datepicker-multi .ui-datepicker-group {
    float: left
}

.fy-datepicker.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto .4em
}

.fy-datepicker.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%
}

.fy-datepicker.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%
}

.fy-datepicker.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%
}

.fy-datepicker.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
    border-left-width: 0
}

.fy-datepicker.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0
}

.fy-datepicker.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left
}

.fy-datepicker.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0
}

.fy-datepicker.ui-datepicker-rtl {
    direction: rtl
}

.fy-datepicker.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto
}

.fy-datepicker.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto
}

.fy-datepicker.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px;
    left: auto
}

.fy-datepicker.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto
}

.fy-datepicker.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right
}

.fy-datepicker.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left
}

.fy-datepicker.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: right
}

.fy-datepicker.ui-datepicker-rtl .ui-datepicker-group {
    float: right
}

.fy-datepicker.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
    border-right-width: 0;
    border-left-width: 0
}

.fy-datepicker.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0;
    border-left-width: 0
}

.fy-datepicker .ui-datepicker-cover {
    display: none;
    position: absolute;
    z-index: -1;
    top: -4px;
    left: -4px;
    width: 200px;
    height: 200px
}

.ui-widget:active {
    outline: 0
}

.ui-helper-clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

* html .ui-helper-clearfix {
    height: 1%
}

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0)
}

.fy-datepicker {
    display: none;
    max-width: 600px;
    padding: 20px;
    z-index: 70 !important;
    color: #32323e;
    background-color: #fff
}

@media screen and (max-width:767px) {
    .fy-datepicker {
        width: 400px;
        max-width: 400px;
        padding: 10px
    }
}

@media screen and (max-width:481px) {
    .fy-datepicker {
        width: 284px;
        max-width: 284px;
        padding: 5px
    }
}

.fy-datepicker .ui-widget-header {
    padding: 40px 0;
    margin-top: -20px;
    color: #32323e;
    background-color: transparent
}

.fy-datepicker .ui-datepicker-title {
    text-align: center;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    line-height: 37px;
    color: #32323e
}

.fy-datepicker .ui-datepicker-calendar thead tr th {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: .025em;
    color: #644baf;
    background-color: transparent
}

.fy-datepicker .ui-datepicker-calendar tbody tr td {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 16px
}

.fy-datepicker .ui-datepicker-calendar tbody tr td.ui-state-disabled {
    color: rgba(50, 50, 62, 0.4);
    background-color: #fff
}

.fy-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-default {
    color: #32323e;
    background-color: transparent;
    border: 1px solid rgba(50, 50, 62, 0.2)
}

.fy-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-default:hover,
.fy-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-default:focus {
    color: #644baf;
    border-color: #644baf
}

.fy-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-default.ui-state-active {
    color: #fff;
    background-color: #644baf;
    border-color: transparent
}

.fy-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-default.ui-state-highlight {
    position: relative;
    color: #fff;
    background-color: #32323e;
    border-color: transparent
}

.fy-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-default.ui-state-highlight:before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #fff transparent transparent
}

.fy-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-default.ui-state-highlight.ui-state-active {
    background-color: #644baf
}

.fy-datepicker .ui-datepicker-calendar tbody tr:first-child td {
    border-top: 1px solid transparent
}

.fy-datepicker.fy-datepicker-inline {
    display: block;
    width: 100%;
    padding: 40px;
    margin: 0 0 40px
}

@media screen and (max-width:767px) {
    .fy-datepicker.fy-datepicker-inline {
        width: 100%;
        max-width: 100%
    }
}

@media screen and (max-width:481px) {
    .fy-datepicker.fy-datepicker-inline {
        width: 100%;
        max-width: 100%;
        padding: 20px
    }
}

.fy-datepicker.fy-datepicker-inline .ui-widget-header {
    padding: 40px 0;
    margin-top: -40px
}

.fy-datepicker.fy-datepicker-inline .ui-datepicker-title {
    font-size: 46px;
    line-height: 69px
}

.fy-datepicker.fy-datepicker-inline td span,
.fy-datepicker.fy-datepicker-inline td a {
    padding: 20px
}

.mejs-container {
    max-width: 100% !important;
    margin: 0 0 80px;
    background-color: #fff !important
}

.mejs-container audio,
.mejs-container video {
    background-color: #fff
}

.mejs-container a {
    border: 0 !important
}

.mejs-container .mejs-inner {
    display: block;
    height: 100%;
    overflow: hidden
}

.mejs-container .mejs-controls {
    opacity: 1;
    height: auto !important;
    padding: 0 !important;
    background: #fff !important;
    background-image: none;
    border: 10px solid transparent;
    user-select: none;
    transition: opacity .3s ease-out 0s
}

.mejs-container .mejs-controls .mejs-button {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 10px !important
}

.mejs-container .mejs-controls .mejs-button button {
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    background-position: center;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none
}

.mejs-container .mejs-controls .mejs-button button:hover,
.mejs-container .mejs-controls .mejs-button button:focus {
    background-color: transparent;
    box-shadow: none
}

.mejs-container .mejs-controls .mejs-playpause-button {
    position: relative;
    cursor: pointer
}

.mejs-container .mejs-controls .mejs-time {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px !important;
    overflow: visible;
    font-size: 14px;
    color: rgba(50, 50, 62, 0.4) !important
}

.mejs-container .mejs-controls .mejs-time-rail {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0;
    border-radius: 0
}

.mejs-container .mejs-controls .mejs-time-rail span:not(.mejs-time-float) {
    height: 4px
}

.mejs-container .mejs-controls .mejs-time-rail .mejs-time-slider {
    margin: 0;
    outline: 0
}

.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total {
    margin: 0 !important;
    background-color: rgba(50, 50, 62, 0.1) !important;
    border-radius: 0
}

.mejs-container .mejs-controls .mejs-time-rail .mejs-time-loaded {
    background-color: rgba(50, 50, 62, 0.1) !important;
    border-radius: 0;
    border-right: 2px solid #fff
}

.mejs-container .mejs-controls .mejs-time-rail .mejs-time-current {
    background-color: #644baf !important;
    border-radius: 0;
    border-right: 2px solid #fff
}

.mejs-container .mejs-controls .mejs-time-rail .mejs-time-hovered {
    background-color: rgba(50, 50, 62, 0.2) !important
}

.mejs-container .mejs-controls .mejs-time-rail .mejs-time-handle {
    display: none !important
}

.mejs-container .mejs-controls .mejs-time-rail .mejs-time-float {
    margin-left: 0 !important;
    margin-bottom: 10px !important;
    line-height: 1.8 !important;
    color: #fff !important;
    background-color: #32323e !important;
    border: 0 !important;
    border-radius: 4px !important
}

.mejs-container .mejs-controls .mejs-time-rail .mejs-time-float .mejs-time-float-corner {
    border-color: #32323e transparent transparent !important
}

.mejs-container .mejs-controls .mejs-volume-slider {
    background-color: #fff !important;
    border-radius: 4px;
    box-shadow: 0 16px 80px rgba(0, 0, 0, 0.2)
}

.shadow-disabled .mejs-container .mejs-controls .mejs-volume-slider {
    box-shadow: none
}

.mejs-container .mejs-controls .mejs-volume-slider .mejs-volume-total {
    background-color: rgba(50, 50, 62, 0.15) !important
}

.mejs-container .mejs-controls .mejs-volume-slider .mejs-volume-current {
    background-color: #32323e !important
}

.mejs-container .mejs-controls .mejs-volume-slider .mejs-volume-handle {
    background-color: #32323e !important;
    box-shadow: 0 16px 80px rgba(0, 0, 0, 0.2)
}

.shadow-disabled .mejs-container .mejs-controls .mejs-volume-slider .mejs-volume-handle {
    box-shadow: none
}

.mejs-container .mejs-controls .mejs-horizontal-volume-slider {
    width: 80px;
    margin-right: 20px;
    overflow: hidden
}

.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
    border-radius: 0;
    transition: background-color .3s ease-out 0s
}

.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
    height: 4px
}

.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
    top: 18px;
    width: 100%;
    background-color: rgba(50, 50, 62, 0.1)
}

.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
    box-sizing: border-box;
    background-color: rgba(50, 50, 62, 0.2);
    border-right: 2px solid #fff
}

.mejs-container .mejs-controls .mejs-horizontal-volume-slider:hover .mejs-horizontal-volume-current {
    background-color: #32323e !important
}

.mejs-container .mejs-controls .mejs-horizontal-volume-slider.mejs-unmute .mejs-horizontal-volume-current {
    border: 0
}

.mejs-container .mejs-layers .mejs-overlay-play:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: rgba(250, 110, 120, 0.8);
    opacity: 1;
    transition: all .3s ease-out 0s
}

.mejs-container .mejs-layers .mejs-overlay-play .mejs-overlay-button {
    position: absolute;
    top: 50%;
    left: 50%;
    outline: 0;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    transform: translate(-50%, -50%);
    transition: all .3s ease-out 0s
}

.mejs-container .mejs-layers .mejs-overlay-play[style^="display:none"],
.mejs-container .mejs-layers .mejs-overlay-play[style^="display: none"],
.mejs-container .mejs-layers .mejs-overlay-play[style*=" display:none"],
.mejs-container .mejs-layers .mejs-overlay-play[style*=" display: none"] {
    opacity: 0;
    visibility: hidden;
    display: block !important
}

.mejs-container .mejs-layers .mejs-overlay-play[style^="display:none"]:before,
.mejs-container .mejs-layers .mejs-overlay-play[style^="display: none"]:before,
.mejs-container .mejs-layers .mejs-overlay-play[style*=" display:none"]:before,
.mejs-container .mejs-layers .mejs-overlay-play[style*=" display: none"]:before {
    background-color: transparent
}

.mejs-container .mejs-poster {
    background-size: cover !important
}

.mejs-container .mejs-mediaelement {
    cursor: pointer;
    overflow: hidden
}

.mejs-container.mejs-container-fullscreen {
    margin: 0 !important;
    z-index: 1090 !important
}

.mejs-container.mejs-container-fullscreen .mejs-controls {
    height: 40px !important;
    border: 0 !important
}

.mejs-audio {
    height: 60px !important
}

.mejs-audio .mejs-controls.mejs-offscreen {
    position: relative !important;
    height: inherit !important;
    width: inherit !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    opacity: 1 !important
}

.mejs-video .mejs-controls {
    transition: opacity .3s ease-out 0s
}

@media screen and (max-width:1023px) {
    .mejs-video .mejs-controls {
        border-width: 5px
    }
}

@media screen and (max-width:767px) {
    .mejs-video .mejs-controls {
        border: 0
    }
}

.mejs-video .mejs-controls.mejs-offscreen {
    opacity: 0;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important
}

.mejs-video:hover .mejs-controls {
    transition-delay: .6s
}

.wp-video {
    width: 100% !important;
    background: transparent !important
}

.wp-video .mejs-container .mejs-overlay,
.wp-video .mejs-container .mejs-poster {
    width: 100% !important;
    height: 100% !important
}

.wp-video .mejs-container .mejs-overlay:hover .mejs-overlay-button,
.wp-video .mejs-container .mejs-poster:hover .mejs-overlay-button {
    background-position: 0 0
}

.wp-video .mejs-container .mejs-mediaelement .me-plugin {
    width: 100% !important;
    height: 100% !important
}

.wp-video .mejs-container .mejs-mediaelement video,
.wp-video .mejs-container .mejs-mediaelement embed {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important
}

.wp-playlist {
    padding: 0 !important;
    margin: 0 0 80px !important;
    text-align: left;
    user-select: none
}

.wp-playlist.wp-playlist-light,
.wp-playlist.wp-playlist-dark {
    color: #ccccd6;
    background-color: transparent;
    border: 0
}

.wp-playlist.wp-playlist-light a,
.wp-playlist.wp-playlist-dark a {
    color: #ccccd6;
    border-bottom: 0
}

.wp-playlist.wp-playlist-light a:hover,
.wp-playlist.wp-playlist-light a:focus,
.wp-playlist.wp-playlist-dark a:hover,
.wp-playlist.wp-playlist-dark a:focus {
    color: #32323e
}

.wp-playlist.wp-playlist-light .wp-playlist-caption,
.wp-playlist.wp-playlist-dark .wp-playlist-caption {
    color: #32323e
}

.wp-playlist .wp-playlist-item-title {
    margin-left: 38px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: none
}

.wp-playlist .wp-playlist-item-artist {
    text-transform: none
}

.wp-playlist .wp-playlist-current-item {
    margin-bottom: 10px;
    padding: 10px;
    height: auto;
    font-weight: inherit;
    background-color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.wp-playlist .wp-playlist-current-item .wp-playlist-item-title {
    margin-left: 0;
    font-size: 18px
}

.wp-playlist .wp-playlist-current-item .wp-playlist-item-album,
.wp-playlist .wp-playlist-current-item .wp-playlist-item-artist {
    font-size: 14px;
    color: rgba(50, 50, 62, 0.4)
}

.wp-playlist .wp-playlist-current-item .wp-playlist-item-artist {
    color: rgba(50, 50, 62, 0.6)
}

.wp-playlist .wp-playlist-current-item img {
    max-width: 48px !important;
    margin-right: 24px !important
}

.wp-playlist .wp-playlist-tracks {
    margin: 10px 0 0;
    background-color: transparent
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item {
    position: relative;
    padding: 10px 20px;
    font-weight: normal;
    background-color: #fff;
    border: 0
}

.custom-background-image .wp-playlist .wp-playlist-tracks .wp-playlist-item {
    background-color: #fff
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + (2px*2));
    height: calc(100% + (2px*2));
    border: 2px solid transparent;
    box-shadow: none
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item:last-child {
    border-bottom: 0
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item .wp-playlist-caption {
    margin-left: 10px;
    color: rgba(50, 50, 62, 0.4)
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item .wp-playlist-caption:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(50, 50, 62, 0.1)
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item:last-child .wp-playlist-caption:before {
    display: none
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item .wp-playlist-item-title {
    color: #32323e
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item .wp-playlist-item-artist {
    color: rgba(50, 50, 62, 0.4)
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item .wp-playlist-item-length {
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    color: rgba(50, 50, 62, 0.4)
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item.wp-playlist-playing {
    z-index: 1;
    font-weight: inherit;
    border-bottom-color: transparent
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item.wp-playlist-playing:before {
    border-color: #644baf
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item.wp-playlist-playing .wp-playlist-caption {
    color: #32323e
}

.wp-playlist .wp-playlist-tracks .wp-playlist-item.wp-playlist-playing .wp-playlist-caption:focus:before {
    background-color: #32323e
}

.wp-playlist .mejs-playpause-button {
    position: relative;
    cursor: pointer
}

.fy-widget .mejs-container .mejs-controls {
    border: 0
}

[class^="fy-shortcode"] p:empty,
[class*=" fy-shortcode"] p:empty {
    margin: 0
}

.fy-shortcode-container {
    margin-bottom: 40px
}

.fy-shortcode-container>br {
    display: none;
    float: left
}

.fy-shortcode-container>p {
    display: none
}

.fy-shortcode-container+.fy-shortcode-divider {
    margin-top: 0
}

.fy-shortcode-column {
    margin-bottom: 40px
}

.fy-shortcode-column>p:first-child,
.fy-shortcode-column>ul:first-child,
.fy-shortcode-column>ol:first-child {
    margin-bottom: 40px
}

.fy-shortcode-column>p:last-child,
.fy-shortcode-column>ul:last-child,
.fy-shortcode-column>ol:last-child {
    margin-bottom: 0
}

.fy-shortcode-column>p:empty,
.fy-shortcode-column>ul:empty,
.fy-shortcode-column>ol:empty {
    margin-bottom: 0
}

.fy-shortcode-column .fy-page-image {
    display: block;
    margin-bottom: 0
}

.fy-shortcode-column .fy-centerer {
    width: 100%;
    padding: 0
}

.fy-shortcode-column .fy-centerer.fy-centerer-75 {
    width: 75%
}

@media screen and (max-width:768px) {
    .fy-shortcode-column .fy-centerer.fy-centerer-75 {
        width: 100%
    }
}

.fy-shortcode-column .fy-centerer.fy-centerer-50 {
    width: 50%
}

@media screen and (max-width:768px) {
    .fy-shortcode-column .fy-centerer.fy-centerer-50 {
        width: 100%
    }
}

.fy-shortcode-form .fy-form-contact,
.fy-shortcode-form .fy-form-reservation {
    padding-top: 0
}

.fy-shortcode-form .fy-form-contact p,
.fy-shortcode-form .fy-form-reservation p {
    margin: 0
}

.alignnone {
    margin: 0 0 40px 0
}

.aligncenter {
    display: block;
    margin: 0 auto 40px auto
}

.alignright {
    float: right;
    margin: 0 0 40px 40px
}

.alignleft {
    float: left;
    margin: 0 40px 40px 0
}

p+.aligncenter {
    margin-top: 0
}

p+.alignright {
    margin-top: 0
}

p+.alignleft {
    margin-top: 0
}

a img.alignright {
    float: right;
    margin: 0 0 40px 40px
}

a img.alignnone {
    margin: 0 40px 40px 0
}

a img.alignleft {
    float: left;
    margin: 0 40px 40px 0
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.fy-page-content .gallery,
.fy-post-content .gallery,
.fy-term-content .gallery,
.fy-comment-content .gallery,
.fy-shortcode-centerer .gallery,
.fy-shortcode-column .gallery {
    display: block;
    width: calc(100% + 1px);
    margin-bottom: 40px !important
}

.fy-page-content .gallery:after,
.fy-post-content .gallery:after,
.fy-term-content .gallery:after,
.fy-comment-content .gallery:after,
.fy-shortcode-centerer .gallery:after,
.fy-shortcode-column .gallery:after {
    content: '';
    display: table;
    clear: both
}

.fy-page-content .gallery:after,
.fy-post-content .gallery:after,
.fy-term-content .gallery:after,
.fy-comment-content .gallery:after,
.fy-shortcode-centerer .gallery:after,
.fy-shortcode-column .gallery:after {
    content: '';
    display: table;
    clear: both
}

.gallery img {
    border: 0 !important
}

.gallery .gallery-item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 !important;
    vertical-align: top;
    overflow: hidden;
    text-align: left !important;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent
}

.gallery .gallery-item a {
    border: 0
}

.gallery .gallery-item .gallery-icon a {
    display: block;
    float: left;
    position: relative;
    overflow: hidden;
    border: 0
}

.gallery .gallery-item .gallery-icon a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background-color: rgba(250, 110, 120, 0.4);
    transition: all .3s ease-out 0s
}

.gallery .gallery-item .gallery-caption {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px !important;
    margin: 0 !important;
    z-index: 20;
    font-size: 11px;
    font-style: italic;
    line-height: 1.2;
    color: #fff
}

.gallery .gallery-item:hover .gallery-icon a:before {
    background-color: rgba(250, 110, 120, 0)
}

.gallery br {
    display: none;
    clear: none !important
}

.gallery.gallery-columns-2 .gallery-item {
    max-width: 50%
}

.gallery.gallery-columns-3 .gallery-item {
    max-width: 33.333%
}

@media screen and (max-width:767px) {
    .gallery.gallery-columns-3 .gallery-item {
        max-width: 50%
    }
}

@media screen and (max-width:481px) {
    .gallery.gallery-columns-3 .gallery-item {
        max-width: 100%
    }
}

.gallery.gallery-columns-4 .gallery-item {
    max-width: 25%
}

@media screen and (max-width:1023px) {
    .gallery.gallery-columns-4 .gallery-item {
        max-width: 33.333%
    }
}

@media screen and (max-width:767px) {
    .gallery.gallery-columns-4 .gallery-item {
        max-width: 50%
    }
}

@media screen and (max-width:481px) {
    .gallery.gallery-columns-4 .gallery-item {
        max-width: 100%
    }
}

.gallery.gallery-columns-5 .gallery-item {
    max-width: 20%
}

@media screen and (max-width:1279px) {
    .gallery.gallery-columns-5 .gallery-item {
        max-width: 25%
    }
}

@media screen and (max-width:1023px) {
    .gallery.gallery-columns-5 .gallery-item {
        max-width: 33.333%
    }
}

@media screen and (max-width:767px) {
    .gallery.gallery-columns-5 .gallery-item {
        max-width: 50%
    }
}

@media screen and (max-width:481px) {
    .gallery.gallery-columns-5 .gallery-item {
        max-width: 100%
    }
}

.gallery.gallery-columns-6 .gallery-item {
    max-width: 16.666%
}

@media screen and (min-width:1479px) {
    .gallery.gallery-columns-6 .gallery-item .gallery-caption {
        display: none
    }
}

@media screen and (max-width:1279px) {
    .gallery.gallery-columns-6 .gallery-item {
        max-width: 25%
    }
}

@media screen and (max-width:1023px) {
    .gallery.gallery-columns-6 .gallery-item {
        max-width: 33.333%
    }
}

@media screen and (max-width:767px) {
    .gallery.gallery-columns-6 .gallery-item {
        max-width: 50%
    }
}

@media screen and (max-width:481px) {
    .gallery.gallery-columns-6 .gallery-item {
        max-width: 100%
    }
}

.gallery.gallery-columns-7 .gallery-item {
    max-width: 14.28%
}

@media screen and (min-width:1479px) {
    .gallery.gallery-columns-7 .gallery-item .gallery-caption {
        display: none
    }
}

@media screen and (max-width:1479px) {
    .gallery.gallery-columns-7 .gallery-item {
        max-width: 20%
    }
}

@media screen and (max-width:1279px) {
    .gallery.gallery-columns-7 .gallery-item {
        max-width: 25%
    }
}

@media screen and (max-width:1023px) {
    .gallery.gallery-columns-7 .gallery-item {
        max-width: 33.333%
    }
}

@media screen and (max-width:767px) {
    .gallery.gallery-columns-7 .gallery-item {
        max-width: 50%
    }
}

@media screen and (max-width:481px) {
    .gallery.gallery-columns-7 .gallery-item {
        max-width: 100%
    }
}

.gallery.gallery-columns-8 .gallery-item {
    max-width: 12.5%
}

@media screen and (min-width:1479px) {
    .gallery.gallery-columns-8 .gallery-item .gallery-caption {
        display: none
    }
}

@media screen and (max-width:1479px) {
    .gallery.gallery-columns-8 .gallery-item {
        max-width: 20%
    }
}

@media screen and (max-width:1279px) {
    .gallery.gallery-columns-8 .gallery-item {
        max-width: 25%
    }
}

@media screen and (max-width:1023px) {
    .gallery.gallery-columns-8 .gallery-item {
        max-width: 33.333%
    }
}

@media screen and (max-width:767px) {
    .gallery.gallery-columns-8 .gallery-item {
        max-width: 50%
    }
}

@media screen and (max-width:481px) {
    .gallery.gallery-columns-8 .gallery-item {
        max-width: 100%
    }
}

.gallery.gallery-columns-9 .gallery-item {
    max-width: 11.11%
}

@media screen and (min-width:1479px) {
    .gallery.gallery-columns-9 .gallery-item .gallery-caption {
        display: none
    }
}

@media screen and (max-width:1479px) {
    .gallery.gallery-columns-9 .gallery-item {
        max-width: 20%
    }
}

@media screen and (max-width:1279px) {
    .gallery.gallery-columns-9 .gallery-item {
        max-width: 25%
    }
}

@media screen and (max-width:1023px) {
    .gallery.gallery-columns-9 .gallery-item {
        max-width: 33.333%
    }
}

@media screen and (max-width:767px) {
    .gallery.gallery-columns-9 .gallery-item {
        max-width: 50%
    }
}

@media screen and (max-width:481px) {
    .gallery.gallery-columns-9 .gallery-item {
        max-width: 100%
    }
}

.gallery.gallery-columns-10 .gallery-item {
    max-width: 11.11%
}

@media screen and (min-width:1479px) {
    .gallery.gallery-columns-10 .gallery-item .gallery-caption {
        display: none
    }
}

@media screen and (max-width:1479px) {
    .gallery.gallery-columns-10 .gallery-item {
        max-width: 20%
    }
}

@media screen and (max-width:1279px) {
    .gallery.gallery-columns-10 .gallery-item {
        max-width: 25%
    }
}

@media screen and (max-width:1023px) {
    .gallery.gallery-columns-10 .gallery-item {
        max-width: 33.333%
    }
}

@media screen and (max-width:767px) {
    .gallery.gallery-columns-10 .gallery-item {
        max-width: 50%
    }
}

@media screen and (max-width:481px) {
    .gallery.gallery-columns-10 .gallery-item {
        max-width: 100%
    }
}

.wp-caption {
    max-width: 100%;
    text-align: left
}

.wp-caption.alignnone {
    margin: 0 0 40px 0
}

.wp-caption.alignleft {
    margin: 0 40px 40px 0
}

.wp-caption.alignright {
    margin: 0 0 40px 40px
}

.wp-caption.aligncenter {
    margin: 0 auto 40px
}

.wp-caption img {
    width: auto;
    max-width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    border: 0 none
}

.wp-caption>a {
    display: block;
    border-bottom: 0 !important
}

.wp-caption>a img {
    display: block
}

.wp-caption .wp-caption-text {
    display: block;
    padding: 8px 0;
    margin: 0;
    font-size: 14px;
    line-height: 25px;
    text-align: left;
    color: rgba(50, 50, 62, 0.6)
}

.wp-caption .wp-caption-text a {
    color: rgba(50, 50, 62, 0.6);
    border-bottom: 1px solid rgba(50, 50, 62, 0.2)
}

.wp-caption .wp-caption-text a:hover,
.wp-caption .wp-caption-text a:focus {
    color: #32323e;
    border-bottom-color: #644baf
}

.bypostauthor {
    padding: 40px;
    border: 4px solid #644baf
}

.screen-reader-text {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px)
}

.screen-reader-text:focus {
    display: block;
    top: 5px;
    left: 5px;
    width: auto;
    height: auto;
    padding: 20px;
    z-index: 100000;
    clip: auto !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    text-decoration: none;
    color: #644baf;
    background-color: #fff;
    border-radius: 4px
}

.customize-partial-edit-shortcut {
    z-index: 70
}

.customize-partial-edit-shortcut-button {
    padding: 0 !important;
    border: 0 !important
}

.fy-comments {
    display: block;
    padding: 80px 0 40px;
    border-top: 2px solid rgba(50, 50, 62, 0.1)
}

.fy-comments .fy-comments-header {
    color: #32323e;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(50, 50, 62, 0.1)
}

 
.fy-comments .fy-comments-no {
    padding-bottom: 40px;
    margin-bottom: 40px;
    font-size: 16px;
    color: rgba(50, 50, 62, 0.4);
    border-bottom: 2px solid rgba(50, 50, 62, 0.1)
}

.fy-comments .fy-comments-closed {
    padding-bottom: 40px;
    margin-bottom: 40px;
    font-size: 16px;
    color: rgba(50, 50, 62, 0.6)
}

.fy-comments .fy-comments-logged-in-as {
    margin-bottom: 40px;
    font-size: 15px;
    color: rgba(50, 50, 62, 0.6)
}

.fy-comments .fy-comments-logged-in-as a {
    color: currentColor;
    border-bottom: 1px solid rgba(50, 50, 62, 0.2)
}

.fy-comments .fy-comments-logged-in-as a:hover,
.fy-comments .fy-comments-logged-in-as a:focus {
    color: #32323e;
    border-color: #644baf
}

.fy-comments .fy-comments-form .comment-reply-title {
    margin: 20px 0;
    color: #32323e;
    font-size: 25px
}

.fy-comments .fy-comments-form .fy-comments-form-author,
.fy-comments .fy-comments-form .fy-comments-form-email {
    display: block;
    max-width: 50%
}

@media screen and (max-width:767px) {
    .fy-comments .fy-comments-form .fy-comments-form-author,
    .fy-comments .fy-comments-form .fy-comments-form-email {
        max-width: 100%;
        padding: 0
    }
}

.fy-comments .fy-comments-form .fy-comments-form-author.fy-comments-form-author,
.fy-comments .fy-comments-form .fy-comments-form-email.fy-comments-form-author {
    border-left: 0
}

.fy-comments .fy-comments-form .fy-comments-form-author {
    padding-left: 0
}

.fy-comments .fy-comments-form .fy-comments-form-email {
    padding-right: 0
}

.fy-comments .fy-comments-form .fy-comments-form-comment {
    display: block
}

.fy-comments .fy-comments-form #cancel-comment-reply-link {
    opacity: 1;
    float: right;
    margin-top: 20px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .025em;
    text-transform: none;
    color: rgba(50, 50, 62, 0.4);
    border-bottom: 2px solid transparent
}

.fy-comments .fy-comments-form #cancel-comment-reply-link:hover {
    color: #32323e;
    border-bottom-color: #644baf
}

@media screen and (max-width:767px) {
    .fy-comments .fy-comments-form #fy-comments-submit {
        margin: 0 auto
    }
}

.fy-comments .fy-comments-list {
    margin-bottom: 40px
}

.fy-comments .fy-comments-list .fy-comment {
    position: relative
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-avatar {
    width: 40px;
    height: 40px
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 4px
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-body {
    margin-bottom: 40px
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-body p {
    margin-bottom: 20px
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-header .fy-comment-author {
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 33px;
    color: #32323e
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-header .fy-comment-author a {
    border-bottom: 2px solid rgba(50, 50, 62, 0.2)
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-header .fy-comment-author a:hover,
.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-header .fy-comment-author a:focus {
    color: #32323e;
    border-color: #644baf
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-header .fy-comment-meta .fy-comment-date a {
    padding: 0;
    font-size: 13px;
    text-transform: none;
    letter-spacing: .025em;
    color: rgba(50, 50, 62, 0.4);
    border-bottom: 1px solid transparent
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-header .fy-comment-meta .fy-comment-date a:hover,
.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-header .fy-comment-meta .fy-comment-date a:focus {
    color: #32323e;
    border-color: #644baf
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-toolbar {
    text-align: right
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-toolbar a {
    padding: 0;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: .025em;
    color: rgba(50, 50, 62, 0.4);
    border-bottom: 1px solid rgba(50, 50, 62, 0.2)
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-toolbar a:hover,
.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-toolbar a:focus {
    color: #32323e;
    border-color: #644baf
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-content {
    margin-top: 20px
}

.fy-comments .fy-comments-list .fy-comment .fy-comment-body .fy-comment-content blockquote p {
    font-size: 21px;
    line-height: 1.8
}

.fy-comments .fy-comments-list .fy-comment.depth-2,
.fy-comments .fy-comments-list .fy-comment.depth-3,
.fy-comments .fy-comments-list .fy-comment.depth-4,
.fy-comments .fy-comments-list .fy-comment.depth-5 {
    margin-left: 60px
}

@media screen and (max-width:1023px) {
    .fy-comments .fy-comments-list .fy-comment.depth-2,
    .fy-comments .fy-comments-list .fy-comment.depth-3,
    .fy-comments .fy-comments-list .fy-comment.depth-4,
    .fy-comments .fy-comments-list .fy-comment.depth-5 {
        margin-left: 40px
    }
}

@media screen and (max-width:767px) {
    .fy-comments .fy-comments-list .fy-comment.depth-2,
    .fy-comments .fy-comments-list .fy-comment.depth-3,
    .fy-comments .fy-comments-list .fy-comment.depth-4,
    .fy-comments .fy-comments-list .fy-comment.depth-5 {
        margin-left: 10px
    }
}

.fy-comments .fy-comments-list .fy-comment.bypostauthor {
    position: relative;
    padding: 0;
    border: 0
}

.fy-comments .fy-comments-list .fy-comment.bypostauthor:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    z-index: 0;
    border-style: solid;
    border-color: transparent #644baf #644baf transparent;
    border-width: 10px
}

.fy-comments .fy-comments-list .fy-comment.bypostauthor .fy-comment-header .fy-comment-author {
    color: #32323e
}

.fy-comments .fy-comments-list .fy-comment.bypostauthor .fy-comment-header .fy-comment-author a {
    border-bottom-color: #644baf
}

.wp-block-subhead {
    opacity: .8
}

.wp-block-subhead img {
    display: block
}

.wp-block-image {
    margin-bottom: 40px
}

.wp-block-cover-image {
    margin-bottom: 40px
}

.wp-block-cover-image .wp-block-cover-image-text {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none
}
p {
    margin-top: 0
}

.fy-flex-container.fy-flex-gutter-0 {
    margin-left: 0
}

.fy-flex-container.fy-flex-gutter-0>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-0>[class*=" fy-flex-column"] {
    padding-left: 0
}

.fy-flex-container.fy-flex-gutter-1px {
    margin-left: -1px
}

.fy-flex-container.fy-flex-gutter-1px>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-1px>[class*=" fy-flex-column"] {
    padding-left: 1px
}

.fy-flex-container.fy-flex-gutter-10px {
    margin-left: -10px
}

.fy-flex-container.fy-flex-gutter-10px>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-10px>[class*=" fy-flex-column"] {
    padding-left: 10px
}

.fy-flex-container.fy-flex-gutter-20px {
    margin-left: -20px
}

.fy-flex-container.fy-flex-gutter-20px>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-20px>[class*=" fy-flex-column"] {
    padding-left: 20px
}

.fy-flex-container.fy-flex-gutter-40px {
    margin-left: -40px
}

.fy-flex-container.fy-flex-gutter-40px>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-40px>[class*=" fy-flex-column"] {
    padding-left: 40px
}

.fy-flex-container.fy-flex-gutter-80px {
    margin-left: -80px
}

.fy-flex-container.fy-flex-gutter-80px>[class^="fy-flex-column"],
.fy-flex-container.fy-flex-gutter-80px>[class*=" fy-flex-column"] {
    padding-left: 80px
}

@media screen and (max-width:1023px) {
    .fy-flex-container.fy-flex-gutter-xlarge {
        margin-left: -80px
    }
    .fy-flex-container.fy-flex-gutter-xlarge>[class^="fy-flex-column"],
    .fy-flex-container.fy-flex-gutter-xlarge>[class*=" fy-flex-column"] {
        padding-left: 80px
    }
    .fy-flex-container.fy-flex-gutter-xlarge>[class^="fy-flex-column"]>.fy-flex-row,
    .fy-flex-container.fy-flex-gutter-xlarge>[class*=" fy-flex-column"]>.fy-flex-row {
        margin-bottom: 80px
    }
}

@media screen and (max-width:1023px) {
    .fy-flex-container .fy-flex-row.fy-flex-row-tablet-0 {
        padding: 0
    }
}

@media only screen and (max-width:767px) {
    .fy-main [class^="fy-flex-column"] .fy-align-right,
    .fy-main [class*=" fy-flex-column"] .fy-align-right {
        text-align: center !important
    }
}

.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    visibility: hidden
}

html {
    transition: margin-top .3s ease-out 0s
}

body {
    overflow-x: hidden;
    font-weight: 400;
    color: rgba(50, 50, 62, 0.6);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body.ios,
body.iphone,
body.ipad {
    height: 100%
}

.fy-skip-links {
    position: absolute;
    top: 0;
    left: -10000px
}

.fy-skip-links li a {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-transform: none;
    letter-spacing: .025em;
    transition: none .3s ease-out 0s;
    box-shadow: none
}

.fy-skip-links li a:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 40px;
    z-index: 99;
    text-align: center;
    color: #000;
    background-color: #fff;
    outline: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-skip-links li a:focus {
    box-shadow: none
}

.admin-bar .fy-skip-links li a:focus {
    top: 32px
}

@media screen and (max-width:782px) {
    .admin-bar .fy-skip-links li a:focus {
        top: 46px
    }
}

::selection {
    text-shadow: none;
    color: #fff !important;
    background-color: #626d86;
}
::-webkit-selection {
    text-shadow: none;
    color: #fff !important;
    background-color: #626d86;
}
::-moz-selection {
    text-shadow: none;
    color: #fff !important;
    background-color: #626d86;
}

img::selection {
    background: transparent
}

img::-moz-selection {
    background: transparent
}

input::selection,
textarea::selection,
select::selection {
    -webkit-text-fill-color: #fff !important;
    background-color: #644baf
}

input:-webkit-autofill::selection,
textarea:-webkit-autofill::selection,
select:-webkit-autofill::selection {
    -webkit-text-fill-color: #fff !important;
    background-color: #644baf
}

.fy-image {
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .3s ease-out 0s
}

.fy-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0
}

.fy-image.fy-image-landscape {
    padding-bottom: 75%
}

.fy-image.fy-image-portrait {
    padding-bottom: 133.33333333333%
}

.fy-image.fy-image-square {
    padding-bottom: 100%
}

.fy-image.fy-image-default {
    padding-bottom: 75%
}

.fy-page-image {
    display: inline-block;
    margin-bottom: 40px
}

.fy-page-image.fy-align-center {
    display: block;
    text-align: center
}

.fy-page-image.fy-align-center>a,
.fy-page-image.fy-align-center>img {
    display: inline-block;
    margin: 0 auto
}

.fy-page-image.fy-align-right {
    float: right;
    margin: 0 0 40px 40px
}

.fy-page-image.fy-align-left {
    float: left;
    margin: 0 40px 40px 0
}

@media screen and (max-width:767px) {
    .fy-page-image.fy-align-right,
    .fy-page-image.fy-align-left {
        display: block;
        text-align: center;
        float: none;
        margin: 0 0 40px
    }
    .fy-page-image.fy-align-right>a,
    .fy-page-image.fy-align-right>img,
    .fy-page-image.fy-align-left>a,
    .fy-page-image.fy-align-left>img {
        display: inline-block;
        margin: 0 auto
    }
}

.fy-page-image a {
    display: block;
    position: relative;
    z-index: 1
}

.fy-page-image a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background-color: rgba(250, 110, 120, 0);
    transition: all .3s ease-out 0s
}

.fy-page-image a:hover:before,
.fy-page-image a:focus:before {
    background-color: rgba(250, 110, 120, 0.8)
}

.fy-centerer-75 .fy-page-image.fy-align-center,
.fy-centerer-50 .fy-page-image.fy-align-center {
    margin-right: -80px;
    margin-left: -80px
}

@media screen and (max-width:1279px) {
    .fy-centerer-75 .fy-page-image.fy-align-center,
    .fy-centerer-50 .fy-page-image.fy-align-center {
        margin-right: -40px;
        margin-left: -40px
    }
}

@media screen and (max-width:767px) {
    .fy-centerer-75 .fy-page-image.fy-align-center,
    .fy-centerer-50 .fy-page-image.fy-align-center {
        margin-right: 0;
        margin-left: 0
    }
}

.fy-centerer-75 .fy-page-image.fy-align-right,
.fy-centerer-50 .fy-page-image.fy-align-right {
    margin-right: -80px
}

@media screen and (max-width:1279px) {
    .fy-centerer-75 .fy-page-image.fy-align-right,
    .fy-centerer-50 .fy-page-image.fy-align-right {
        margin-right: -40px
    }
}

@media screen and (max-width:767px) {
    .fy-centerer-75 .fy-page-image.fy-align-right,
    .fy-centerer-50 .fy-page-image.fy-align-right {
        margin-right: 0
    }
}

.fy-centerer-75 .fy-page-image.fy-align-left,
.fy-centerer-50 .fy-page-image.fy-align-left {
    margin-left: -80px
}

@media screen and (max-width:1279px) {
    .fy-centerer-75 .fy-page-image.fy-align-left,
    .fy-centerer-50 .fy-page-image.fy-align-left {
        margin-left: -40px
    }
}

@media screen and (max-width:767px) {
    .fy-centerer-75 .fy-page-image.fy-align-left,
    .fy-centerer-50 .fy-page-image.fy-align-left {
        margin-left: 0
    }
}

.js-lazy {
    opacity: 0;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden
}

.js-lazy.lazy-loaded {
    opacity: 1
}

.js-lazy.lazy-loaded .fy-loading {
    opacity: 0;
    display: none
}

.js-lazy-parent {
    position: relative
}

.js-lazy-parent:before,
.js-lazy-parent:after {
    opacity: 0
}

.js-lazy-parent .fy-loading {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    visibility: visible
}

.js-lazy-parent .fy-loading .fy-spinner {
    border-left-color: currentColor;
    opacity: .5
}

.js-lazy-parent.lazy-loaded:before,
.js-lazy-parent.lazy-loaded:after {
    opacity: 1
}

.js-lazy-parent.lazy-loaded .fy-loading {
    opacity: 0;
    display: none
}

@media screen and (max-width:1023px) {
    .fy-anchor {
        top: -40px
    }
}

.admin-bar .fy-anchor {
    top: -144px
}

@media screen and (max-width:782px) {
    .admin-bar .fy-anchor {
        top: -86px
    }
}

.fy-back-to-top {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    right: 0;
    bottom: 60px;
    z-index: 50;
    text-align: center;
    color: rgba(50, 50, 62, 0.4);
    background-color: transparent;
    transition: all .3s ease-out 0s
}

.fy-back-to-top:before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #644baf;
    transition: all .3s ease-out 0s
}

.fy-back-to-top .fy-icon {
    position: relative;
    display: block;
    margin: 0 auto;
    top: 6px;
    width: 28px;
    height: 28px;
    transition: top .3s ease-out 0s
}

.fy-back-to-top .fy-icon .icon {
    color: currentColor
}

.fy-back-to-top:hover {
    color: #32323e
}

.fy-back-to-top:hover:before {
    left: 0;
    width: 100%
}

.fy-back-to-top:hover .fy-icon {
    top: 0
}

.fy-alert {
    display: block;
    padding: 20px 40px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #32323e;
    background-color: transparent;
    border: 2px solid rgba(50, 50, 62, 0.2);
    border-radius: 4px
}

.fy-alert h4 {
    font-size: 21px;
    line-height: 31px
}

.fy-alert h5 {
    font-size: 19px;
    line-height: 29px
}

.fy-alert h6 {
    font-size: 17px;
    line-height: 27px
}

.fy-alert a:not(.fy-button) {
    color: #32323e;
    border-bottom: 1px solid #32323e
}

.fy-alert a:not(.fy-button):hover,
.fy-alert a:not(.fy-button):focus {
    color: #644baf;
    border-bottom-color: #644baf
}

.fy-alert.fy-alert-accent {
    color: #644baf;
    border-color: #644baf
}

.fy-alert.fy-alert-success {
    color: #3c9678;
    border-color: #3c9678
}

.fy-alert.fy-alert-error {
    color: #fa6e78;
    border-color: #fa6e78
}

.fy-alert+.fy-alert {
    margin-top: -20px
}

.fy-footer .fy-alert {
    color: #fff
}

.fy-footer .fy-alert a:not(.fy-button) {
    color: #fff;
    border-bottom-color: #fff
}

.fy-footer .fy-alert a:not(.fy-button):hover,
.fy-footer .fy-alert a:not(.fy-button):focus {
    color: #fff;
    border-bottom-color: #fa6e78
}

svg.icon {
    fill: currentColor;
    transition-property: fill;
    transition-timing-function: ease-out;
    transition-duration: .3s
}

svg.icon .shape {
    fill: currentColor;
    transition-property: fill, opacity;
    transition-timing-function: ease-out;
    transition-duration: .3s
}

.fy-dropcap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    float: left;
    padding: 0;
    margin-right: 10px;
    margin-top: 4px;
    height: 57px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    line-height: 57px;
    color: #32323e
}

.fy-dropcap.fy-dropcap-default {
    font-size: 48px
}

.fy-dropcap.fy-dropcap-square {
    width: 57px;
    font-size: 30px;
    color: #32323e;
    border: 2px solid #32323e;
    border-radius: 4px
}

.fy-dropcap.fy-dropcap-rounded {
    width: 57px;
    margin-left: -4px;
    font-size: 30px;
    color: #32323e;
    border: 2px solid #32323e;
    border-radius: 40px
}

.fy-dropcap.fy-dropcap-color-accent {
    color: #644baf;
    border-color: #644baf
}

.fy-divider {
    display: block;
    width: 100%;
    padding: 40px 0 0;
    margin: 0 0 40px;
    border-bottom: 2px solid rgba(50, 50, 62, 0.2)
}

.fy-divider.fy-divider-dotted {
    border-bottom-style: dotted
}

.fy-divider.fy-divider-dashed {
    border-bottom-style: dashed
}

.fy-divider.fy-divider-double {
    border-bottom-width: 6px;
    border-bottom-style: double
}

.fy-divider.fy-divider-color-accent {
    border-bottom-color: #644baf
}

.fy-emphasize {
    display: block;
    margin-bottom: 40px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.8;
    color: #32323e
}

@media screen and (max-width:1023px) {
    .fy-emphasize {
        font-size: 21px;
        line-height: 31px
    }
}

.fy-emphasize a:not(.fy-button) {
    color: #32323e;
    border-bottom: 1px solid #644baf
}

.fy-emphasize a:not(.fy-button):hover,
.fy-emphasize a:not(.fy-button):focus {
    color: #644baf;
    border-bottom-color: #644baf
}

.fy-emphasize.fy-emphasize-color-accent {
    color: #644baf
}

.fy-emphasize.fy-emphasize-color-accent a:not(.fy-button) {
    color: #644baf;
    border-bottom-color: #32323e
}

.fy-emphasize.fy-emphasize-color-accent a:not(.fy-button):hover,
.fy-emphasize.fy-emphasize-color-accent a:not(.fy-button):focus {
    color: #32323e;
    border-color: #32323e
}

.fy-leadin {
    display: block;
    width: 40%;
    padding: 0 40px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.8;
    color: #32323e;
    border-style: solid;
    border-color: rgba(50, 50, 62, 0.2)
}

@media screen and (max-width:1023px) {
    .fy-leadin {
        width: 60%
    }
}

@media screen and (max-width:767px) {
    .fy-leadin {
        width: 100%;
        font-size: 21px;
        line-height: 31px
    }
}

.fy-leadin.fy-leadin-left {
    float: left;
    padding-left: 0;
    margin-right: 40px;
    margin-bottom: 20px;
    border-width: 0 2px 0 0
}

@media screen and (max-width:767px) {
    .fy-leadin.fy-leadin-left {
        padding: 40px;
        margin: 40px 0;
        text-align: center;
        border-width: 2px 0
    }
}

.fy-leadin.fy-leadin-right {
    float: right;
    padding-right: 0;
    margin-left: 40px;
    margin-bottom: 20px;
    border-width: 0 0 0 2px
}

@media screen and (max-width:767px) {
    .fy-leadin.fy-leadin-right {
        padding: 40px;
        margin: 40px 0;
        text-align: center;
        border-width: 2px 0
    }
}

.fy-leadin.fy-leadin-full,
.fy-leadin.fy-leadin-center {
    width: 100%;
    margin: 40px 0;
    padding: 40px;
    text-align: center;
    border-width: 2px 0
}

.fy-leadin.fy-leadin-color-accent {
    color: #644baf
}

.fy-highlight {
    padding: 4px 8px;
    margin: 0 4px;
    color: #fff;
    background-color: #32323e;
    border-radius: 4px
}

.fy-highlight a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}

.fy-highlight a:hover,
.fy-highlight a:focus {
    border-bottom-color: #fff
}

.fy-highlight.fy-highlight-color-accent {
    background-color: #644baf
}

.fy-spacer {
    display: block;
    width: 100%;
    height: 0;
    padding: 40px 0 0
}

.fy-spacer.fy-spacer-5 {
    padding: 5px 0 0
}

.fy-spacer.fy-spacer-10 {
    padding: 10px 0 0
}

.fy-spacer.fy-spacer-20 {
    padding: 20px 0 0
}

.fy-spacer.fy-spacer-30 {
    padding: 30px 0 0
}

.fy-spacer.fy-spacer-40 {
    padding: 40px 0 0
}

.fy-spacer.fy-spacer-50 {
    padding: 50px 0 0
}

.fy-spacer.fy-spacer-60 {
    padding: 60px 0 0
}

.fy-spacer.fy-spacer-70 {
    padding: 70px 0 0
}

.fy-spacer.fy-spacer-80 {
    padding: 80px 0 0
}

.fy-loading {
    opacity: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -1000vh;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 80;
    text-align: center;
    visibility: hidden;
    overflow: hidden;
    user-select: none;
    transition-property: opacity;
    transition-timing-function: ease-out;
    transition-duration: .3s;
    color: currentColor
}

.fy-loading .fy-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    text-align: center;
    border-radius: 50%;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-left: 2px solid rgba(50, 50, 62, 0.5);
    transition: all .3s ease-out 0s;
    transform-origin: center center;
    animation: animationRotate .6s linear infinite
}

.fy-loading.fy-loading-small .fy-spinner {
    width: 16px;
    height: 16px
}

body.loading-active .fy-loading {
    opacity: 1;
    top: 0;
    visibility: visible;
    animation-name: animationFadeIn;
    animation-duration: .3s;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards
}

.fy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #644baf
}

.fy-background .fy-background-image,
.fy-background .fy-background-video,
.fy-background .fy-background-empty {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #644baf;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    will-change: transform;
    transition: all .3s ease-out 0s
}

.iphone .fy-background .fy-background-image,
.iphone .fy-background .fy-background-video,
.iphone .fy-background .fy-background-empty {
    background-attachment: scroll
}

.fy-background .fy-background-image:before,
.fy-background .fy-background-video:before,
.fy-background .fy-background-empty:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: transform;
    background-color: rgba(100, 75, 175, 0.4)
}

.fy-background .fy-background-empty:before {
    display: none
}

.fy-background .fy-background-empty+.fy-pattern {
    display: none
}

.fy-background .fy-pattern {
    position: absolute;
    z-index: 1
}

.fy-background-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden
}

.ios .fy-background-wrap,
.iphone .fy-background-wrap,
.ipad .fy-background-wrap {
    position: fixed;
    min-height: 120vh;
    clip: rect(0, auto, auto, 0)
}

.fy-background-site {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 0
}

.ios .fy-background-site,
.iphone .fy-background-site,
.ipad .fy-background-site {
    position: fixed;
    max-width: 100vw;
    max-height: 120vh;
    background-size: cover !important;
    background-attachment: scroll !important;
    will-change: transform;
    transform: translateZ(0)
}

.custom-background .fy-background-site:before,
.custom-background-image .fy-background-site:before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(50, 50, 62, 0.5)
}

body.background-pattern-enabled>.fy-pattern {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0
}

body.custom-background,
body.custom-background-image {
    position: relative
}

body.custom-background:before,
body.custom-background-image:before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(50, 50, 62, 0.5)
}

.fy-background-video .fy-background-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden
}

.fy-background-video .fy-background-video-wrapper .fy-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    z-index: 1;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate(-50%, -50%);
    transition: all .3s ease-out 0s
}

.fy-background-video .fy-video-controls {
    position: absolute;
    right: 40px;
    bottom: 50%;
    z-index: 30;
    transform: translateY(50%)
}

.fy-video-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 20;
    transform: translate(-50%, -50%)
}

.fy-video-controls .fy-button {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    width: 32px;
    height: 32px;
    background-color: transparent;
    border-color: transparent;
    box-shadow: none
}

.fy-video-controls .fy-button .fy-icon {
    width: 28px;
    height: 28px
}

.fy-video-controls .fy-button .fy-icon .icon {
    float: left
}

.fy-video-controls .fy-button:focus,
.fy-video-controls .fy-button:hover {
    background-color: transparent;
    box-shadow: none
}

.fy-video-controls .fy-icon-play {
    display: block
}

.fy-video-controls .fy-icon-pause {
    display: none
}

.video-playing .fy-icon-play {
    display: none
}

.video-playing .fy-icon-pause {
    display: block
}

.video-paused .fy-icon-play {
    display: block
}

.video-paused .fy-icon-pause {
    display: none
}

video {
    -webkit-appearance: none;
    -moz-appearance: none
}

video::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none;
    -moz-appearance: none
}

video::-webkit-media-controls-enclosure {
    display: none !important;
    -webkit-appearance: none;
    -moz-appearance: none
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
    -moz-appearance: none
}

video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
    opacity: 0;
    pointer-events: none;
    width: 5px
}

.js-reveal-container .js-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .6s ease-out
}

@media screen and (max-width:767px) {
    .js-reveal-container .js-reveal {
        opacity: 1;
        transform: translateY(0)
    }
}

.js-reveal-container .js-reveal.revealed {
    opacity: 1;
    transform: translateY(0)
}

.fy-newsletter {
    position: relative;
    padding: 120px 0;
    text-align: left;
    z-index: 39;
    color: rgba(50, 50, 62, 0.6);
    background-color: #fff
}

@media screen and (max-width:1023px) {
    .fy-newsletter {
        padding: 80px 0;
        text-align: center
    }
}

.fy-newsletter .fy-border-pattern {
    bottom: 100%;
    color: #fff
}

.fy-newsletter .fy-newsletter-icon {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
    width: 28px;
    height: 28px;
    color: #32323e
}

.fy-newsletter .fy-newsletter-icon .icon {
    float: left
}

.fy-newsletter .fy-newsletter-heading {
    margin: 0 0 10px;
    text-align: left;
    color: #32323e
}

@media screen and (max-width:1023px) {
    .fy-newsletter .fy-newsletter-heading {
        margin-top: 20px;
        text-align: center
    }
}

.fy-newsletter .fy-newsletter-content p {
    margin: 0;
    font-size: 16px
}

.fy-newsletter .fy-newsletter-footer {
    margin-top: 10px;
    font-style: italic;
    color: rgba(50, 50, 62, 0.4)
}

@media screen and (max-width:1023px) {
    .fy-newsletter .fy-newsletter-footer {
        margin-bottom: 20px
    }
}

.fy-newsletter .fy-newsletter-footer p {
    margin: 0
}

@media screen and (max-width:1023px) {
    .fy-newsletter .fy-newsletter-form {
        margin-bottom: 40px
    }
}

@media screen and (max-width:1023px) {
    .fy-newsletter .fy-align-right {
        text-align: center
    }
}

.fy-newsletter+.fy-footer {
    margin-top: 0
}

.fy-newsletter .mc4wp-form {
    padding: 0;
    background-color: transparent
}

.fy-widget.widget_mc4wp_form_widget .fy-widget-title {
    margin-bottom: 0
}

.fy-widget.widget_mc4wp_form_widget .mc4wp-form {
    width: 100%;
    padding: 40px;
    margin: 0;
    color: #32323e;
    background-color: #fff
}

.fy-widget.widget_mc4wp_form_widget .mc4wp-form-fields {
    display: block
}

.fy-widget.widget_mc4wp_form_widget .mc4wp-form-fields>p {
    display: block;
    min-width: 0;
    margin: 20px 0 0
}

.g-recaptcha {
    display: block;
    margin-bottom: 40px
}

.g-recaptcha:after {
    content: '';
    display: table;
    clear: both
}

.g-recaptcha:after {
    content: '';
    display: table;
    clear: both
}

@media screen and (max-width:767px) {
    .g-recaptcha>div>div {
        width: 100% !important;
        text-align: center
    }
}

.fy-form-submit .g-recaptcha {
    margin: 0
}

@media screen and (max-width:767px) {
    .fy-form-submit .g-recaptcha {
        margin-bottom: 40px
    }
}

.fy-pagination {
    position: relative;
    width: 100%;
    padding: 0 160px;
    margin: 40px auto;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 15px;
    text-align: center
}

@media screen and (max-width:767px) {
    .fy-pagination {
        padding: 0 80px
    }
}

.fy-homepage-posts .fy-pagination {
    margin-bottom: 80px
}

.fy-pagination>a,
.fy-pagination>span {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 0 4px 0;
    text-decoration: none;
    line-height: 1;
    color: #32323e;
    background-color: transparent;
    border-bottom: 2px solid rgba(50, 50, 62, 0.2)
}

@media screen and (max-width:767px) {
    .fy-pagination>a,
    .fy-pagination>span {
        padding-right: 10px;
        padding-left: 10px
    }
}

.fy-pagination>a {
    color: rgba(50, 50, 62, 0.6);
    background-color: transparent;
    transition: all .3s ease-out 0s
}

.fy-pagination>a:hover,
.fy-pagination>a:active,
.fy-pagination>a:focus {
    color: #32323e;
    border-bottom-color: #644baf
}

.fy-pagination>a.prev {
    left: 0
}

.fy-pagination>a.next {
    right: 0
}

.fy-pagination>span.dots {
    padding-right: 10px;
    padding-left: 10px;
    color: rgba(50, 50, 62, 0.4);
    border-bottom-color: transparent
}

.fy-pagination>span.current {
    color: #32323e;
    background-color: transparent;
    border-bottom-color: transparent
}

.fy-pagination .prev,
.fy-pagination .next {
    position: absolute;
    top: 0;
    padding-right: 0;
    padding-left: 0;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .025em;
    text-transform: none
}

.fy-pagination .prev .icon,
.fy-pagination .next .icon {
    position: absolute;
    top: 50%;
    margin-top: -14px
}

.fy-pagination .prev .icon .shape,
.fy-pagination .next .icon .shape {
    fill: currentColor
}

.fy-pagination .prev {
    padding-left: 38px
}

.fy-pagination .prev .icon {
    left: 0;
    transition: left .3s ease-out 0s
}

.fy-pagination .prev:hover .icon,
.fy-pagination .prev:active .icon {
    left: -10px
}

.fy-pagination .next {
    padding-right: 38px
}

.fy-pagination .next .icon {
    right: 0;
    transition: right .3s ease-out 0s
}

.fy-pagination .next:hover .icon,
.fy-pagination .next:active .icon {
    right: -10px
}

.fy-pagination-post {
    display: block;
    clear: both
}

.fy-pagination-post:after {
    content: '';
    display: table;
    clear: both
}

.fy-pagination-post:after {
    content: '';
    display: table;
    clear: both
}

.fy-pagination-post>span {
    color: #32323e;
    background-color: transparent;
    border-bottom-color: transparent
}

body.search-results .fy-pagination {
    margin-top: 80px
}

body {
    min-height: 100vh;
    color: rgba(50, 50, 62, 0.8)
}

body.admin-bar {
    min-height: calc(100vh - 32px)
}

@media screen and (max-width:782px) {
    body.admin-bar {
        min-height: calc(100vh - 46px)
    }
}

.fy-skip-links li a:focus {
    padding: 0;
    line-height: 48px
}

hr,
.fy-divider {
    border-bottom-width: 2px;
    border-color: rgba(50, 50, 62, 0.1)
}

.fy-leadin {
    border-color: rgba(50, 50, 62, 0.1)
}

.fy-background {
    overflow: hidden
}

.fy-background:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(100, 75, 175, 0.4)
}

.fy-background .fy-background-image:before,
.fy-background .fy-background-video:before,
.fy-background .fy-background-empty:before {
    display: none
}

.fy-background-wrap {
    top: auto;
    bottom: 0
}

.admin-bar .fy-background-wrap {
    height: calc(100% - 32px)
}

body.custom-background-image {
    background-color: #32323e
}

body.custom-background-image:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(50, 50, 62, 0.5)
}

.js-lazy {
    transform: scale(1.1, 1.1);
    transition: all .3s ease-out 0s
}

.js-lazy.lazy-loaded {
    transform: scale(1, 1)
}

@media screen and (max-width:1023px) {
    .transition-mobile-disabled .js-lazy {
        transform: scale(1, 1)
    }
}

.pace {
    opacity: 0;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 590;
    overflow: hidden;
    color: #fa6e78;
    background-color: transparent;
    transition: all .3s ease-out 0s
}

.pace .pace-progress {
    position: absolute;
    top: 0;
    z-index: 1;
    right: 100%;
    width: 100%;
    height: 100%;
    background-color: #fa6e78
}

.admin-bar.loading-transition-none .pace {
    top: 32px
}

@media screen and (max-width:782px) {
    .admin-bar.loading-transition-none .pace {
        top: 46px
    }
}

.pace-running .pace {
    opacity: 1
}

.fy-loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 580;
    text-align: center;
    color: #fa6e78;
    transition: all .3s ease-out 0s
}

.loading-transition-none .fy-container {
    opacity: 1 !important
}

.fy-loading-page {
    opacity: 0;
    z-index: 589;
    background-color: #fff
}

.fy-loading-logo {
    opacity: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 144px;
    padding: 0;
    z-index: 30;
    overflow: hidden;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
    color: #fa6e78;
    word-wrap: break-word;
    transform: translate(-50%, -50%);
    transition: opacity .3s ease-out 0s
}

.pace-running .fy-loading-logo {
    opacity: 1
}

.fy-loading-logo img {
    display: block;
    width: auto;
    height: 100%;
    max-height: 72px
}

body .fy-container {
    opacity: 0
}

body .pace-inactive {
    opacity: 0
}

body.pace-running .fy-loading-page {
    opacity: 1
}

body.pace-running .fy-loading-logo {
    opacity: 1
}

body.pace-done .fy-loading-page {
    opacity: 0
}

body.pace-done .fy-container {
    opacity: 1
}

body.loading-hidden .fy-loading-page {
    opacity: 0;
    visibility: hidden;
    display: none
}

body.loading-hidden .pace-inactive {
    opacity: 0;
    visibility: hidden;
    display: none
}

body.loading-none .fy-container {
    opacity: 1
}

body.loading-none .fy-loading-page {
    display: none
}

.mejs-container {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .mejs-container {
    box-shadow: none
}

.mejs-container .mejs-controls .mejs-button.mejs-play button,
.mejs-container .mejs-controls .mejs-button.mejs-replay button {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.6)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.524,3.148L5,4v16l1.524,0.852l13-8v-1.703L6.524,3.148z M7,18.21V5.79L17.092,12L7,18.21z"/></svg>')
}

.mejs-container .mejs-controls .mejs-button.mejs-pause button {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.6)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5,20h2V4H5V20z M17,4v16h2V4H17z"/></svg>')
}

.mejs-container .mejs-controls .mejs-button.mejs-mute button {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.6)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20,5v14h1V5H20z M2,15h2V9H2V15z M6.667,9H6v6h0.713l7.757,4.848L16,19V4l-1.6-0.8L6.667,9z M14,17.195l-6-3.75V10.5 L14,6V17.195z M18,17h1V7h-1V17z"/></svg>')
}

.mejs-container .mejs-controls .mejs-button.mejs-unmute button {
    opacity: .5;
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.6)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2,15h2V9H2V15z M6.667,9H6v6h0.713l7.757,4.848L16,19V4l-1.6-0.8L6.667,9z M14,17.195l-6-3.75V10.5L14,6V17.195z M22.328,10.379l-0.707-0.707L19.5,11.793l-2.121-2.121l-0.707,0.707l2.121,2.121l-2.121,2.121l0.707,0.707l2.121-2.121 l2.121,2.121l0.707-0.707L20.207,12.5L22.328,10.379z"/></svg>')
}

.mejs-container .mejs-controls .mejs-button.mejs-fullscreen-button button {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.6)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6,15H4v5h5v-2H6V15z M4,9h2V6h3V4H4V9z M18,18h-3v2h5v-5h-2V18z M15,4v2h3v3h2V4H15z"/></svg>')
}

.mejs-container .mejs-controls .mejs-button.mejs-fullscreen-button.mejs-unfullscreen button {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.6)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4,15v2h3v3h2v-4v-1H8H4z M7,7H4v2h4h1V8V4H7V7z M15,15v1v4h2v-3h3v-2h-4H15z M17,7V4h-2v4v1h1h4V7H17z"/></svg>')
}

.mejs-container .mejs-layers .mejs-overlay-play:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
    z-index: -1;
    outline: 0;
    background-color: #644baf;
    border-radius: 80px;
    transition: all .3s ease-out 0s
}

@media screen and (max-width:1023px) {
    .mejs-container .mejs-layers .mejs-overlay-play:after {
        width: 64px;
        height: 64px;
        margin-top: -32px;
        margin-left: -32px
    }
}

.mejs-container .mejs-layers .mejs-overlay-play .mejs-overlay-button {
    background-color: rgba(100, 75, 175, 0.8);
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(255,255,255,0.99)" width="32" height="32" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.524,3.148L5,4v16l1.524,0.852l13-8v-1.703L6.524,3.148z M7,18.21V5.79L17.092,12L7,18.21z"/></svg>')
}

.mejs-container .mejs-layers .mejs-overlay-play:hover:after {
    background-color: #644baf;
    transform: scale(1.25, 1.25)
}

.mejs-container .mejs-layers .mejs-overlay-play:before {
    background-color: transparent
}

.wp-playlist .mejs-controls .mejs-playpause-button:before,
.wp-audio-shortcode .mejs-controls .mejs-playpause-button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 30px;
    background-color: #644baf;
    animation: none;
    transition: all .3s ease-out 0s
}

.wp-playlist .mejs-controls .mejs-playpause-button:hover:before,
.wp-audio-shortcode .mejs-controls .mejs-playpause-button:hover:before {
    transform: scale(1.25, 1.25)
}

.wp-playlist .mejs-controls .mejs-playpause-button.mejs-play button,
.wp-audio-shortcode .mejs-controls .mejs-playpause-button.mejs-play button {
    background-position: center;
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(255,255,255,0.99)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path class="shape" d="M6.524,3.148L5,4v16l1.524,0.852l13-8v-1.703L6.524,3.148z M7,18.21V5.79L17.092,12L7,18.21z"></path></svg>')
}

.wp-playlist .mejs-controls .mejs-playpause-button.mejs-pause:before,
.wp-audio-shortcode .mejs-controls .mejs-playpause-button.mejs-pause:before {
    background-color: #725bb9;
    animation-name: animationPulse;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    transition: all .3s ease-out 0s
}

.wp-playlist .mejs-controls .mejs-playpause-button.mejs-pause button,
.wp-audio-shortcode .mejs-controls .mejs-playpause-button.mejs-pause button {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(255,255,255,0.99)" width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path class="shape" d="M5,20h2V4H5V20z M17,4v16h2V4H17z"></path></svg>')
}

.wp-playlist .wp-playlist-current-item,
.wp-audio-shortcode .wp-playlist-current-item {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .wp-playlist .wp-playlist-current-item,
.shadow-disabled .wp-audio-shortcode .wp-playlist-current-item {
    box-shadow: none
}

.wp-playlist .wp-playlist-tracks,
.wp-audio-shortcode .wp-playlist-tracks {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .wp-playlist .wp-playlist-tracks,
.shadow-disabled .wp-audio-shortcode .wp-playlist-tracks {
    box-shadow: none
}

@keyframes animationPulse {
    0% {
        transform: scale(1, 1)
    }
    50% {
        transform: scale(1.5, 1.5)
    }
    100% {
        transform: scale(1, 1)
    }
}

@-webkit-keyframes animationPulse {
    0% {
        transform: scale(1, 1)
    }
    50% {
        transform: scale(1.5, 1.5)
    }
    100% {
        transform: scale(1, 1)
    }
}

.fy-button {
    display: inline-block;
    position: relative;
    padding: 0 40px;
    margin: 0;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: .025em;
    line-height: 46px;
    white-space: nowrap;
    vertical-align: top;
    cursor: pointer;
    color: #fff;
    background-color: #32323e;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    user-select: none;
    transition: all .3s ease-out 0s;
    box-shadow: none
}

.fy-button:hover,
.fy-button:focus {
    color: #fff;
    background-color: #3d3d4c;
    border-color: transparent;
    box-shadow: 0 16px 80px rgba(0, 0, 0, 0.2)
}

.shadow-disabled .fy-button:hover,
.shadow-disabled .fy-button:focus {
    box-shadow: none
}

.fy-button+.fy-button {
    margin-left: 20px
}

.fy-button.fy-button-micro {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 13px;
    line-height: 34px
}

@media screen and (max-width:767px) {
    .fy-button.fy-button-micro {
        font-size: 15px;
        line-height: 46px
    }
}

.fy-button.fy-button-small {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 14px;
    line-height: 40px
}

@media screen and (max-width:767px) {
    .fy-button.fy-button-small {
        font-size: 15px;
        line-height: 46px
    }
}

.fy-button.fy-button-medium {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 15px;
    line-height: 46px
}

.fy-button.fy-button-large {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
    line-height: 52px
}

.fy-button.fy-button-huge {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 17px;
    line-height: 58px
}

.fy-button.fy-button-icon .icon,
.fy-button.fy-button-icon-small .icon {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 20px;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    transition-property: left, right, color, opacity;
    transition-duration: .3s;
    transition-timing-function: ease-out
}

.fy-button.fy-button-icon:hover .icon,
.fy-button.fy-button-icon:focus .icon,
.fy-button.fy-button-icon-small:hover .icon,
.fy-button.fy-button-icon-small:focus .icon {
    opacity: 1
}

.fy-button.fy-button-icon.fy-button-icon-slide:hover .icon,
.fy-button.fy-button-icon.fy-button-icon-slide:focus .icon,
.fy-button.fy-button-icon-small.fy-button-icon-slide:hover .icon,
.fy-button.fy-button-icon-small.fy-button-icon-slide:focus .icon {
    left: 0
}

.fy-button.fy-button-icon.fy-button-icon-right .icon,
.fy-button.fy-button-icon-small.fy-button-icon-right .icon {
    right: 20px;
    left: auto
}

.fy-button.fy-button-icon.fy-button-icon-right.fy-button-icon-slide:hover .icon,
.fy-button.fy-button-icon.fy-button-icon-right.fy-button-icon-slide:focus .icon,
.fy-button.fy-button-icon-small.fy-button-icon-right.fy-button-icon-slide:hover .icon,
.fy-button.fy-button-icon-small.fy-button-icon-right.fy-button-icon-slide:focus .icon {
    right: 0;
    left: auto
}

.fy-button.fy-button-icon-small .icon {
    width: 16px;
    height: 16px;
    margin-top: -7px
}

.fy-button .fy-price:before {
    content: "\2014\00a0";
    opacity: .4
}

.fy-button.fy-button-accent {
    color: #fff;
    background: linear-gradient(140deg, #e73a3a 0%, #E9477F 100%);
}

.fy-button.fy-button-accent:hover,
.fy-button.fy-button-accent:focus {
    color: #fff;
    background:  linear-gradient(140deg, #E9477F 0%, #e73a3a 100%);
    box-shadow: 0 16px 30px rgba(100, 75, 175, 0.2)
}

.shadow-disabled .fy-button.fy-button-accent:hover,
.shadow-disabled .fy-button.fy-button-accent:focus {
    box-shadow: none
}

.fy-button.fy-button-bordered {
    color: rgba(50, 50, 62, 0.6);
    background-color: transparent;
    border: 1px solid rgba(50, 50, 62, 0.2);
    border-radius: 4px;
    box-shadow: none
}

.fy-button.fy-button-bordered:hover,
.fy-button.fy-button-bordered:focus {
    color: #644baf;
    background-color: transparent;
    border-color: #644baf;
    box-shadow: none
}

.fy-button.fy-button-bordered.fy-button-icon .icon,
.fy-button.fy-button-bordered.fy-button-icon-small .icon {
    color: #644baf;
    left: 20px
}

.fy-button.fy-button-bordered.fy-button-icon.fy-button-icon-slide:hover .icon,
.fy-button.fy-button-bordered.fy-button-icon.fy-button-icon-slide:focus .icon,
.fy-button.fy-button-bordered.fy-button-icon-small.fy-button-icon-slide:hover .icon,
.fy-button.fy-button-bordered.fy-button-icon-small.fy-button-icon-slide:focus .icon {
    left: 0
}

.fy-button.fy-button-bordered.fy-button-icon.fy-button-icon-right .icon,
.fy-button.fy-button-bordered.fy-button-icon-small.fy-button-icon-right .icon {
    right: 20px;
    left: auto
}

.fy-button.fy-button-bordered.fy-button-icon.fy-button-icon-right.fy-button-icon-slide:hover .icon,
.fy-button.fy-button-bordered.fy-button-icon.fy-button-icon-right.fy-button-icon-slide:focus .icon,
.fy-button.fy-button-bordered.fy-button-icon-small.fy-button-icon-right.fy-button-icon-slide:hover .icon,
.fy-button.fy-button-bordered.fy-button-icon-small.fy-button-icon-right.fy-button-icon-slide:focus .icon {
    right: 0;
    left: auto
}

.fy-go-to {
    display: block;
    position: relative;
    text-align: center;
    padding: 20px 0 40px 0
}

.fy-back-to-top .fy-icon {
    padding-top: 2px
}

.fy-back-to-top:before {
    left: 0;
    width: 100%;
    top: -10px;
    background-color: transparent
}

.fy-back-to-top:hover:before {
    top: 0;
    background-color: #644baf
}

.fy-gallery {
    display: block;
    margin-bottom: 40px
}

.fy-gallery .fy-flex-container {
    margin-left: -40px
}

.fy-gallery .fy-flex-container>[class^="fy-flex-column"],
.fy-gallery .fy-flex-container>[class*=" fy-flex-column"] {
    padding-left: 40px
}

.fy-gallery .fy-masonry-gallery {
    width: calc(100% + 40px);
    padding: 0;
    margin: 0 -20px
}

.fy-gallery .fy-masonry-gallery .fy-masonry-size,
.fy-gallery .fy-masonry-gallery .fy-masonry-item {
    padding: 0 20px
}

.fy-gallery .fy-gallery-image {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
    border-radius: 4px
}

.posts-gutter-0 .fy-gallery .fy-gallery-image {
    border-radius: 0
}

.fy-gallery .fy-gallery-image a {
    display: block;
    position: relative;
    transition: all .3s ease-out 0s
}

.fy-gallery .fy-gallery-image a:before {
    opacity: 0;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background-color: rgba(250, 110, 120, 0.8);
    transition: all .3s ease-out 0s
}

.fy-gallery .fy-gallery-image a.lazy-loaded:before,
.fy-gallery .fy-gallery-image a.lazy-loaded:after {
    opacity: 1
}

.fy-gallery .fy-gallery-image:hover a:before {
    background-color: rgba(250, 110, 120, 0)
}

.post-overlay-reversed .fy-gallery .fy-gallery-image a:before {
    background-color: rgba(250, 110, 120, 0)
}

.post-overlay-reversed .fy-gallery .fy-gallery-image:hover a:before {
    background-color: rgba(250, 110, 120, 0.8)
}

body.page-template-template-gallery .fy-post-gallery .fy-post-meta .fy-post-meta-date,
body.tax-category-gallery .fy-post-gallery .fy-post-meta .fy-post-meta-date {
    display: none
}

.fy-pattern-dots-01-01-iso {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(30,30,40,0.5)" width="4" height="4" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 4"><path d="M1,2h1V1H1V2z M3,3v1h1V3H3z"/></svg>')
}

.fy-pattern-none {
    display: none
}

.fy-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-position: top left
}

.fy-filter-duotone-red {
    -webkit-filter: grayscale(100%) brightness(60%) sepia(60%) hue-rotate(-40deg) saturate(600%) contrast(160%);
    filter: grayscale(100%) brightness(60%) sepia(60%) hue-rotate(-40deg) saturate(600%) contrast(160%)
}

.fy-filter [class^="fy-filter-"],
.fy-filter [class*=" fy-filter-"] {
    opacity: .75
}

.fy-filter [class^="fy-filter-"].js-lazy,
.fy-filter [class*=" fy-filter-"].js-lazy {
    opacity: 0
}

.fy-filter [class^="fy-filter-"].js-lazy.lazy-loaded,
.fy-filter [class*=" fy-filter-"].js-lazy.lazy-loaded {
    opacity: .75
}

.fy-filter [class^="fy-filter-"].swiper-lazy,
.fy-filter [class*=" fy-filter-"].swiper-lazy {
    opacity: 0
}

.fy-filter [class^="fy-filter-"].swiper-lazy.swiper-lazy-loaded,
.fy-filter [class*=" fy-filter-"].swiper-lazy.swiper-lazy-loaded {
    opacity: .75
}

.fy-filter .fy-filter-none {
    opacity: 1
}

.fy-border-break-large {
    height: 80px;
    background-repeat: no-repeat;
    background-position: bottom center
}

.fy-border-break-large .border {
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

svg.border {
    fill: currentColor;
    transition-property: fill;
    transition-timing-function: ease-out;
    transition-duration: .3s
}

svg.border .shape {
    fill: currentColor;
    transition-property: fill, opacity;
    transition-timing-function: ease-out;
    transition-duration: .3s
}

div.border:before,
div.border:after {
    background-color: currentColor
}

.fy-border {
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    margin-bottom: -1px;
    overflow: hidden;
    color: #fff;
    background-position: center left;
    background-repeat: repeat-x
}

.fy-border.fy-border-solid,
.fy-border.fy-border-solid-double,
.fy-border.fy-border-step-left,
.fy-border.fy-border-step-right {
    margin-bottom: 0
}

.fy-border svg.border {
    float: left
}

.fy-mask-none {
    -webkit-clip-path: none;
    clip-path: none
}

.fy-container {
    position: relative;
    z-index: 1;
    background-color: #fff
}

.custom-background-image .fy-container,
.background-pattern-enabled .fy-container {
    background-color: transparent
}

.fy-canvas {
    display: block;
    position: relative;
    max-width: 100%;
    min-width: 320px;
    overflow: hidden
}

.homepage .fy-canvas {
    padding-top: 152px
}

@media screen and (max-width:767px) {
    .homepage .fy-canvas {
        padding-top: 132px
    }
}

.homepage.bar-enabled .fy-canvas {
    padding-top: 200px
}

@media screen and (max-width:767px) {
    .homepage.bar-enabled .fy-canvas {
        padding-top: 180px
    }
}

.homepage.header-layout-centered .fy-canvas {
    padding-top: 224px
}

.homepage.header-layout-centered.bar-enabled .fy-canvas {
    padding-top: 272px
}

.homepage.slideshow-height-full .fy-canvas {
    padding-top: 0 !important
}

.fy-wrap {
    position: relative;
    z-index: 1;
    background-color: #fff
}

.fy-wrap>.fy-border {
    bottom: 100%;
    z-index: -1
}

.fy-wrap.fy-wrap-homepage {
    z-index: 30;
    background-color: transparent
}

.custom-background-image .fy-wrap {
    background-color: transparent
}

.custom-background-image .fy-wrap>.fy-border {
    display: none
}

.no-slides .fy-wrap>.fy-border {
    display: none
}

.fy-main {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px
}

@media screen and (max-width:767px) {
    .fy-main {
        order: 1;
        padding-top: 40px;
        padding-bottom: 40px
    }
}

.fy-main.fy-main-empty {
    padding: 0
}

.fy-main.sidebar-active {
    max-width: 75%
}

@media screen and (max-width:1279px) {
    .fy-main.sidebar-active {
        max-width: 70%
    }
}

@media screen and (max-width:1023px) {
    .fy-main.sidebar-active {
        max-width: 60%
    }
}

@media screen and (max-width:767px) {
    .fy-main.sidebar-active {
        max-width: 100%
    }
}

.fy-sidebar {
    position: relative;
    padding-top: 80px;
    padding-bottom: 120px;
    color: rgba(50, 50, 62, 0.6)
}

@media screen and (max-width:1279px) {
    .fy-sidebar {
        padding-top: 40px
    }
}

.fy-sidebar a:not(.fy-button) {
    color: rgba(50, 50, 62, 0.6);
    border-bottom: 1px solid rgba(50, 50, 62, 0.6)
}

.fy-sidebar a:not(.fy-button):hover,
.fy-sidebar a:not(.fy-button):focus {
    color: #644baf;
    border-bottom-color: #644baf
}

.fy-sidebar .fy-blockquote .fy-cite:before {
    color: #32323e
}

.fy-sidebar .fy-blockquote .fy-cite a {
    color: #32323e
}

.fy-sidebar .fy-blockquote .fy-cite a:hover,
.fy-sidebar .fy-blockquote .fy-cite a:focus {
    color: #644baf
}

@media screen and (max-width:767px) {
    .fy-sidebar-column {
        order: 2
    }
}

.fy-grid {
    margin-bottom: -80px
}

.fy-grid-gallery {
    margin-bottom: -40px
}

.fy-centerer,
.fy-centerer-100 {
    display: block;
    width: 1480px;
    margin: 0 auto
}

@media screen and (max-width:1640px) {
    .fy-centerer,
    .fy-centerer-100 {
        width: 100%;
        padding-right: 80px;
        padding-left: 80px
    }
}

@media screen and (max-width:1279px) {
    .fy-centerer,
    .fy-centerer-100 {
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (max-width:481px) {
    .fy-centerer,
    .fy-centerer-100 {
        padding-right: 20px;
        padding-left: 20px
    }
}

.fy-centerer-50 {
    display: block;
    width: 688px;
    margin: 0 auto
}

@media screen and (max-width:768px) {
    .fy-centerer-50 {
        width: 100%;
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (max-width:767px) {
    .fy-centerer-50 {
        padding-right: 20px;
        padding-left: 20px
    }
}

.fy-centerer-75 {
    display: block;
    width: 944px;
    margin: 0 auto
}

@media screen and (max-width:1024px) {
    .fy-centerer-75 {
        width: 100%;
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (max-width:767px) {
    .fy-centerer-75 {
        padding-right: 20px;
        padding-left: 20px
    }
}

.fy-centerer-75>ul {
    display: inline-block;
    margin: 0 auto
}

.fy-centerer-75>ul li {
    text-align: left
}

.fy-centerer-full {
    width: 100%;
    padding-right: 0;
    padding-left: 0
}

.fy-centerer-stretched {
    width: 100%
}

@media screen and (min-width:1280px) {
    .fy-centerer-stretched {
        padding-right: 80px;
        padding-left: 80px
    }
}

.fy-centerer-stretched-medium {
    width: 100%
}

@media screen and (min-width:1280px) {
    .fy-centerer-stretched-medium {
        padding-right: 40px;
        padding-left: 40px
    }
}

.fy-centerer-50 .g-recaptcha,
.fy-centerer-75 .g-recaptcha {
    margin-bottom: 40px
}

.fy-centerer .fy-centerer {
    padding-right: 0;
    padding-left: 0
}

.fy-main.sidebar-active .fy-centerer,
.fy-main.sidebar-active .fy-centerer-50,
.fy-main.sidebar-active .fy-centerer-75 {
    width: 100%
}

.fy-centerer:not(.fy-centerer-full) .fy-centerer,
.fy-centerer:not(.fy-centerer-full) .fy-centerer-50,
.fy-centerer:not(.fy-centerer-full) .fy-centerer-75 {
    padding: 0
}

.fy-centerer-left {
    margin-left: 0
}

.fy-centerer-right {
    margin-right: 0
}

@media screen and (max-width:1279px) {
    .fy-flex-container.fy-flex-gutter-xlarge {
        margin-left: -80px
    }
    .fy-flex-container.fy-flex-gutter-xlarge>[class^="fy-flex-column"],
    .fy-flex-container.fy-flex-gutter-xlarge>[class*=" fy-flex-column"] {
        padding-left: 80px
    }
}

.fy-masonry {
    display: block;
    width: calc(100% + 80px);
    padding: 0;
    margin: 0 -40px -80px
}

.ie .fy-masonry:after {
    content: '';
    display: table;
    clear: both
}

.ie .fy-masonry:after {
    content: '';
    display: table;
    clear: both
}

@media screen and (max-width:767px) {
    .fy-masonry {
        padding-bottom: 40px
    }
}

.fy-masonry .fy-masonry-size {
    border: 0 !important;
    margin: 0 !important
}

.fy-masonry .fy-masonry-item {
    width: 33.333%;
    padding: 0 40px
}

@media screen and (max-width:1599px) {
    .fy-masonry .fy-masonry-item {
        width: 50%
    }
    .sidebar-active .fy-masonry .fy-masonry-item {
        width: 50%
    }
}

@media screen and (max-width:1279px) {
    .fy-masonry .fy-masonry-item {
        width: 50%
    }
    .sidebar-active .fy-masonry .fy-masonry-item {
        width: 100%
    }
}

@media screen and (max-width:1023px) {
    .fy-masonry .fy-masonry-item {
        width: 100%
    }
}

@media screen and (max-width:767px) {
    .fy-masonry .fy-masonry-item {
        width: 100%
    }
}

@media screen and (min-width:1599px) {
    .fy-masonry.fy-masonry-full .fy-masonry-item {
        width: 33.333%
    }
    .sidebar-active .fy-masonry.fy-masonry-full .fy-masonry-item {
        width: 50%
    }
}

@media screen and (max-width:1480px) {
    .fy-masonry.fy-masonry-full .fy-masonry-item {
        width: 50%
    }
    .sidebar-active .fy-masonry.fy-masonry-full .fy-masonry-item {
        width: 100%
    }
}

@media screen and (max-width:1023px) {
    .fy-masonry.fy-masonry-full .fy-masonry-item {
        width: 100%
    }
}

body.content-layout-centered .fy-masonry .fy-masonry-item {
    width: 33.333%
}

@media screen and (max-width:1599px) {
    body.content-layout-centered .fy-masonry .fy-masonry-item {
        width: 50%
    }
}

@media screen and (max-width:767px) {
    body.content-layout-centered .fy-masonry .fy-masonry-item {
        width: 100%
    }
}

body.content-layout-centered .sidebar-active .fy-masonry .fy-masonry-item {
    width: 50%
}

@media screen and (max-width:1479px) {
    body.content-layout-centered .sidebar-active .fy-masonry .fy-masonry-item {
        width: 100%
    }
}

body.post-layout-side .fy-masonry .fy-masonry-item {
    width: 100%;
    padding: 0 40px
}

@media screen and (max-width:1023px) {
    body.post-layout-side .fy-masonry .fy-masonry-item {
        width: 100%
    }
}

body.post-layout-side .sidebar-active .fy-masonry .fy-masonry-item {
    width: 100%
}

@media screen and (max-width:1023px) {
    body.post-layout-side .sidebar-active .fy-masonry .fy-masonry-item {
        width: 100%
    }
}

body.post-layout-side.content-layout-full .fy-masonry .fy-masonry-item {
    width: 50%
}

@media screen and (max-width:1279px) {
    body.post-layout-side.content-layout-full .fy-masonry .fy-masonry-item {
        width: 100%
    }
}

body.menu-post-layout-side .fy-main-menu .fy-masonry .fy-masonry-item {
    width: 50%;
    padding: 0 40px
}

@media screen and (max-width:1023px) {
    body.menu-post-layout-side .fy-main-menu .fy-masonry .fy-masonry-item {
        width: 100%
    }
}

body.menu-post-layout-side .fy-main-menu.sidebar-active .fy-masonry .fy-masonry-item {
    width: 50%
}

@media screen and (max-width:1279px) {
    body.menu-post-layout-side .fy-main-menu.sidebar-active .fy-masonry .fy-masonry-item {
        width: 100%
    }
}

body.menu-post-layout-side.content-layout-full .fy-main-menu .fy-masonry .fy-masonry-item {
    width: 33.333%
}

@media screen and (max-width:1279px) {
    body.menu-post-layout-side.content-layout-full .fy-main-menu .fy-masonry .fy-masonry-item {
        width: 50%
    }
}

@media screen and (max-width:767px) {
    body.menu-post-layout-side.content-layout-full .fy-main-menu .fy-masonry .fy-masonry-item {
        width: 100%
    }
}

body.posts-layout-masonry-broken .fy-masonry .fy-masonry-item:nth-child(odd) {
    border-top: 80px solid transparent;
    border-left: 80px solid transparent;
    border-bottom: 80px solid transparent
}

@media screen and (max-width:1279px) {
    body.posts-layout-masonry-broken .fy-masonry .fy-masonry-item:nth-child(odd) {
        border-top-width: 40px;
        border-left-width: 40px;
        border-bottom-width: 40px
    }
}

@media screen and (max-width:481px) {
    body.posts-layout-masonry-broken .fy-masonry .fy-masonry-item:nth-child(odd) {
        border-width: 0
    }
}

body.posts-layout-masonry-broken .fy-main-menu .fy-masonry .fy-masonry-item:nth-child(odd) {
    border-top-width: 40px;
    border-bottom-width: 40px
}

body.posts-layout-masonry-broken .fy-main-albums .fy-masonry .fy-masonry-item:nth-child(odd) {
    border-left-width: 0
}

.fy-masonry-clear {
    display: block;
    clear: both;
    height: 0
}

.fy-masonry-clear:after {
    content: '';
    display: table;
    clear: both
}

.fy-masonry-clear:after {
    content: '';
    display: table;
    clear: both
}

.fy-page-content,
.fy-post-content,
.fy-term-content,
.fy-comment-content,
.fy-widget-content,
.fy-form-content,
.fy-shortcode-centerer,
.fy-shortcode-column {
    position: relative;
    font-size: 18px
}

.fy-page-content img,
.fy-post-content img,
.fy-term-content img,
.fy-comment-content img,
.fy-widget-content img,
.fy-form-content img,
.fy-shortcode-centerer img,
.fy-shortcode-column img {
    max-width: 100%;
    height: auto;
    border-radius: 4px
}

.fy-page-content img.alignright,
.fy-post-content img.alignright,
.fy-term-content img.alignright,
.fy-comment-content img.alignright,
.fy-widget-content img.alignright,
.fy-form-content img.alignright,
.fy-shortcode-centerer img.alignright,
.fy-shortcode-column img.alignright {
    margin-right: -40px
}

.fy-page-content img.alignleft,
.fy-post-content img.alignleft,
.fy-term-content img.alignleft,
.fy-comment-content img.alignleft,
.fy-widget-content img.alignleft,
.fy-form-content img.alignleft,
.fy-shortcode-centerer img.alignleft,
.fy-shortcode-column img.alignleft {
    margin-left: -40px
}

.fy-page-content .wp-caption.alignright,
.fy-post-content .wp-caption.alignright,
.fy-term-content .wp-caption.alignright,
.fy-comment-content .wp-caption.alignright,
.fy-widget-content .wp-caption.alignright,
.fy-form-content .wp-caption.alignright,
.fy-shortcode-centerer .wp-caption.alignright,
.fy-shortcode-column .wp-caption.alignright {
    margin-right: -40px
}

.fy-page-content .wp-caption.alignleft,
.fy-post-content .wp-caption.alignleft,
.fy-term-content .wp-caption.alignleft,
.fy-comment-content .wp-caption.alignleft,
.fy-widget-content .wp-caption.alignleft,
.fy-form-content .wp-caption.alignleft,
.fy-shortcode-centerer .wp-caption.alignleft,
.fy-shortcode-column .wp-caption.alignleft {
    margin-left: -40px
}

.fy-page-content>p>a:not(.fy-button),
.fy-page-content>p strong>a:not(.fy-button),
.fy-page-content>h1>a:not(.fy-button),
.fy-page-content>h2>a:not(.fy-button),
.fy-page-content>h3>a:not(.fy-button),
.fy-page-content>h4>a:not(.fy-button),
.fy-page-content>h5>a:not(.fy-button),
.fy-page-content>h6>a:not(.fy-button),
.fy-page-content>blockquote>a:not(.fy-button),
.fy-page-content>blockquote p>a:not(.fy-button),
.fy-page-content>blockquote cite>a:not(.fy-button),
.fy-page-content>ul>a:not(.fy-button),
.fy-page-content>ol>a:not(.fy-button),
.fy-page-content>ul li>a:not(.fy-button),
.fy-page-content>ol li>a:not(.fy-button),
.fy-page-content>address>a:not(.fy-button),
.fy-page-content>ins>a:not(.fy-button),
.fy-page-content>table>a:not(.fy-button),
.fy-page-content>dl>a:not(.fy-button),
.fy-post-content>p>a:not(.fy-button),
.fy-post-content>p strong>a:not(.fy-button),
.fy-post-content>h1>a:not(.fy-button),
.fy-post-content>h2>a:not(.fy-button),
.fy-post-content>h3>a:not(.fy-button),
.fy-post-content>h4>a:not(.fy-button),
.fy-post-content>h5>a:not(.fy-button),
.fy-post-content>h6>a:not(.fy-button),
.fy-post-content>blockquote>a:not(.fy-button),
.fy-post-content>blockquote p>a:not(.fy-button),
.fy-post-content>blockquote cite>a:not(.fy-button),
.fy-post-content>ul>a:not(.fy-button),
.fy-post-content>ol>a:not(.fy-button),
.fy-post-content>ul li>a:not(.fy-button),
.fy-post-content>ol li>a:not(.fy-button),
.fy-post-content>address>a:not(.fy-button),
.fy-post-content>ins>a:not(.fy-button),
.fy-post-content>table>a:not(.fy-button),
.fy-post-content>dl>a:not(.fy-button),
.fy-term-content>p>a:not(.fy-button),
.fy-term-content>p strong>a:not(.fy-button),
.fy-term-content>h1>a:not(.fy-button),
.fy-term-content>h2>a:not(.fy-button),
.fy-term-content>h3>a:not(.fy-button),
.fy-term-content>h4>a:not(.fy-button),
.fy-term-content>h5>a:not(.fy-button),
.fy-term-content>h6>a:not(.fy-button),
.fy-term-content>blockquote>a:not(.fy-button),
.fy-term-content>blockquote p>a:not(.fy-button),
.fy-term-content>blockquote cite>a:not(.fy-button),
.fy-term-content>ul>a:not(.fy-button),
.fy-term-content>ol>a:not(.fy-button),
.fy-term-content>ul li>a:not(.fy-button),
.fy-term-content>ol li>a:not(.fy-button),
.fy-term-content>address>a:not(.fy-button),
.fy-term-content>ins>a:not(.fy-button),
.fy-term-content>table>a:not(.fy-button),
.fy-term-content>dl>a:not(.fy-button),
.fy-comment-content>p>a:not(.fy-button),
.fy-comment-content>p strong>a:not(.fy-button),
.fy-comment-content>h1>a:not(.fy-button),
.fy-comment-content>h2>a:not(.fy-button),
.fy-comment-content>h3>a:not(.fy-button),
.fy-comment-content>h4>a:not(.fy-button),
.fy-comment-content>h5>a:not(.fy-button),
.fy-comment-content>h6>a:not(.fy-button),
.fy-comment-content>blockquote>a:not(.fy-button),
.fy-comment-content>blockquote p>a:not(.fy-button),
.fy-comment-content>blockquote cite>a:not(.fy-button),
.fy-comment-content>ul>a:not(.fy-button),
.fy-comment-content>ol>a:not(.fy-button),
.fy-comment-content>ul li>a:not(.fy-button),
.fy-comment-content>ol li>a:not(.fy-button),
.fy-comment-content>address>a:not(.fy-button),
.fy-comment-content>ins>a:not(.fy-button),
.fy-comment-content>table>a:not(.fy-button),
.fy-comment-content>dl>a:not(.fy-button),
.fy-widget-content>p>a:not(.fy-button),
.fy-widget-content>p strong>a:not(.fy-button),
.fy-widget-content>h1>a:not(.fy-button),
.fy-widget-content>h2>a:not(.fy-button),
.fy-widget-content>h3>a:not(.fy-button),
.fy-widget-content>h4>a:not(.fy-button),
.fy-widget-content>h5>a:not(.fy-button),
.fy-widget-content>h6>a:not(.fy-button),
.fy-widget-content>blockquote>a:not(.fy-button),
.fy-widget-content>blockquote p>a:not(.fy-button),
.fy-widget-content>blockquote cite>a:not(.fy-button),
.fy-widget-content>ul>a:not(.fy-button),
.fy-widget-content>ol>a:not(.fy-button),
.fy-widget-content>ul li>a:not(.fy-button),
.fy-widget-content>ol li>a:not(.fy-button),
.fy-widget-content>address>a:not(.fy-button),
.fy-widget-content>ins>a:not(.fy-button),
.fy-widget-content>table>a:not(.fy-button),
.fy-widget-content>dl>a:not(.fy-button),
.fy-form-content>p>a:not(.fy-button),
.fy-form-content>p strong>a:not(.fy-button),
.fy-form-content>h1>a:not(.fy-button),
.fy-form-content>h2>a:not(.fy-button),
.fy-form-content>h3>a:not(.fy-button),
.fy-form-content>h4>a:not(.fy-button),
.fy-form-content>h5>a:not(.fy-button),
.fy-form-content>h6>a:not(.fy-button),
.fy-form-content>blockquote>a:not(.fy-button),
.fy-form-content>blockquote p>a:not(.fy-button),
.fy-form-content>blockquote cite>a:not(.fy-button),
.fy-form-content>ul>a:not(.fy-button),
.fy-form-content>ol>a:not(.fy-button),
.fy-form-content>ul li>a:not(.fy-button),
.fy-form-content>ol li>a:not(.fy-button),
.fy-form-content>address>a:not(.fy-button),
.fy-form-content>ins>a:not(.fy-button),
.fy-form-content>table>a:not(.fy-button),
.fy-form-content>dl>a:not(.fy-button),
.fy-shortcode-centerer>p>a:not(.fy-button),
.fy-shortcode-centerer>p strong>a:not(.fy-button),
.fy-shortcode-centerer>h1>a:not(.fy-button),
.fy-shortcode-centerer>h2>a:not(.fy-button),
.fy-shortcode-centerer>h3>a:not(.fy-button),
.fy-shortcode-centerer>h4>a:not(.fy-button),
.fy-shortcode-centerer>h5>a:not(.fy-button),
.fy-shortcode-centerer>h6>a:not(.fy-button),
.fy-shortcode-centerer>blockquote>a:not(.fy-button),
.fy-shortcode-centerer>blockquote p>a:not(.fy-button),
.fy-shortcode-centerer>blockquote cite>a:not(.fy-button),
.fy-shortcode-centerer>ul>a:not(.fy-button),
.fy-shortcode-centerer>ol>a:not(.fy-button),
.fy-shortcode-centerer>ul li>a:not(.fy-button),
.fy-shortcode-centerer>ol li>a:not(.fy-button),
.fy-shortcode-centerer>address>a:not(.fy-button),
.fy-shortcode-centerer>ins>a:not(.fy-button),
.fy-shortcode-centerer>table>a:not(.fy-button),
.fy-shortcode-centerer>dl>a:not(.fy-button),
.fy-shortcode-column>p>a:not(.fy-button),
.fy-shortcode-column>p strong>a:not(.fy-button),
.fy-shortcode-column>h1>a:not(.fy-button),
.fy-shortcode-column>h2>a:not(.fy-button),
.fy-shortcode-column>h3>a:not(.fy-button),
.fy-shortcode-column>h4>a:not(.fy-button),
.fy-shortcode-column>h5>a:not(.fy-button),
.fy-shortcode-column>h6>a:not(.fy-button),
.fy-shortcode-column>blockquote>a:not(.fy-button),
.fy-shortcode-column>blockquote p>a:not(.fy-button),
.fy-shortcode-column>blockquote cite>a:not(.fy-button),
.fy-shortcode-column>ul>a:not(.fy-button),
.fy-shortcode-column>ol>a:not(.fy-button),
.fy-shortcode-column>ul li>a:not(.fy-button),
.fy-shortcode-column>ol li>a:not(.fy-button),
.fy-shortcode-column>address>a:not(.fy-button),
.fy-shortcode-column>ins>a:not(.fy-button),
.fy-shortcode-column>table>a:not(.fy-button),
.fy-shortcode-column>dl>a:not(.fy-button) {
    color: #32323e;
    border-bottom: 1px solid #644baf
}

.fy-page-content>p>a:not(.fy-button):hover,
.fy-page-content>p strong>a:not(.fy-button):hover,
.fy-page-content>h1>a:not(.fy-button):hover,
.fy-page-content>h2>a:not(.fy-button):hover,
.fy-page-content>h3>a:not(.fy-button):hover,
.fy-page-content>h4>a:not(.fy-button):hover,
.fy-page-content>h5>a:not(.fy-button):hover,
.fy-page-content>h6>a:not(.fy-button):hover,
.fy-page-content>blockquote>a:not(.fy-button):hover,
.fy-page-content>blockquote p>a:not(.fy-button):hover,
.fy-page-content>blockquote cite>a:not(.fy-button):hover,
.fy-page-content>ul>a:not(.fy-button):hover,
.fy-page-content>ol>a:not(.fy-button):hover,
.fy-page-content>ul li>a:not(.fy-button):hover,
.fy-page-content>ol li>a:not(.fy-button):hover,
.fy-page-content>address>a:not(.fy-button):hover,
.fy-page-content>ins>a:not(.fy-button):hover,
.fy-page-content>table>a:not(.fy-button):hover,
.fy-page-content>dl>a:not(.fy-button):hover,
.fy-post-content>p>a:not(.fy-button):hover,
.fy-post-content>p strong>a:not(.fy-button):hover,
.fy-post-content>h1>a:not(.fy-button):hover,
.fy-post-content>h2>a:not(.fy-button):hover,
.fy-post-content>h3>a:not(.fy-button):hover,
.fy-post-content>h4>a:not(.fy-button):hover,
.fy-post-content>h5>a:not(.fy-button):hover,
.fy-post-content>h6>a:not(.fy-button):hover,
.fy-post-content>blockquote>a:not(.fy-button):hover,
.fy-post-content>blockquote p>a:not(.fy-button):hover,
.fy-post-content>blockquote cite>a:not(.fy-button):hover,
.fy-post-content>ul>a:not(.fy-button):hover,
.fy-post-content>ol>a:not(.fy-button):hover,
.fy-post-content>ul li>a:not(.fy-button):hover,
.fy-post-content>ol li>a:not(.fy-button):hover,
.fy-post-content>address>a:not(.fy-button):hover,
.fy-post-content>ins>a:not(.fy-button):hover,
.fy-post-content>table>a:not(.fy-button):hover,
.fy-post-content>dl>a:not(.fy-button):hover,
.fy-term-content>p>a:not(.fy-button):hover,
.fy-term-content>p strong>a:not(.fy-button):hover,
.fy-term-content>h1>a:not(.fy-button):hover,
.fy-term-content>h2>a:not(.fy-button):hover,
.fy-term-content>h3>a:not(.fy-button):hover,
.fy-term-content>h4>a:not(.fy-button):hover,
.fy-term-content>h5>a:not(.fy-button):hover,
.fy-term-content>h6>a:not(.fy-button):hover,
.fy-term-content>blockquote>a:not(.fy-button):hover,
.fy-term-content>blockquote p>a:not(.fy-button):hover,
.fy-term-content>blockquote cite>a:not(.fy-button):hover,
.fy-term-content>ul>a:not(.fy-button):hover,
.fy-term-content>ol>a:not(.fy-button):hover,
.fy-term-content>ul li>a:not(.fy-button):hover,
.fy-term-content>ol li>a:not(.fy-button):hover,
.fy-term-content>address>a:not(.fy-button):hover,
.fy-term-content>ins>a:not(.fy-button):hover,
.fy-term-content>table>a:not(.fy-button):hover,
.fy-term-content>dl>a:not(.fy-button):hover,
.fy-comment-content>p>a:not(.fy-button):hover,
.fy-comment-content>p strong>a:not(.fy-button):hover,
.fy-comment-content>h1>a:not(.fy-button):hover,
.fy-comment-content>h2>a:not(.fy-button):hover,
.fy-comment-content>h3>a:not(.fy-button):hover,
.fy-comment-content>h4>a:not(.fy-button):hover,
.fy-comment-content>h5>a:not(.fy-button):hover,
.fy-comment-content>h6>a:not(.fy-button):hover,
.fy-comment-content>blockquote>a:not(.fy-button):hover,
.fy-comment-content>blockquote p>a:not(.fy-button):hover,
.fy-comment-content>blockquote cite>a:not(.fy-button):hover,
.fy-comment-content>ul>a:not(.fy-button):hover,
.fy-comment-content>ol>a:not(.fy-button):hover,
.fy-comment-content>ul li>a:not(.fy-button):hover,
.fy-comment-content>ol li>a:not(.fy-button):hover,
.fy-comment-content>address>a:not(.fy-button):hover,
.fy-comment-content>ins>a:not(.fy-button):hover,
.fy-comment-content>table>a:not(.fy-button):hover,
.fy-comment-content>dl>a:not(.fy-button):hover,
.fy-widget-content>p>a:not(.fy-button):hover,
.fy-widget-content>p strong>a:not(.fy-button):hover,
.fy-widget-content>h1>a:not(.fy-button):hover,
.fy-widget-content>h2>a:not(.fy-button):hover,
.fy-widget-content>h3>a:not(.fy-button):hover,
.fy-widget-content>h4>a:not(.fy-button):hover,
.fy-widget-content>h5>a:not(.fy-button):hover,
.fy-widget-content>h6>a:not(.fy-button):hover,
.fy-widget-content>blockquote>a:not(.fy-button):hover,
.fy-widget-content>blockquote p>a:not(.fy-button):hover,
.fy-widget-content>blockquote cite>a:not(.fy-button):hover,
.fy-widget-content>ul>a:not(.fy-button):hover,
.fy-widget-content>ol>a:not(.fy-button):hover,
.fy-widget-content>ul li>a:not(.fy-button):hover,
.fy-widget-content>ol li>a:not(.fy-button):hover,
.fy-widget-content>address>a:not(.fy-button):hover,
.fy-widget-content>ins>a:not(.fy-button):hover,
.fy-widget-content>table>a:not(.fy-button):hover,
.fy-widget-content>dl>a:not(.fy-button):hover,
.fy-form-content>p>a:not(.fy-button):hover,
.fy-form-content>p strong>a:not(.fy-button):hover,
.fy-form-content>h1>a:not(.fy-button):hover,
.fy-form-content>h2>a:not(.fy-button):hover,
.fy-form-content>h3>a:not(.fy-button):hover,
.fy-form-content>h4>a:not(.fy-button):hover,
.fy-form-content>h5>a:not(.fy-button):hover,
.fy-form-content>h6>a:not(.fy-button):hover,
.fy-form-content>blockquote>a:not(.fy-button):hover,
.fy-form-content>blockquote p>a:not(.fy-button):hover,
.fy-form-content>blockquote cite>a:not(.fy-button):hover,
.fy-form-content>ul>a:not(.fy-button):hover,
.fy-form-content>ol>a:not(.fy-button):hover,
.fy-form-content>ul li>a:not(.fy-button):hover,
.fy-form-content>ol li>a:not(.fy-button):hover,
.fy-form-content>address>a:not(.fy-button):hover,
.fy-form-content>ins>a:not(.fy-button):hover,
.fy-form-content>table>a:not(.fy-button):hover,
.fy-form-content>dl>a:not(.fy-button):hover,
.fy-shortcode-centerer>p>a:not(.fy-button):hover,
.fy-shortcode-centerer>p strong>a:not(.fy-button):hover,
.fy-shortcode-centerer>h1>a:not(.fy-button):hover,
.fy-shortcode-centerer>h2>a:not(.fy-button):hover,
.fy-shortcode-centerer>h3>a:not(.fy-button):hover,
.fy-shortcode-centerer>h4>a:not(.fy-button):hover,
.fy-shortcode-centerer>h5>a:not(.fy-button):hover,
.fy-shortcode-centerer>h6>a:not(.fy-button):hover,
.fy-shortcode-centerer>blockquote>a:not(.fy-button):hover,
.fy-shortcode-centerer>blockquote p>a:not(.fy-button):hover,
.fy-shortcode-centerer>blockquote cite>a:not(.fy-button):hover,
.fy-shortcode-centerer>ul>a:not(.fy-button):hover,
.fy-shortcode-centerer>ol>a:not(.fy-button):hover,
.fy-shortcode-centerer>ul li>a:not(.fy-button):hover,
.fy-shortcode-centerer>ol li>a:not(.fy-button):hover,
.fy-shortcode-centerer>address>a:not(.fy-button):hover,
.fy-shortcode-centerer>ins>a:not(.fy-button):hover,
.fy-shortcode-centerer>table>a:not(.fy-button):hover,
.fy-shortcode-centerer>dl>a:not(.fy-button):hover,
.fy-shortcode-column>p>a:not(.fy-button):hover,
.fy-shortcode-column>p strong>a:not(.fy-button):hover,
.fy-shortcode-column>h1>a:not(.fy-button):hover,
.fy-shortcode-column>h2>a:not(.fy-button):hover,
.fy-shortcode-column>h3>a:not(.fy-button):hover,
.fy-shortcode-column>h4>a:not(.fy-button):hover,
.fy-shortcode-column>h5>a:not(.fy-button):hover,
.fy-shortcode-column>h6>a:not(.fy-button):hover,
.fy-shortcode-column>blockquote>a:not(.fy-button):hover,
.fy-shortcode-column>blockquote p>a:not(.fy-button):hover,
.fy-shortcode-column>blockquote cite>a:not(.fy-button):hover,
.fy-shortcode-column>ul>a:not(.fy-button):hover,
.fy-shortcode-column>ol>a:not(.fy-button):hover,
.fy-shortcode-column>ul li>a:not(.fy-button):hover,
.fy-shortcode-column>ol li>a:not(.fy-button):hover,
.fy-shortcode-column>address>a:not(.fy-button):hover,
.fy-shortcode-column>ins>a:not(.fy-button):hover,
.fy-shortcode-column>table>a:not(.fy-button):hover,
.fy-shortcode-column>dl>a:not(.fy-button):hover {
    color: #644baf;
    border-color: #644baf
}

.fy-page-content>p,
.fy-post-content>p,
.fy-term-content>p,
.fy-comment-content>p,
.fy-widget-content>p,
.fy-form-content>p,
.fy-shortcode-centerer>p,
.fy-shortcode-column>p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 33px;
    word-wrap: break-word
}

.fy-page-content>p:empty,
.fy-post-content>p:empty,
.fy-term-content>p:empty,
.fy-comment-content>p:empty,
.fy-widget-content>p:empty,
.fy-form-content>p:empty,
.fy-shortcode-centerer>p:empty,
.fy-shortcode-column>p:empty {
    margin: 0
}

.fy-page-content>p:empty:after,
.fy-post-content>p:empty:after,
.fy-term-content>p:empty:after,
.fy-comment-content>p:empty:after,
.fy-widget-content>p:empty:after,
.fy-form-content>p:empty:after,
.fy-shortcode-centerer>p:empty:after,
.fy-shortcode-column>p:empty:after {
    display: none
}

.fy-page-content>h1,
.fy-page-content>h2,
.fy-page-content>h3,
.fy-page-content>h4,
.fy-page-content>h5,
.fy-page-content>h6,
.fy-post-content>h1,
.fy-post-content>h2,
.fy-post-content>h3,
.fy-post-content>h4,
.fy-post-content>h5,
.fy-post-content>h6,
.fy-term-content>h1,
.fy-term-content>h2,
.fy-term-content>h3,
.fy-term-content>h4,
.fy-term-content>h5,
.fy-term-content>h6,
.fy-comment-content>h1,
.fy-comment-content>h2,
.fy-comment-content>h3,
.fy-comment-content>h4,
.fy-comment-content>h5,
.fy-comment-content>h6,
.fy-widget-content>h1,
.fy-widget-content>h2,
.fy-widget-content>h3,
.fy-widget-content>h4,
.fy-widget-content>h5,
.fy-widget-content>h6,
.fy-form-content>h1,
.fy-form-content>h2,
.fy-form-content>h3,
.fy-form-content>h4,
.fy-form-content>h5,
.fy-form-content>h6,
.fy-shortcode-centerer>h1,
.fy-shortcode-centerer>h2,
.fy-shortcode-centerer>h3,
.fy-shortcode-centerer>h4,
.fy-shortcode-centerer>h5,
.fy-shortcode-centerer>h6,
.fy-shortcode-column>h1,
.fy-shortcode-column>h2,
.fy-shortcode-column>h3,
.fy-shortcode-column>h4,
.fy-shortcode-column>h5,
.fy-shortcode-column>h6 {
    padding-top: 20px;
    padding-bottom: 40px;
    vertical-align: bottom;
    clear: both;
    color: #32323e
}

.fy-page-content>h1:first-child,
.fy-page-content>h2:first-child,
.fy-page-content>h3:first-child,
.fy-page-content>h4:first-child,
.fy-page-content>h5:first-child,
.fy-page-content>h6:first-child,
.fy-post-content>h1:first-child,
.fy-post-content>h2:first-child,
.fy-post-content>h3:first-child,
.fy-post-content>h4:first-child,
.fy-post-content>h5:first-child,
.fy-post-content>h6:first-child,
.fy-term-content>h1:first-child,
.fy-term-content>h2:first-child,
.fy-term-content>h3:first-child,
.fy-term-content>h4:first-child,
.fy-term-content>h5:first-child,
.fy-term-content>h6:first-child,
.fy-comment-content>h1:first-child,
.fy-comment-content>h2:first-child,
.fy-comment-content>h3:first-child,
.fy-comment-content>h4:first-child,
.fy-comment-content>h5:first-child,
.fy-comment-content>h6:first-child,
.fy-widget-content>h1:first-child,
.fy-widget-content>h2:first-child,
.fy-widget-content>h3:first-child,
.fy-widget-content>h4:first-child,
.fy-widget-content>h5:first-child,
.fy-widget-content>h6:first-child,
.fy-form-content>h1:first-child,
.fy-form-content>h2:first-child,
.fy-form-content>h3:first-child,
.fy-form-content>h4:first-child,
.fy-form-content>h5:first-child,
.fy-form-content>h6:first-child,
.fy-shortcode-centerer>h1:first-child,
.fy-shortcode-centerer>h2:first-child,
.fy-shortcode-centerer>h3:first-child,
.fy-shortcode-centerer>h4:first-child,
.fy-shortcode-centerer>h5:first-child,
.fy-shortcode-centerer>h6:first-child,
.fy-shortcode-column>h1:first-child,
.fy-shortcode-column>h2:first-child,
.fy-shortcode-column>h3:first-child,
.fy-shortcode-column>h4:first-child,
.fy-shortcode-column>h5:first-child,
.fy-shortcode-column>h6:first-child {
    padding-top: 0
}

.fy-page-content>h1+h1,
.fy-page-content>h1+h2,
.fy-page-content>h1+h3,
.fy-page-content>h1+h4,
.fy-page-content>h1+h5,
.fy-page-content>h1+h6,
.fy-page-content>h2+h1,
.fy-page-content>h2+h2,
.fy-page-content>h2+h3,
.fy-page-content>h2+h4,
.fy-page-content>h2+h5,
.fy-page-content>h2+h6,
.fy-page-content>h3+h1,
.fy-page-content>h3+h2,
.fy-page-content>h3+h3,
.fy-page-content>h3+h4,
.fy-page-content>h3+h5,
.fy-page-content>h3+h6,
.fy-page-content>h4+h1,
.fy-page-content>h4+h2,
.fy-page-content>h4+h3,
.fy-page-content>h4+h4,
.fy-page-content>h4+h5,
.fy-page-content>h4+h6,
.fy-page-content>h5+h1,
.fy-page-content>h5+h2,
.fy-page-content>h5+h3,
.fy-page-content>h5+h4,
.fy-page-content>h5+h5,
.fy-page-content>h5+h6,
.fy-page-content>h6+h1,
.fy-page-content>h6+h2,
.fy-page-content>h6+h3,
.fy-page-content>h6+h4,
.fy-page-content>h6+h5,
.fy-page-content>h6+h6,
.fy-post-content>h1+h1,
.fy-post-content>h1+h2,
.fy-post-content>h1+h3,
.fy-post-content>h1+h4,
.fy-post-content>h1+h5,
.fy-post-content>h1+h6,
.fy-post-content>h2+h1,
.fy-post-content>h2+h2,
.fy-post-content>h2+h3,
.fy-post-content>h2+h4,
.fy-post-content>h2+h5,
.fy-post-content>h2+h6,
.fy-post-content>h3+h1,
.fy-post-content>h3+h2,
.fy-post-content>h3+h3,
.fy-post-content>h3+h4,
.fy-post-content>h3+h5,
.fy-post-content>h3+h6,
.fy-post-content>h4+h1,
.fy-post-content>h4+h2,
.fy-post-content>h4+h3,
.fy-post-content>h4+h4,
.fy-post-content>h4+h5,
.fy-post-content>h4+h6,
.fy-post-content>h5+h1,
.fy-post-content>h5+h2,
.fy-post-content>h5+h3,
.fy-post-content>h5+h4,
.fy-post-content>h5+h5,
.fy-post-content>h5+h6,
.fy-post-content>h6+h1,
.fy-post-content>h6+h2,
.fy-post-content>h6+h3,
.fy-post-content>h6+h4,
.fy-post-content>h6+h5,
.fy-post-content>h6+h6,
.fy-term-content>h1+h1,
.fy-term-content>h1+h2,
.fy-term-content>h1+h3,
.fy-term-content>h1+h4,
.fy-term-content>h1+h5,
.fy-term-content>h1+h6,
.fy-term-content>h2+h1,
.fy-term-content>h2+h2,
.fy-term-content>h2+h3,
.fy-term-content>h2+h4,
.fy-term-content>h2+h5,
.fy-term-content>h2+h6,
.fy-term-content>h3+h1,
.fy-term-content>h3+h2,
.fy-term-content>h3+h3,
.fy-term-content>h3+h4,
.fy-term-content>h3+h5,
.fy-term-content>h3+h6,
.fy-term-content>h4+h1,
.fy-term-content>h4+h2,
.fy-term-content>h4+h3,
.fy-term-content>h4+h4,
.fy-term-content>h4+h5,
.fy-term-content>h4+h6,
.fy-term-content>h5+h1,
.fy-term-content>h5+h2,
.fy-term-content>h5+h3,
.fy-term-content>h5+h4,
.fy-term-content>h5+h5,
.fy-term-content>h5+h6,
.fy-term-content>h6+h1,
.fy-term-content>h6+h2,
.fy-term-content>h6+h3,
.fy-term-content>h6+h4,
.fy-term-content>h6+h5,
.fy-term-content>h6+h6,
.fy-comment-content>h1+h1,
.fy-comment-content>h1+h2,
.fy-comment-content>h1+h3,
.fy-comment-content>h1+h4,
.fy-comment-content>h1+h5,
.fy-comment-content>h1+h6,
.fy-comment-content>h2+h1,
.fy-comment-content>h2+h2,
.fy-comment-content>h2+h3,
.fy-comment-content>h2+h4,
.fy-comment-content>h2+h5,
.fy-comment-content>h2+h6,
.fy-comment-content>h3+h1,
.fy-comment-content>h3+h2,
.fy-comment-content>h3+h3,
.fy-comment-content>h3+h4,
.fy-comment-content>h3+h5,
.fy-comment-content>h3+h6,
.fy-comment-content>h4+h1,
.fy-comment-content>h4+h2,
.fy-comment-content>h4+h3,
.fy-comment-content>h4+h4,
.fy-comment-content>h4+h5,
.fy-comment-content>h4+h6,
.fy-comment-content>h5+h1,
.fy-comment-content>h5+h2,
.fy-comment-content>h5+h3,
.fy-comment-content>h5+h4,
.fy-comment-content>h5+h5,
.fy-comment-content>h5+h6,
.fy-comment-content>h6+h1,
.fy-comment-content>h6+h2,
.fy-comment-content>h6+h3,
.fy-comment-content>h6+h4,
.fy-comment-content>h6+h5,
.fy-comment-content>h6+h6,
.fy-widget-content>h1+h1,
.fy-widget-content>h1+h2,
.fy-widget-content>h1+h3,
.fy-widget-content>h1+h4,
.fy-widget-content>h1+h5,
.fy-widget-content>h1+h6,
.fy-widget-content>h2+h1,
.fy-widget-content>h2+h2,
.fy-widget-content>h2+h3,
.fy-widget-content>h2+h4,
.fy-widget-content>h2+h5,
.fy-widget-content>h2+h6,
.fy-widget-content>h3+h1,
.fy-widget-content>h3+h2,
.fy-widget-content>h3+h3,
.fy-widget-content>h3+h4,
.fy-widget-content>h3+h5,
.fy-widget-content>h3+h6,
.fy-widget-content>h4+h1,
.fy-widget-content>h4+h2,
.fy-widget-content>h4+h3,
.fy-widget-content>h4+h4,
.fy-widget-content>h4+h5,
.fy-widget-content>h4+h6,
.fy-widget-content>h5+h1,
.fy-widget-content>h5+h2,
.fy-widget-content>h5+h3,
.fy-widget-content>h5+h4,
.fy-widget-content>h5+h5,
.fy-widget-content>h5+h6,
.fy-widget-content>h6+h1,
.fy-widget-content>h6+h2,
.fy-widget-content>h6+h3,
.fy-widget-content>h6+h4,
.fy-widget-content>h6+h5,
.fy-widget-content>h6+h6,
.fy-form-content>h1+h1,
.fy-form-content>h1+h2,
.fy-form-content>h1+h3,
.fy-form-content>h1+h4,
.fy-form-content>h1+h5,
.fy-form-content>h1+h6,
.fy-form-content>h2+h1,
.fy-form-content>h2+h2,
.fy-form-content>h2+h3,
.fy-form-content>h2+h4,
.fy-form-content>h2+h5,
.fy-form-content>h2+h6,
.fy-form-content>h3+h1,
.fy-form-content>h3+h2,
.fy-form-content>h3+h3,
.fy-form-content>h3+h4,
.fy-form-content>h3+h5,
.fy-form-content>h3+h6,
.fy-form-content>h4+h1,
.fy-form-content>h4+h2,
.fy-form-content>h4+h3,
.fy-form-content>h4+h4,
.fy-form-content>h4+h5,
.fy-form-content>h4+h6,
.fy-form-content>h5+h1,
.fy-form-content>h5+h2,
.fy-form-content>h5+h3,
.fy-form-content>h5+h4,
.fy-form-content>h5+h5,
.fy-form-content>h5+h6,
.fy-form-content>h6+h1,
.fy-form-content>h6+h2,
.fy-form-content>h6+h3,
.fy-form-content>h6+h4,
.fy-form-content>h6+h5,
.fy-form-content>h6+h6,
.fy-shortcode-centerer>h1+h1,
.fy-shortcode-centerer>h1+h2,
.fy-shortcode-centerer>h1+h3,
.fy-shortcode-centerer>h1+h4,
.fy-shortcode-centerer>h1+h5,
.fy-shortcode-centerer>h1+h6,
.fy-shortcode-centerer>h2+h1,
.fy-shortcode-centerer>h2+h2,
.fy-shortcode-centerer>h2+h3,
.fy-shortcode-centerer>h2+h4,
.fy-shortcode-centerer>h2+h5,
.fy-shortcode-centerer>h2+h6,
.fy-shortcode-centerer>h3+h1,
.fy-shortcode-centerer>h3+h2,
.fy-shortcode-centerer>h3+h3,
.fy-shortcode-centerer>h3+h4,
.fy-shortcode-centerer>h3+h5,
.fy-shortcode-centerer>h3+h6,
.fy-shortcode-centerer>h4+h1,
.fy-shortcode-centerer>h4+h2,
.fy-shortcode-centerer>h4+h3,
.fy-shortcode-centerer>h4+h4,
.fy-shortcode-centerer>h4+h5,
.fy-shortcode-centerer>h4+h6,
.fy-shortcode-centerer>h5+h1,
.fy-shortcode-centerer>h5+h2,
.fy-shortcode-centerer>h5+h3,
.fy-shortcode-centerer>h5+h4,
.fy-shortcode-centerer>h5+h5,
.fy-shortcode-centerer>h5+h6,
.fy-shortcode-centerer>h6+h1,
.fy-shortcode-centerer>h6+h2,
.fy-shortcode-centerer>h6+h3,
.fy-shortcode-centerer>h6+h4,
.fy-shortcode-centerer>h6+h5,
.fy-shortcode-centerer>h6+h6,
.fy-shortcode-column>h1+h1,
.fy-shortcode-column>h1+h2,
.fy-shortcode-column>h1+h3,
.fy-shortcode-column>h1+h4,
.fy-shortcode-column>h1+h5,
.fy-shortcode-column>h1+h6,
.fy-shortcode-column>h2+h1,
.fy-shortcode-column>h2+h2,
.fy-shortcode-column>h2+h3,
.fy-shortcode-column>h2+h4,
.fy-shortcode-column>h2+h5,
.fy-shortcode-column>h2+h6,
.fy-shortcode-column>h3+h1,
.fy-shortcode-column>h3+h2,
.fy-shortcode-column>h3+h3,
.fy-shortcode-column>h3+h4,
.fy-shortcode-column>h3+h5,
.fy-shortcode-column>h3+h6,
.fy-shortcode-column>h4+h1,
.fy-shortcode-column>h4+h2,
.fy-shortcode-column>h4+h3,
.fy-shortcode-column>h4+h4,
.fy-shortcode-column>h4+h5,
.fy-shortcode-column>h4+h6,
.fy-shortcode-column>h5+h1,
.fy-shortcode-column>h5+h2,
.fy-shortcode-column>h5+h3,
.fy-shortcode-column>h5+h4,
.fy-shortcode-column>h5+h5,
.fy-shortcode-column>h5+h6,
.fy-shortcode-column>h6+h1,
.fy-shortcode-column>h6+h2,
.fy-shortcode-column>h6+h3,
.fy-shortcode-column>h6+h4,
.fy-shortcode-column>h6+h5,
.fy-shortcode-column>h6+h6 {
    padding-top: 0
}

.fy-page-content>blockquote,
.fy-post-content>blockquote,
.fy-term-content>blockquote,
.fy-comment-content>blockquote,
.fy-widget-content>blockquote,
.fy-form-content>blockquote,
.fy-shortcode-centerer>blockquote,
.fy-shortcode-column>blockquote {
    margin: 0 0 40px;
    padding: 40px 80px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.8;
    text-transform: none;
    letter-spacing: 0;
    color: #32323e;
    border-width: 0 0 0 2px;
    border-color: #32323e
}

@media screen and (max-width:1023px) {
    .fy-page-content>blockquote,
    .fy-post-content>blockquote,
    .fy-term-content>blockquote,
    .fy-comment-content>blockquote,
    .fy-widget-content>blockquote,
    .fy-form-content>blockquote,
    .fy-shortcode-centerer>blockquote,
    .fy-shortcode-column>blockquote {
        font-size: 21px;
        line-height: 31px
    }
}

@media screen and (max-width:767px) {
    .fy-page-content>blockquote,
    .fy-post-content>blockquote,
    .fy-term-content>blockquote,
    .fy-comment-content>blockquote,
    .fy-widget-content>blockquote,
    .fy-form-content>blockquote,
    .fy-shortcode-centerer>blockquote,
    .fy-shortcode-column>blockquote {
        padding: 40px
    }
}

.fy-page-content>blockquote p,
.fy-post-content>blockquote p,
.fy-term-content>blockquote p,
.fy-comment-content>blockquote p,
.fy-widget-content>blockquote p,
.fy-form-content>blockquote p,
.fy-shortcode-centerer>blockquote p,
.fy-shortcode-column>blockquote p {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    line-height: inherit
}

.fy-page-content>blockquote p>a,
.fy-post-content>blockquote p>a,
.fy-term-content>blockquote p>a,
.fy-comment-content>blockquote p>a,
.fy-widget-content>blockquote p>a,
.fy-form-content>blockquote p>a,
.fy-shortcode-centerer>blockquote p>a,
.fy-shortcode-column>blockquote p>a {
    color: #32323e;
    border-color: #644baf
}

.fy-page-content>blockquote p>a:hover,
.fy-post-content>blockquote p>a:hover,
.fy-term-content>blockquote p>a:hover,
.fy-comment-content>blockquote p>a:hover,
.fy-widget-content>blockquote p>a:hover,
.fy-form-content>blockquote p>a:hover,
.fy-shortcode-centerer>blockquote p>a:hover,
.fy-shortcode-column>blockquote p>a:hover {
    color: #644baf;
    border-color: #644baf
}

.fy-page-content>blockquote cite,
.fy-post-content>blockquote cite,
.fy-term-content>blockquote cite,
.fy-comment-content>blockquote cite,
.fy-widget-content>blockquote cite,
.fy-form-content>blockquote cite,
.fy-shortcode-centerer>blockquote cite,
.fy-shortcode-column>blockquote cite {
    display: block;
    position: relative;
    margin: 10px auto 0;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: rgba(50, 50, 62, 0.6)
}

@media screen and (max-width:1023px) {
    .fy-page-content>blockquote cite,
    .fy-post-content>blockquote cite,
    .fy-term-content>blockquote cite,
    .fy-comment-content>blockquote cite,
    .fy-widget-content>blockquote cite,
    .fy-form-content>blockquote cite,
    .fy-shortcode-centerer>blockquote cite,
    .fy-shortcode-column>blockquote cite {
        font-size: 15px
    }
}

.fy-page-content>blockquote cite[style*="text-align: center"]:before,
.fy-page-content>blockquote cite[style*="text-align: right"]:before,
.fy-post-content>blockquote cite[style*="text-align: center"]:before,
.fy-post-content>blockquote cite[style*="text-align: right"]:before,
.fy-term-content>blockquote cite[style*="text-align: center"]:before,
.fy-term-content>blockquote cite[style*="text-align: right"]:before,
.fy-comment-content>blockquote cite[style*="text-align: center"]:before,
.fy-comment-content>blockquote cite[style*="text-align: right"]:before,
.fy-widget-content>blockquote cite[style*="text-align: center"]:before,
.fy-widget-content>blockquote cite[style*="text-align: right"]:before,
.fy-form-content>blockquote cite[style*="text-align: center"]:before,
.fy-form-content>blockquote cite[style*="text-align: right"]:before,
.fy-shortcode-centerer>blockquote cite[style*="text-align: center"]:before,
.fy-shortcode-centerer>blockquote cite[style*="text-align: right"]:before,
.fy-shortcode-column>blockquote cite[style*="text-align: center"]:before,
.fy-shortcode-column>blockquote cite[style*="text-align: right"]:before {
    display: none
}

.fy-page-content>blockquote cite:before,
.fy-post-content>blockquote cite:before,
.fy-term-content>blockquote cite:before,
.fy-comment-content>blockquote cite:before,
.fy-widget-content>blockquote cite:before,
.fy-form-content>blockquote cite:before,
.fy-shortcode-centerer>blockquote cite:before,
.fy-shortcode-column>blockquote cite:before {
    border-bottom: 1px solid rgba(50, 50, 62, 0.2)
}

.fy-page-content>ul,
.fy-page-content>ol,
.fy-post-content>ul,
.fy-post-content>ol,
.fy-term-content>ul,
.fy-term-content>ol,
.fy-comment-content>ul,
.fy-comment-content>ol,
.fy-widget-content>ul,
.fy-widget-content>ol,
.fy-form-content>ul,
.fy-form-content>ol,
.fy-shortcode-centerer>ul,
.fy-shortcode-centerer>ol,
.fy-shortcode-column>ul,
.fy-shortcode-column>ol {
    display: inline-block;
    margin-bottom: 40px;
    margin-left: 20px;
    font-size: 18px
}

.fy-page-content>ul li,
.fy-page-content>ol li,
.fy-post-content>ul li,
.fy-post-content>ol li,
.fy-term-content>ul li,
.fy-term-content>ol li,
.fy-comment-content>ul li,
.fy-comment-content>ol li,
.fy-widget-content>ul li,
.fy-widget-content>ol li,
.fy-form-content>ul li,
.fy-form-content>ol li,
.fy-shortcode-centerer>ul li,
.fy-shortcode-centerer>ol li,
.fy-shortcode-column>ul li,
.fy-shortcode-column>ol li {
    width: auto;
    text-align: left
}

.fy-page-content>ul ul,
.fy-page-content>ul ol,
.fy-page-content>ol ul,
.fy-page-content>ol ol,
.fy-post-content>ul ul,
.fy-post-content>ul ol,
.fy-post-content>ol ul,
.fy-post-content>ol ol,
.fy-term-content>ul ul,
.fy-term-content>ul ol,
.fy-term-content>ol ul,
.fy-term-content>ol ol,
.fy-comment-content>ul ul,
.fy-comment-content>ul ol,
.fy-comment-content>ol ul,
.fy-comment-content>ol ol,
.fy-widget-content>ul ul,
.fy-widget-content>ul ol,
.fy-widget-content>ol ul,
.fy-widget-content>ol ol,
.fy-form-content>ul ul,
.fy-form-content>ul ol,
.fy-form-content>ol ul,
.fy-form-content>ol ol,
.fy-shortcode-centerer>ul ul,
.fy-shortcode-centerer>ul ol,
.fy-shortcode-centerer>ol ul,
.fy-shortcode-centerer>ol ol,
.fy-shortcode-column>ul ul,
.fy-shortcode-column>ul ol,
.fy-shortcode-column>ol ul,
.fy-shortcode-column>ol ol {
    display: block;
    padding: 5px 0;
    margin-left: 40px;
    margin-bottom: 0
}

.fy-page-content>ol li,
.fy-post-content>ol li,
.fy-term-content>ol li,
.fy-comment-content>ol li,
.fy-widget-content>ol li,
.fy-form-content>ol li,
.fy-shortcode-centerer>ol li,
.fy-shortcode-column>ol li {
    padding-left: 15px
}

.fy-page-content>ol ol,
.fy-post-content>ol ol,
.fy-term-content>ol ol,
.fy-comment-content>ol ol,
.fy-widget-content>ol ol,
.fy-form-content>ol ol,
.fy-shortcode-centerer>ol ol,
.fy-shortcode-column>ol ol {
    list-style-type: upper-latin
}

.fy-page-content>ol ol ol,
.fy-post-content>ol ol ol,
.fy-term-content>ol ol ol,
.fy-comment-content>ol ol ol,
.fy-widget-content>ol ol ol,
.fy-form-content>ol ol ol,
.fy-shortcode-centerer>ol ol ol,
.fy-shortcode-column>ol ol ol {
    list-style-type: lower-latin
}

.fy-page-content>ol ol ol ol,
.fy-post-content>ol ol ol ol,
.fy-term-content>ol ol ol ol,
.fy-comment-content>ol ol ol ol,
.fy-widget-content>ol ol ol ol,
.fy-form-content>ol ol ol ol,
.fy-shortcode-centerer>ol ol ol ol,
.fy-shortcode-column>ol ol ol ol {
    list-style-type: initial
}

.fy-page-content>ul,
.fy-post-content>ul,
.fy-term-content>ul,
.fy-comment-content>ul,
.fy-widget-content>ul,
.fy-form-content>ul,
.fy-shortcode-centerer>ul,
.fy-shortcode-column>ul {
    margin-left: 0
}

.fy-page-content>ul li,
.fy-post-content>ul li,
.fy-term-content>ul li,
.fy-comment-content>ul li,
.fy-widget-content>ul li,
.fy-form-content>ul li,
.fy-shortcode-centerer>ul li,
.fy-shortcode-column>ul li {
    list-style: none;
    margin-left: 40px
}

.fy-page-content>ul li:before,
.fy-post-content>ul li:before,
.fy-term-content>ul li:before,
.fy-comment-content>ul li:before,
.fy-widget-content>ul li:before,
.fy-form-content>ul li:before,
.fy-shortcode-centerer>ul li:before,
.fy-shortcode-column>ul li:before {
    content: '\2013';
    display: inline-block;
    width: 30px;
    margin-left: -40px;
    color: rgba(50, 50, 62, 0.6)
}

.fy-page-content>address,
.fy-post-content>address,
.fy-term-content>address,
.fy-comment-content>address,
.fy-widget-content>address,
.fy-form-content>address,
.fy-shortcode-centerer>address,
.fy-shortcode-column>address {
    display: inline-block;
    padding: 40px;
    margin-bottom: 40px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: .025em;
    font-style: normal;
    line-height: normal;
    color: #32323e;
    border: 2px solid rgba(50, 50, 62, 0.2)
}

.fy-page-content>pre,
.fy-post-content>pre,
.fy-term-content>pre,
.fy-comment-content>pre,
.fy-widget-content>pre,
.fy-form-content>pre,
.fy-shortcode-centerer>pre,
.fy-shortcode-column>pre {
    display: block;
    padding: 20px;
    margin-top: 0;
    margin-bottom: 40px;
    text-align: left;
    font-size: 14px;
    overflow-x: auto;
    white-space: pre;
    word-break: break-all;
    word-wrap: break-word;
    background-color: transparent;
    border: 2px solid rgba(50, 50, 62, 0.2)
}

@media screen and (max-width:767px) {
    .fy-page-content>pre,
    .fy-post-content>pre,
    .fy-term-content>pre,
    .fy-comment-content>pre,
    .fy-widget-content>pre,
    .fy-form-content>pre,
    .fy-shortcode-centerer>pre,
    .fy-shortcode-column>pre {
        padding: 20px
    }
}

.fy-page-content>ins,
.fy-post-content>ins,
.fy-term-content>ins,
.fy-comment-content>ins,
.fy-widget-content>ins,
.fy-form-content>ins,
.fy-shortcode-centerer>ins,
.fy-shortcode-column>ins {
    background-color: rgba(50, 50, 62, 0.1);
    text-decoration: none
}

.fy-page-content>table,
.fy-post-content>table,
.fy-term-content>table,
.fy-comment-content>table,
.fy-widget-content>table,
.fy-form-content>table,
.fy-shortcode-centerer>table,
.fy-shortcode-column>table {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 40px;
    text-align: left;
    border-spacing: 0;
    border-collapse: collapse
}

.fy-page-content>table a,
.fy-post-content>table a,
.fy-term-content>table a,
.fy-comment-content>table a,
.fy-widget-content>table a,
.fy-form-content>table a,
.fy-shortcode-centerer>table a,
.fy-shortcode-column>table a {
    border-bottom: 1px solid #644baf
}

.fy-page-content>table a:hover,
.fy-post-content>table a:hover,
.fy-term-content>table a:hover,
.fy-comment-content>table a:hover,
.fy-widget-content>table a:hover,
.fy-form-content>table a:hover,
.fy-shortcode-centerer>table a:hover,
.fy-shortcode-column>table a:hover {
    color: #644baf;
    border-bottom-color: #644baf
}

.fy-page-content>table th,
.fy-page-content>table td,
.fy-post-content>table th,
.fy-post-content>table td,
.fy-term-content>table th,
.fy-term-content>table td,
.fy-comment-content>table th,
.fy-comment-content>table td,
.fy-widget-content>table th,
.fy-widget-content>table td,
.fy-form-content>table th,
.fy-form-content>table td,
.fy-shortcode-centerer>table th,
.fy-shortcode-centerer>table td,
.fy-shortcode-column>table th,
.fy-shortcode-column>table td {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(50, 50, 62, 0.2)
}

.fy-page-content>table th,
.fy-post-content>table th,
.fy-term-content>table th,
.fy-comment-content>table th,
.fy-widget-content>table th,
.fy-form-content>table th,
.fy-shortcode-centerer>table th,
.fy-shortcode-column>table th {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: #32323e
}

.fy-page-content>table td,
.fy-post-content>table td,
.fy-term-content>table td,
.fy-comment-content>table td,
.fy-widget-content>table td,
.fy-form-content>table td,
.fy-shortcode-centerer>table td,
.fy-shortcode-column>table td {
    white-space: nowrap
}

.fy-page-content>table thead th,
.fy-post-content>table thead th,
.fy-term-content>table thead th,
.fy-comment-content>table thead th,
.fy-widget-content>table thead th,
.fy-form-content>table thead th,
.fy-shortcode-centerer>table thead th,
.fy-shortcode-column>table thead th {
    border-bottom: 2px solid #32323e
}

.fy-page-content>table tbody tr:last-child th,
.fy-page-content>table tbody tr:last-child td,
.fy-post-content>table tbody tr:last-child th,
.fy-post-content>table tbody tr:last-child td,
.fy-term-content>table tbody tr:last-child th,
.fy-term-content>table tbody tr:last-child td,
.fy-comment-content>table tbody tr:last-child th,
.fy-comment-content>table tbody tr:last-child td,
.fy-widget-content>table tbody tr:last-child th,
.fy-widget-content>table tbody tr:last-child td,
.fy-form-content>table tbody tr:last-child th,
.fy-form-content>table tbody tr:last-child td,
.fy-shortcode-centerer>table tbody tr:last-child th,
.fy-shortcode-centerer>table tbody tr:last-child td,
.fy-shortcode-column>table tbody tr:last-child th,
.fy-shortcode-column>table tbody tr:last-child td {
    border-bottom: 0
}

.fy-page-content>dl,
.fy-post-content>dl,
.fy-term-content>dl,
.fy-comment-content>dl,
.fy-widget-content>dl,
.fy-form-content>dl,
.fy-shortcode-centerer>dl,
.fy-shortcode-column>dl {
    margin-bottom: 40px;
    font-size: 18px
}

.fy-page-content>dl dt,
.fy-post-content>dl dt,
.fy-term-content>dl dt,
.fy-comment-content>dl dt,
.fy-widget-content>dl dt,
.fy-form-content>dl dt,
.fy-shortcode-centerer>dl dt,
.fy-shortcode-column>dl dt {
    font-weight: 700;
    color: #32323e
}

.fy-page-content>dl dd,
.fy-post-content>dl dd,
.fy-term-content>dl dd,
.fy-comment-content>dl dd,
.fy-widget-content>dl dd,
.fy-form-content>dl dd,
.fy-shortcode-centerer>dl dd,
.fy-shortcode-column>dl dd {
    position: relative;
    padding: 10px 0;
    margin-left: 40px
}

.fy-page-content>dl a,
.fy-post-content>dl a,
.fy-term-content>dl a,
.fy-comment-content>dl a,
.fy-widget-content>dl a,
.fy-form-content>dl a,
.fy-shortcode-centerer>dl a,
.fy-shortcode-column>dl a {
    border-bottom: 1px solid #644baf
}

.fy-page-content>dl a:hover,
.fy-post-content>dl a:hover,
.fy-term-content>dl a:hover,
.fy-comment-content>dl a:hover,
.fy-widget-content>dl a:hover,
.fy-form-content>dl a:hover,
.fy-shortcode-centerer>dl a:hover,
.fy-shortcode-column>dl a:hover {
    color: #644baf;
    border-bottom-color: #644baf
}

.fy-page-content hr,
.fy-post-content hr,
.fy-term-content hr,
.fy-comment-content hr,
.fy-widget-content hr,
.fy-form-content hr,
.fy-shortcode-centerer hr,
.fy-shortcode-column hr {
    margin: 40px 0;
    border-top: 0;
    border-bottom: 1px solid rgba(50, 50, 62, 0.2)
}

.fy-page-content iframe,
.fy-post-content iframe,
.fy-term-content iframe,
.fy-comment-content iframe,
.fy-widget-content iframe,
.fy-form-content iframe,
.fy-shortcode-centerer iframe,
.fy-shortcode-column iframe {
    max-width: 100%
}

.fy-page-content {
    padding-bottom: 40px
}

.fy-page-content .fy-field-search {
    margin: 40px 0
}

.fy-page-empty {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    line-height: 31px;
    text-align: center;
    color: #32323e
}

.fy-page-empty .fy-icon .icon .eye,
.fy-page-empty .fy-icon .icon .ellipse {
    fill: #644baf
}

.fy-page-widgets .fy-widget {
    margin-bottom: 80px
}

.fy-sitemap-content {
    font-size: 16px
}

.fy-sitemap-content h2,
.fy-sitemap-content h3 {
    padding: 0
}

.fy-sitemap-content ul li,
.fy-sitemap-content ol li {
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 5px
}

.fy-field:before {
    display: none
}

.fy-form-contact,
.fy-form-reservation {
    display: block;
    margin: 0 auto
}

.fy-form-contact form,
.fy-form-reservation form {
    margin: 0
}

.fy-form-contact .fy-alert,
.fy-form-reservation .fy-alert {
    margin-top: 20px;
    margin-bottom: 0
}

.fy-form-contact .fy-field .fy-label,
.fy-form-reservation .fy-field .fy-label {
    visibility: hidden;
    line-height: 0
}

.fy-form-header {
    margin-bottom: 0
}

.fy-form-header h2,
.fy-form-header h3 {
    font-size: 38px;
    line-height: 57px
}

.wpcf7 button[type='button']:hover,
.wpcf7 button[type='button']:focus,
.wpcf7 button[type='submit']:hover,
.wpcf7 button[type='submit']:focus,
.wpcf7 button[type='reset']:hover,
.wpcf7 button[type='reset']:focus,
.wpcf7 a.button:hover,
.wpcf7 a.button:focus,
.wpcf7 button.button:hover,
.wpcf7 button.button:focus,
.wpcf7 input[type='button']:hover,
.wpcf7 input[type='button']:focus,
.wpcf7 input[type='submit']:hover,
.wpcf7 input[type='submit']:focus,
.wpcf7 #respond input#submit:hover,
.wpcf7 #respond input#submit:focus,
.woocommerce button[type='button']:hover,
.woocommerce button[type='button']:focus,
.woocommerce button[type='submit']:hover,
.woocommerce button[type='submit']:focus,
.woocommerce button[type='reset']:hover,
.woocommerce button[type='reset']:focus,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce input[type='button']:hover,
.woocommerce input[type='button']:focus,
.woocommerce input[type='submit']:hover,
.woocommerce input[type='submit']:focus,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:focus,
.rtb-booking-form button[type='button']:hover,
.rtb-booking-form button[type='button']:focus,
.rtb-booking-form button[type='submit']:hover,
.rtb-booking-form button[type='submit']:focus,
.rtb-booking-form button[type='reset']:hover,
.rtb-booking-form button[type='reset']:focus,
.rtb-booking-form a.button:hover,
.rtb-booking-form a.button:focus,
.rtb-booking-form button.button:hover,
.rtb-booking-form button.button:focus,
.rtb-booking-form input[type='button']:hover,
.rtb-booking-form input[type='button']:focus,
.rtb-booking-form input[type='submit']:hover,
.rtb-booking-form input[type='submit']:focus,
.rtb-booking-form #respond input#submit:hover,
.rtb-booking-form #respond input#submit:focus,
.mc4wp-form button[type='button']:hover,
.mc4wp-form button[type='button']:focus,
.mc4wp-form button[type='submit']:hover,
.mc4wp-form button[type='submit']:focus,
.mc4wp-form button[type='reset']:hover,
.mc4wp-form button[type='reset']:focus,
.mc4wp-form a.button:hover,
.mc4wp-form a.button:focus,
.mc4wp-form button.button:hover,
.mc4wp-form button.button:focus,
.mc4wp-form input[type='button']:hover,
.mc4wp-form input[type='button']:focus,
.mc4wp-form input[type='submit']:hover,
.mc4wp-form input[type='submit']:focus,
.mc4wp-form #respond input#submit:hover,
.mc4wp-form #respond input#submit:focus,
.post-password-form button[type='button']:hover,
.post-password-form button[type='button']:focus,
.post-password-form button[type='submit']:hover,
.post-password-form button[type='submit']:focus,
.post-password-form button[type='reset']:hover,
.post-password-form button[type='reset']:focus,
.post-password-form a.button:hover,
.post-password-form a.button:focus,
.post-password-form button.button:hover,
.post-password-form button.button:focus,
.post-password-form input[type='button']:hover,
.post-password-form input[type='button']:focus,
.post-password-form input[type='submit']:hover,
.post-password-form input[type='submit']:focus,
.post-password-form #respond input#submit:hover,
.post-password-form #respond input#submit:focus,
.fy-widget button[type='button']:hover,
.fy-widget button[type='button']:focus,
.fy-widget button[type='submit']:hover,
.fy-widget button[type='submit']:focus,
.fy-widget button[type='reset']:hover,
.fy-widget button[type='reset']:focus,
.fy-widget a.button:hover,
.fy-widget a.button:focus,
.fy-widget button.button:hover,
.fy-widget button.button:focus,
.fy-widget input[type='button']:hover,
.fy-widget input[type='button']:focus,
.fy-widget input[type='submit']:hover,
.fy-widget input[type='submit']:focus,
.fy-widget #respond input#submit:hover,
.fy-widget #respond input#submit:focus {
    box-shadow: 0 16px 80px rgba(100, 75, 175, 0.2)
}

.shadow-disabled .wpcf7 button[type='button']:hover,
.shadow-disabled .wpcf7 button[type='button']:focus,
.shadow-disabled .wpcf7 button[type='submit']:hover,
.shadow-disabled .wpcf7 button[type='submit']:focus,
.shadow-disabled .wpcf7 button[type='reset']:hover,
.shadow-disabled .wpcf7 button[type='reset']:focus,
.shadow-disabled .wpcf7 a.button:hover,
.shadow-disabled .wpcf7 a.button:focus,
.shadow-disabled .wpcf7 button.button:hover,
.shadow-disabled .wpcf7 button.button:focus,
.shadow-disabled .wpcf7 input[type='button']:hover,
.shadow-disabled .wpcf7 input[type='button']:focus,
.shadow-disabled .wpcf7 input[type='submit']:hover,
.shadow-disabled .wpcf7 input[type='submit']:focus,
.shadow-disabled .wpcf7 #respond input#submit:hover,
.shadow-disabled .wpcf7 #respond input#submit:focus,
.shadow-disabled .woocommerce button[type='button']:hover,
.shadow-disabled .woocommerce button[type='button']:focus,
.shadow-disabled .woocommerce button[type='submit']:hover,
.shadow-disabled .woocommerce button[type='submit']:focus,
.shadow-disabled .woocommerce button[type='reset']:hover,
.shadow-disabled .woocommerce button[type='reset']:focus,
.shadow-disabled .woocommerce a.button:hover,
.shadow-disabled .woocommerce a.button:focus,
.shadow-disabled .woocommerce button.button:hover,
.shadow-disabled .woocommerce button.button:focus,
.shadow-disabled .woocommerce input[type='button']:hover,
.shadow-disabled .woocommerce input[type='button']:focus,
.shadow-disabled .woocommerce input[type='submit']:hover,
.shadow-disabled .woocommerce input[type='submit']:focus,
.shadow-disabled .woocommerce #respond input#submit:hover,
.shadow-disabled .woocommerce #respond input#submit:focus,
.shadow-disabled .rtb-booking-form button[type='button']:hover,
.shadow-disabled .rtb-booking-form button[type='button']:focus,
.shadow-disabled .rtb-booking-form button[type='submit']:hover,
.shadow-disabled .rtb-booking-form button[type='submit']:focus,
.shadow-disabled .rtb-booking-form button[type='reset']:hover,
.shadow-disabled .rtb-booking-form button[type='reset']:focus,
.shadow-disabled .rtb-booking-form a.button:hover,
.shadow-disabled .rtb-booking-form a.button:focus,
.shadow-disabled .rtb-booking-form button.button:hover,
.shadow-disabled .rtb-booking-form button.button:focus,
.shadow-disabled .rtb-booking-form input[type='button']:hover,
.shadow-disabled .rtb-booking-form input[type='button']:focus,
.shadow-disabled .rtb-booking-form input[type='submit']:hover,
.shadow-disabled .rtb-booking-form input[type='submit']:focus,
.shadow-disabled .rtb-booking-form #respond input#submit:hover,
.shadow-disabled .rtb-booking-form #respond input#submit:focus,
.shadow-disabled .mc4wp-form button[type='button']:hover,
.shadow-disabled .mc4wp-form button[type='button']:focus,
.shadow-disabled .mc4wp-form button[type='submit']:hover,
.shadow-disabled .mc4wp-form button[type='submit']:focus,
.shadow-disabled .mc4wp-form button[type='reset']:hover,
.shadow-disabled .mc4wp-form button[type='reset']:focus,
.shadow-disabled .mc4wp-form a.button:hover,
.shadow-disabled .mc4wp-form a.button:focus,
.shadow-disabled .mc4wp-form button.button:hover,
.shadow-disabled .mc4wp-form button.button:focus,
.shadow-disabled .mc4wp-form input[type='button']:hover,
.shadow-disabled .mc4wp-form input[type='button']:focus,
.shadow-disabled .mc4wp-form input[type='submit']:hover,
.shadow-disabled .mc4wp-form input[type='submit']:focus,
.shadow-disabled .mc4wp-form #respond input#submit:hover,
.shadow-disabled .mc4wp-form #respond input#submit:focus,
.shadow-disabled .post-password-form button[type='button']:hover,
.shadow-disabled .post-password-form button[type='button']:focus,
.shadow-disabled .post-password-form button[type='submit']:hover,
.shadow-disabled .post-password-form button[type='submit']:focus,
.shadow-disabled .post-password-form button[type='reset']:hover,
.shadow-disabled .post-password-form button[type='reset']:focus,
.shadow-disabled .post-password-form a.button:hover,
.shadow-disabled .post-password-form a.button:focus,
.shadow-disabled .post-password-form button.button:hover,
.shadow-disabled .post-password-form button.button:focus,
.shadow-disabled .post-password-form input[type='button']:hover,
.shadow-disabled .post-password-form input[type='button']:focus,
.shadow-disabled .post-password-form input[type='submit']:hover,
.shadow-disabled .post-password-form input[type='submit']:focus,
.shadow-disabled .post-password-form #respond input#submit:hover,
.shadow-disabled .post-password-form #respond input#submit:focus,
.shadow-disabled .fy-widget button[type='button']:hover,
.shadow-disabled .fy-widget button[type='button']:focus,
.shadow-disabled .fy-widget button[type='submit']:hover,
.shadow-disabled .fy-widget button[type='submit']:focus,
.shadow-disabled .fy-widget button[type='reset']:hover,
.shadow-disabled .fy-widget button[type='reset']:focus,
.shadow-disabled .fy-widget a.button:hover,
.shadow-disabled .fy-widget a.button:focus,
.shadow-disabled .fy-widget button.button:hover,
.shadow-disabled .fy-widget button.button:focus,
.shadow-disabled .fy-widget input[type='button']:hover,
.shadow-disabled .fy-widget input[type='button']:focus,
.shadow-disabled .fy-widget input[type='submit']:hover,
.shadow-disabled .fy-widget input[type='submit']:focus,
.shadow-disabled .fy-widget #respond input#submit:hover,
.shadow-disabled .fy-widget #respond input#submit:focus {
    box-shadow: none
}

.wpcf7 a.button.alt:hover,
.wpcf7 a.button.alt:focus,
.wpcf7 a.button.submit:hover,
.wpcf7 a.button.submit:focus,
.wpcf7 button.button.alt:hover,
.wpcf7 button.button.alt:focus,
.wpcf7 button.button.submit:hover,
.wpcf7 button.button.submit:focus,
.woocommerce a.button.alt:hover,
.woocommerce a.button.alt:focus,
.woocommerce a.button.submit:hover,
.woocommerce a.button.submit:focus,
.woocommerce button.button.alt:hover,
.woocommerce button.button.alt:focus,
.woocommerce button.button.submit:hover,
.woocommerce button.button.submit:focus,
.rtb-booking-form a.button.alt:hover,
.rtb-booking-form a.button.alt:focus,
.rtb-booking-form a.button.submit:hover,
.rtb-booking-form a.button.submit:focus,
.rtb-booking-form button.button.alt:hover,
.rtb-booking-form button.button.alt:focus,
.rtb-booking-form button.button.submit:hover,
.rtb-booking-form button.button.submit:focus,
.mc4wp-form a.button.alt:hover,
.mc4wp-form a.button.alt:focus,
.mc4wp-form a.button.submit:hover,
.mc4wp-form a.button.submit:focus,
.mc4wp-form button.button.alt:hover,
.mc4wp-form button.button.alt:focus,
.mc4wp-form button.button.submit:hover,
.mc4wp-form button.button.submit:focus,
.post-password-form a.button.alt:hover,
.post-password-form a.button.alt:focus,
.post-password-form a.button.submit:hover,
.post-password-form a.button.submit:focus,
.post-password-form button.button.alt:hover,
.post-password-form button.button.alt:focus,
.post-password-form button.button.submit:hover,
.post-password-form button.button.submit:focus,
.fy-widget a.button.alt:hover,
.fy-widget a.button.alt:focus,
.fy-widget a.button.submit:hover,
.fy-widget a.button.submit:focus,
.fy-widget button.button.alt:hover,
.fy-widget button.button.alt:focus,
.fy-widget button.button.submit:hover,
.fy-widget button.button.submit:focus {
    box-shadow: 0 16px 80px rgba(100, 75, 175, 0.2)
}

.shadow-disabled .wpcf7 a.button.alt:hover,
.shadow-disabled .wpcf7 a.button.alt:focus,
.shadow-disabled .wpcf7 a.button.submit:hover,
.shadow-disabled .wpcf7 a.button.submit:focus,
.shadow-disabled .wpcf7 button.button.alt:hover,
.shadow-disabled .wpcf7 button.button.alt:focus,
.shadow-disabled .wpcf7 button.button.submit:hover,
.shadow-disabled .wpcf7 button.button.submit:focus,
.shadow-disabled .woocommerce a.button.alt:hover,
.shadow-disabled .woocommerce a.button.alt:focus,
.shadow-disabled .woocommerce a.button.submit:hover,
.shadow-disabled .woocommerce a.button.submit:focus,
.shadow-disabled .woocommerce button.button.alt:hover,
.shadow-disabled .woocommerce button.button.alt:focus,
.shadow-disabled .woocommerce button.button.submit:hover,
.shadow-disabled .woocommerce button.button.submit:focus,
.shadow-disabled .rtb-booking-form a.button.alt:hover,
.shadow-disabled .rtb-booking-form a.button.alt:focus,
.shadow-disabled .rtb-booking-form a.button.submit:hover,
.shadow-disabled .rtb-booking-form a.button.submit:focus,
.shadow-disabled .rtb-booking-form button.button.alt:hover,
.shadow-disabled .rtb-booking-form button.button.alt:focus,
.shadow-disabled .rtb-booking-form button.button.submit:hover,
.shadow-disabled .rtb-booking-form button.button.submit:focus,
.shadow-disabled .mc4wp-form a.button.alt:hover,
.shadow-disabled .mc4wp-form a.button.alt:focus,
.shadow-disabled .mc4wp-form a.button.submit:hover,
.shadow-disabled .mc4wp-form a.button.submit:focus,
.shadow-disabled .mc4wp-form button.button.alt:hover,
.shadow-disabled .mc4wp-form button.button.alt:focus,
.shadow-disabled .mc4wp-form button.button.submit:hover,
.shadow-disabled .mc4wp-form button.button.submit:focus,
.shadow-disabled .post-password-form a.button.alt:hover,
.shadow-disabled .post-password-form a.button.alt:focus,
.shadow-disabled .post-password-form a.button.submit:hover,
.shadow-disabled .post-password-form a.button.submit:focus,
.shadow-disabled .post-password-form button.button.alt:hover,
.shadow-disabled .post-password-form button.button.alt:focus,
.shadow-disabled .post-password-form button.button.submit:hover,
.shadow-disabled .post-password-form button.button.submit:focus,
.shadow-disabled .fy-widget a.button.alt:hover,
.shadow-disabled .fy-widget a.button.alt:focus,
.shadow-disabled .fy-widget a.button.submit:hover,
.shadow-disabled .fy-widget a.button.submit:focus,
.shadow-disabled .fy-widget button.button.alt:hover,
.shadow-disabled .fy-widget button.button.alt:focus,
.shadow-disabled .fy-widget button.button.submit:hover,
.shadow-disabled .fy-widget button.button.submit:focus {
    box-shadow: none
}

.fy-datepicker {
    width: auto;
    max-width: 600px
}

.fy-datepicker .ui-datepicker-prev .ui-icon {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.99)" width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><polygon points="14,7.024 3.852,7.024 7.524,3.409 6.11,2.007 0,8.016 6.11,13.993 7.524,12.591 3.883,9.007 14,9.007"></polygon></svg>')
}

.fy-datepicker .ui-datepicker-next .ui-icon {
    background-image: url('data:image/svg+xml;charset=UTF-8,<?xml version="1.0" ?><svg fill="rgba(50,50,62,0.99)" width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><polygon points="9.891,1.914 8.476,3.328 12.148,7 2,7 2,9 12.117,9 8.476,12.641 9.891,14.055 16,8"></polygon></svg>')
}

.fy-datepicker {
    box-shadow: 0 16px 80px rgba(0, 0, 0, 0.2);
    border-radius: 4px
}

.shadow-disabled .fy-datepicker {
    box-shadow: none
}

.shadow-disabled .fy-datepicker {
    box-shadow: 0 16px 80px rgba(0, 0, 0, 0.2)
}

.shadow-disabled .shadow-disabled .fy-datepicker {
    box-shadow: none
}

.fy-datepicker.fy-datepicker-inline {
    box-shadow: none
}

.ui-datepicker-calendar tbody tr td a.ui-state-default {
    border-radius: 2px
}

.fy-logo {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    line-height: 72px
}

@media screen and (max-width:1023px) {
    .fy-logo {
        font-size: 25px
    }
}

@media screen and (max-width:481px) {
    .fy-logo {
        font-size: 21px
    }
}

@media screen and (max-width:1023px) {
    .fy-logo {
        display: inline-block;
        width: auto
    }
}

.fy-logo a {
    position: relative;
    display: inline-block;
    color: #fff;
    border: 0;
    white-space: nowrap
}

.fy-logo a:hover {
    color: #fff
}

.fy-logo img {
    transition: all .3s ease-out 0s
}

.fy-logo .fy-logo-img-sticky {
    display: none
}

.fy-logo .customize-partial-edit-shortcut {
    left: 0
}

.fy-logo-default {
    min-height: 72px;
    border: 0
}

.fy-logo-default a {
    display: inline-block;
    max-width: 100%;
    padding: 0;
    text-align: center;
    line-height: normal
}

.fy-logo-image {
    display: block;
    max-width: 100%;
    text-align: center
}

.fy-logo-image>a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
    max-height: 72px
}

@media screen and (max-width:767px) {
    .fy-logo-image>a {
        max-width: 280px
    }
}

@media screen and (max-width:481px) {
    .fy-logo-image>a {
        max-width: 200px
    }
}

.fy-logo-image>a>img {
    width: auto;
    height: auto;
    max-height: 72px
}

@media screen and (max-width:767px) {
    .fy-logo-image>a>img {
        max-width: 240px
    }
}

@media screen and (max-width:481px) {
    .fy-logo-image>a>img {
        max-width: 160px
    }
}

.fy-navigation-container {
    color: #fff;
    background-color: rgba(100, 75, 175, 0);
    max-height: 112px
}

.fy-navigation {
    padding: 20px 0;
    color: #fff
}

.navigation-background-solid .fy-navigation {
    padding: 20px
}

.fy-navigation>ul {
    border-right: 0;
    border-left: 0
}

.navigation-wrap .fy-navigation>ul {
    white-space: normal
}

.fy-navigation>ul>li {
    margin: 0 1px
}

.fy-navigation>ul>li:first-child {
    margin-left: 0
}

.fy-navigation>ul>li:last-child {
    margin-right: 0
}

.fy-navigation>ul>li.float-left {
    float: none
}

.fy-navigation>ul>li.float-right {
    float: none
}

.fy-navigation>ul>li a {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .025em;
    text-transform: none;
    color: #fff
}

.fy-navigation>ul>li>a {
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
    color: #fff;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-navigation>ul>li>a {
    text-shadow: none
}

@media screen and (min-width:1024px) and (max-width:1479px) {
    .fy-navigation>ul>li>a {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 14px
    }
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .fy-navigation>ul>li>a {
        padding-left: 10px;
        padding-right: 10px
    }
}

.navigation-background-solid .fy-navigation>ul>li>a {
    text-shadow: none
}

.header-background-solid .fy-navigation>ul>li>a {
    text-shadow: none
}

.fy-navigation>ul>li>a:before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 2px;
    margin-bottom: 2px;
    z-index: -1;
    background-color: transparent;
    transition: all .3s ease-out 0s
}

.fy-navigation>ul>li>a:hover,
.fy-navigation>ul>li>a:focus {
    color: #fff
}

.fy-navigation>ul>li>a:hover:before,
.fy-navigation>ul>li>a:focus:before {
    bottom: 0;
    background-color: #fa6e78
}

.fy-navigation>ul>li.important>a {
    color: #fff
}

.fy-navigation>ul>li.important>a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: calc(100% - (2px*2));
    z-index: -1;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 4px;
    transform: translateY(-50%);
    transition: all .3s ease-out 0s
}

.fy-navigation>ul>li.important>a:hover,
.fy-navigation>ul>li.important>a:focus {
    color: #fff
}

.fy-navigation>ul>li.important>a:hover:before,
.fy-navigation>ul>li.important>a:focus:before {
    background-color: transparent;
    border-color: #fa6e78
}

.fy-navigation>ul>li.important:hover>a:before,
.fy-navigation>ul>li.important.focus>a:before {
    background-color: transparent
}

.fy-navigation>ul>li.important.menu-item-has-children ul,
.fy-navigation>ul>li.important.page_item_has_children ul {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px
}

.fy-navigation>ul>li.divider {
    width: 20px;
    height: 72px;
    background-color: transparent
}

.fy-navigation>ul>li.divider:before {
    display: none
}

.fy-navigation>ul>li.divider:after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 1px;
    height: 36px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2)
}

.fy-navigation>ul>li.divider a {
    visibility: hidden;
    width: 0;
    height: 0
}

.fy-navigation>ul>li.current-menu-item>a,
.fy-navigation>ul>li.current-menu-parent>a,
.fy-navigation>ul>li.current_page_item>a,
.fy-navigation>ul>li.current_page_parent>a,
.fy-navigation>ul>li.current-cat-parent>a,
.fy-navigation>ul>li.current-cat>a {
    color: rgba(255, 255, 255, 0.6)
}

.fy-navigation>ul>li.current-menu-item.important>a:before,
.fy-navigation>ul>li.current-menu-parent.important>a:before,
.fy-navigation>ul>li.current_page_item.important>a:before,
.fy-navigation>ul>li.current_page_parent.important>a:before,
.fy-navigation>ul>li.current-cat-parent.important>a:before,
.fy-navigation>ul>li.current-cat.important>a:before {
    border-color: #fa6e78
}

.fy-navigation>ul>li.current-menu-item.important>a:after,
.fy-navigation>ul>li.current-menu-parent.important>a:after,
.fy-navigation>ul>li.current_page_item.important>a:after,
.fy-navigation>ul>li.current_page_parent.important>a:after,
.fy-navigation>ul>li.current-cat-parent.important>a:after,
.fy-navigation>ul>li.current-cat.important>a:after {
    display: none
}

.fy-navigation>ul>li:hover>a,
.fy-navigation>ul>li.focus>a {
    color: #fff
}

.fy-navigation>ul>li:hover>a:before,
.fy-navigation>ul>li.focus>a:before {
    bottom: 0;
    background-color: #fa6e78
}

.fy-navigation>ul>li:hover.important>a:before,
.fy-navigation>ul>li.focus.important>a:before {
    border-color: #fa6e78
}

.fy-navigation>ul>li ul {
    padding-top: 9px;
    padding-bottom: 9px;
    margin-top: 20px;
    color: #32323e;
    background-color: #fff;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2)
}

.shadow-disabled .fy-navigation>ul>li ul {
    box-shadow: none
}

.shadow-disabled .fy-navigation>ul>li ul {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2)
}

.shadow-disabled .shadow-disabled .fy-navigation>ul>li ul {
    box-shadow: none
}

.navigation-background-solid .fy-navigation>ul>li ul {
    border-top-right-radius: 0
}

.fy-navigation>ul>li ul li a {
    padding: 9px 25px;
    font-weight: 400;
    white-space: pre-wrap;
    color: #32323e
}

@media screen and (min-width:1024px) and (max-width:1479px) {
    .fy-navigation>ul>li ul li a {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 14px
    }
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .fy-navigation>ul>li ul li a {
        padding-left: 10px;
        padding-right: 10px
    }
}

.fy-navigation>ul>li ul li a:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    top: 50%;
    left: -12px;
    margin-top: -1px;
    background-color: #fa6e78;
    transition: all .3s ease-out 0s
}

@media screen and (min-width:1280px) and (max-width:1479px) {
    .fy-navigation>ul>li ul li a:before {
        width: 8px;
        left: -8px
    }
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .fy-navigation>ul>li ul li a:before {
        width: 5px;
        left: -5px
    }
}

.fy-navigation>ul>li ul li a:hover,
.fy-navigation>ul>li ul li a:focus {
    color: #fa6e78
}

.fy-navigation>ul>li ul li a:hover:before,
.fy-navigation>ul>li ul li a:focus:before {
    left: 0
}

.fy-navigation>ul>li ul li.divider {
    height: 20px;
    background-color: transparent
}

.fy-navigation>ul>li ul li.divider:before {
    display: none
}

.fy-navigation>ul>li ul li.divider:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 25px;
    width: calc(100% - (25px*2));
    height: 1px;
    background-color: rgba(50, 50, 62, 0.1)
}

@media screen and (max-width:1479px) {
    .fy-navigation>ul>li ul li.divider:after {
        left: 20px;
        width: calc(100% - (25px - 10px*2))
    }
}

@media screen and (max-width:1279px) {
    .fy-navigation>ul>li ul li.divider:after {
        left: 10px;
        width: calc(100% - (25px - 30px*2))
    }
}

.fy-navigation>ul>li ul li.divider a {
    display: none;
    height: 0;
    padding: 0
}

.fy-navigation>ul>li ul li.menu-item-has-children:before,
.fy-navigation>ul>li ul li.page_item_has_children:before {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 60;
    width: 10px;
    height: 2px;
    margin-top: -1px;
    background-color: rgba(50, 50, 62, 0.2);
    transition: all .3s ease-out 0s
}

.fy-navigation>ul>li ul li:hover>a,
.fy-navigation>ul>li ul li.focus>a {
    color: #fa6e78
}

.fy-navigation>ul>li ul li:hover>a:before,
.fy-navigation>ul>li ul li.focus>a:before {
    left: 0
}

.fy-navigation>ul>li ul li.current-menu-item>a,
.fy-navigation>ul>li ul li.current-menu-parent>a,
.fy-navigation>ul>li ul li.current_page_item>a,
.fy-navigation>ul>li ul li.current_page_parent>a,
.fy-navigation>ul>li ul li.current-cat-parent>a,
.fy-navigation>ul>li ul li.current-cat>a {
    color: #fa6e78
}

.fy-navigation>ul>li ul li.current-menu-item.menu-item-has-children:before,
.fy-navigation>ul>li ul li.current-menu-item.page_item_has_children:before,
.fy-navigation>ul>li ul li.current-menu-parent.menu-item-has-children:before,
.fy-navigation>ul>li ul li.current-menu-parent.page_item_has_children:before,
.fy-navigation>ul>li ul li.current_page_item.menu-item-has-children:before,
.fy-navigation>ul>li ul li.current_page_item.page_item_has_children:before,
.fy-navigation>ul>li ul li.current_page_parent.menu-item-has-children:before,
.fy-navigation>ul>li ul li.current_page_parent.page_item_has_children:before,
.fy-navigation>ul>li ul li.current-cat-parent.menu-item-has-children:before,
.fy-navigation>ul>li ul li.current-cat-parent.page_item_has_children:before,
.fy-navigation>ul>li ul li.current-cat.menu-item-has-children:before,
.fy-navigation>ul>li ul li.current-cat.page_item_has_children:before {
    background-color: #fa6e78
}

.fy-navigation>ul>li ul li:hover.menu-item-has-children:before,
.fy-navigation>ul>li ul li:hover.page_item_has_children:before,
.fy-navigation>ul>li ul li.focus.menu-item-has-children:before,
.fy-navigation>ul>li ul li.focus.page_item_has_children:before {
    background-color: #fa6e78
}

.fy-navigation>ul>li ul li:hover>a,
.fy-navigation>ul>li ul li.focus>a {
    color: #fa6e78
}

.navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child)>ul,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child)>ul,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(:first-child)>ul {
    left: auto;
    right: 0
}

.navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child)>ul li>ul,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child)>ul li>ul,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(:first-child)>ul li>ul {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: -20px
}

.navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child)>ul li.divider>a,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child)>ul li.divider>a,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(:first-child)>ul li.divider>a {
    direction: rtl
}

.navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(:first-child) ul {
    border-top-right-radius: 0;
    border-top-left-radius: 4px
}

.navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(:first-child) ul li {
    text-align: right
}

.navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li a:before,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li a:before,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(:first-child) ul li a:before {
    left: auto;
    right: -20px
}

.navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li a:hover:before,
.navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li a:focus:before,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li a:hover:before,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li a:focus:before,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(:first-child) ul li a:hover:before,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(:first-child) ul li a:focus:before {
    right: 0
}

.navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li:hover>a:before,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li:hover>a:before,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(:first-child) ul li:hover>a:before {
    right: 0
}

.navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li.menu-item-has-children:before,
.navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li.page_item_has_children:before,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li.menu-item-has-children:before,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li.page_item_has_children:before,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(:first-child) ul li.menu-item-has-children:before,
.navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(:first-child) ul li.page_item_has_children:before {
    right: auto;
    left: 20px
}

@media screen and (min-width:1280px) and (max-width:1479px) {
    .navigation-align-right .fy-navigation>ul>li:last-child:not(: first-child) ul li.menu-item-has-children a, .navigation-align-right .fy-navigation>ul>li:last-child:not(: first-child) ul li.page_item_has_children a, .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(: first-child) ul li.menu-item-has-children a, .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(: first-child) ul li.page_item_has_children a, .navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(: first-child) ul li.menu-item-has-children a, .navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(: first-child) ul li.page_item_has_children a {
        padding-right: 26.666666666667px;
        padding-left: 40px
    }
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .navigation-align-right .fy-navigation>ul>li:last-child:not(: first-child) ul li.menu-item-has-children a, .navigation-align-right .fy-navigation>ul>li:last-child:not(: first-child) ul li.page_item_has_children a, .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(: first-child) ul li.menu-item-has-children a, .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(: first-child) ul li.page_item_has_children a, .navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(: first-child) ul li.menu-item-has-children a, .navigation-align-right .fy-navigation>ul>li:nth-last-child(3):not(: first-child) ul li.page_item_has_children a {
        padding-right: 20px;
        padding-left: 40px
    }
}

.fy-navigation>ul>li>ul>li:hover>ul,
.fy-navigation>ul>li>ul>li.focus>ul {
    top: -9px
}

.fy-navigation>ul>li>ul>li:hover:last-child>ul,
.fy-navigation>ul>li>ul>li.focus:last-child>ul {
    top: -9px
}

.fy-navigation-trigger {
    margin: 0 auto;
    height: auto;
    width: 48px;
    min-height: 112px;
    padding: 0 10px;
    margin-right: -12px;
    color: #fff;
    background-color: rgba(100, 75, 175, 0)
}

.navigation-background-solid .fy-navigation-trigger {
    width: 68px;
    padding: 0 20px
}

.fy-navigation-trigger:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -2px;
    background-color: transparent;
    transition: all .3s ease-out 0s
}

.fy-navigation-trigger:hover,
.fy-navigation-trigger:focus {
    color: #fff
}

.fy-navigation-trigger:hover:before,
.fy-navigation-trigger:focus:before {
    bottom: 20px;
    background-color: #fa6e78
}

.fy-navigation-close {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    min-width: 24px;
    height: 72px;
    padding: 0 20px;
    margin-top: 20px;
    margin-right: 20px;
    color: #fff
}

@media screen and (max-width:767px) {
    .fy-navigation-close {
        margin-top: 10px;
        margin-right: 10px
    }
}

@media screen and (max-width:1023px) {
    .fy-navigation-container {
        display: block;
        min-height: 100vh;
        z-index: 190;
        background-color: #644baf;
        transition-duration: .3s
    }
    .fy-navigation {
        background-color: transparent
    }
    .fy-navigation ul li {
        text-align: left
    }
    .fy-navigation>ul>li>a {
        padding: 10px 0;
        font-size: 30px;
        color: #fff;
        background-color: transparent
    }
    .fy-navigation>ul>li>a:before {
        bottom: 0
    }
    .fy-navigation>ul>li>a:hover,
    .fy-navigation>ul>li>a:focus {
        color: #fff
    }
    .fy-navigation>ul>li>a[href='#'] {
        color: #fff
    }
    .fy-navigation>ul>li>a[href='#']:hover,
    .fy-navigation>ul>li>a[href='#']:focus {
        color: #fff
    }
    .fy-navigation>ul>li:hover>a,
    .fy-navigation>ul>li.focus>a {
        color: #fff
    }
    .fy-navigation>ul>li.important>a {
        color: #fff
    }
    .fy-navigation>ul>li.important>a:before {
        background-color: transparent
    }
    .fy-navigation>ul>li.important>a:hover,
    .fy-navigation>ul>li.important>a:focus {
        color: #fff
    }
    .fy-navigation>ul>li ul {
        background-color: transparent;
        box-shadow: none
    }
    .fy-navigation>ul>li ul li a {
        position: relative;
        display: block;
        padding: 9px 25px;
        font-size: 17px;
        color: #fff;
        background-color: transparent;
        border: 0
    }
    .fy-navigation>ul>li ul li a:before {
        right: auto !important;
        left: 0 !important;
        background-color: rgba(255, 255, 255, 0.2)
    }
    .fy-navigation>ul>li ul li a:hover,
    .fy-navigation>ul>li ul li a:focus {
        color: #fff;
        background-color: transparent
    }
    .fy-navigation>ul>li ul li a:hover:before,
    .fy-navigation>ul>li ul li a:focus:before {
        left: 0 !important
    }
    .fy-navigation>ul>li ul li:hover>a,
    .fy-navigation>ul>li ul li.focus>a {
        color: #fff;
        background-color: transparent
    }
    .fy-navigation>ul>li ul li:hover>a:before,
    .fy-navigation>ul>li ul li.focus>a:before {
        left: 0 !important;
        background-color: #fff
    }
    .fy-navigation>ul>li ul li.important>a {
        color: #fff;
        background-color: transparent;
        border-color: rgba(255, 255, 255, 0.2)
    }
    .fy-navigation>ul>li ul li.important>a:hover,
    .fy-navigation>ul>li ul li.important>a:focus {
        color: #fa6e78;
        border-color: #fa6e78
    }
    .fy-navigation>ul>li ul li.divider:after {
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.1)
    }
    .fy-navigation>ul>li ul li.current-menu-item>a,
    .fy-navigation>ul>li ul li.current-menu-parent>a,
    .fy-navigation>ul>li ul li.current_page_item>a,
    .fy-navigation>ul>li ul li.current_page_parent>a {
        color: #fa6e78
    }
    .fy-navigation>ul>li ul li ul {
        padding-left: 25px
    }
    .fy-navigation>ul>li.current-menu-item>a,
    .fy-navigation>ul>li.current-menu-parent>a,
    .fy-navigation>ul>li.current_page_item>a,
    .fy-navigation>ul>li.current_page_parent>a {
        color: rgba(255, 255, 255, 0.6)
    }
    .fy-navigation>ul>li.current-menu-item:hover>a,
    .fy-navigation>ul>li.current-menu-item.focus>a,
    .fy-navigation>ul>li.current-menu-parent:hover>a,
    .fy-navigation>ul>li.current-menu-parent.focus>a,
    .fy-navigation>ul>li.current_page_item:hover>a,
    .fy-navigation>ul>li.current_page_item.focus>a,
    .fy-navigation>ul>li.current_page_parent:hover>a,
    .fy-navigation>ul>li.current_page_parent.focus>a {
        color: #fff
    }
    .navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child)>ul,
    .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child)>ul,
    .navigation-align-right .fy-navigation>ul>li.float-right>ul {
        left: auto;
        right: 0
    }
    .navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child)>ul li>ul,
    .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child)>ul li>ul,
    .navigation-align-right .fy-navigation>ul>li.float-right>ul li>ul {
        left: 0;
        right: auto;
        margin-left: -20px;
        margin-right: 0
    }
    .navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child)>ul li.divider>a,
    .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child)>ul li.divider>a,
    .navigation-align-right .fy-navigation>ul>li.float-right>ul li.divider>a {
        direction: ltr
    }
    .navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li,
    .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li,
    .navigation-align-right .fy-navigation>ul>li.float-right ul li {
        text-align: left
    }
    .navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li a:before,
    .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li a:before,
    .navigation-align-right .fy-navigation>ul>li.float-right ul li a:before {
        left: -20px;
        right: auto
    }
    .navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li a:hover:before,
    .navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li a:focus:before,
    .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li a:hover:before,
    .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li a:focus:before,
    .navigation-align-right .fy-navigation>ul>li.float-right ul li a:hover:before,
    .navigation-align-right .fy-navigation>ul>li.float-right ul li a:focus:before {
        left: 0
    }
    .navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li:hover>a:before,
    .navigation-align-right .fy-navigation>ul>li:last-child:not(:first-child) ul li.focus>a:before,
    .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li:hover>a:before,
    .navigation-align-right .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li.focus>a:before,
    .navigation-align-right .fy-navigation>ul>li.float-right ul li:hover>a:before,
    .navigation-align-right .fy-navigation>ul>li.float-right ul li.focus>a:before {
        left: 0
    }
    .fy-navigation ul li.divider {
        width: 100%;
        height: 40px;
        background-color: transparent
    }
    .fy-navigation ul li.divider:after {
        content: '';
        position: absolute;
        top: 20px;
        left: 0;
        width: 100%;
        height: 2px;
        margin-top: -1px;
        margin-left: 0;
        background-color: rgba(255, 255, 255, 0.1)
    }
}

body.navigation-mobile-enabled .fy-navigation-container {
    display: block;
    min-height: 100vh;
    z-index: 190;
    background-color: #644baf;
    transition-duration: .3s
}

body.navigation-mobile-enabled .fy-navigation {
    background-color: transparent
}

body.navigation-mobile-enabled .fy-navigation ul li {
    text-align: left
}

body.navigation-mobile-enabled .fy-navigation>ul>li>a {
    padding: 10px 0;
    font-size: 30px;
    color: #fff;
    background-color: transparent
}

body.navigation-mobile-enabled .fy-navigation>ul>li>a:before {
    bottom: 0
}

body.navigation-mobile-enabled .fy-navigation>ul>li>a:hover,
body.navigation-mobile-enabled .fy-navigation>ul>li>a:focus {
    color: #fff
}

body.navigation-mobile-enabled .fy-navigation>ul>li>a[href='#'] {
    color: #fff
}

body.navigation-mobile-enabled .fy-navigation>ul>li>a[href='#']:hover,
body.navigation-mobile-enabled .fy-navigation>ul>li>a[href='#']:focus {
    color: #fff
}

body.navigation-mobile-enabled .fy-navigation>ul>li:hover>a,
body.navigation-mobile-enabled .fy-navigation>ul>li.focus>a {
    color: #fff
}

body.navigation-mobile-enabled .fy-navigation>ul>li.important>a {
    color: #fff
}

body.navigation-mobile-enabled .fy-navigation>ul>li.important>a:before {
    background-color: transparent
}

body.navigation-mobile-enabled .fy-navigation>ul>li.important>a:hover,
body.navigation-mobile-enabled .fy-navigation>ul>li.important>a:focus {
    color: #fff
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul {
    background-color: transparent;
    box-shadow: none
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li a {
    position: relative;
    display: block;
    padding: 9px 25px;
    font-size: 17px;
    color: #fff;
    background-color: transparent;
    border: 0
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li a:before {
    right: auto !important;
    left: 0 !important;
    background-color: rgba(255, 255, 255, 0.2)
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li a:hover,
body.navigation-mobile-enabled .fy-navigation>ul>li ul li a:focus {
    color: #fff;
    background-color: transparent
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li a:hover:before,
body.navigation-mobile-enabled .fy-navigation>ul>li ul li a:focus:before {
    left: 0 !important
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li:hover>a,
body.navigation-mobile-enabled .fy-navigation>ul>li ul li.focus>a {
    color: #fff;
    background-color: transparent
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li:hover>a:before,
body.navigation-mobile-enabled .fy-navigation>ul>li ul li.focus>a:before {
    left: 0 !important;
    background-color: #fff
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li.important>a {
    color: #fff;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2)
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li.important>a:hover,
body.navigation-mobile-enabled .fy-navigation>ul>li ul li.important>a:focus {
    color: #fa6e78;
    border-color: #fa6e78
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li.divider:after {
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1)
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li.current-menu-item>a,
body.navigation-mobile-enabled .fy-navigation>ul>li ul li.current-menu-parent>a,
body.navigation-mobile-enabled .fy-navigation>ul>li ul li.current_page_item>a,
body.navigation-mobile-enabled .fy-navigation>ul>li ul li.current_page_parent>a {
    color: #fa6e78
}

body.navigation-mobile-enabled .fy-navigation>ul>li ul li ul {
    padding-left: 25px
}

body.navigation-mobile-enabled .fy-navigation>ul>li.current-menu-item>a,
body.navigation-mobile-enabled .fy-navigation>ul>li.current-menu-parent>a,
body.navigation-mobile-enabled .fy-navigation>ul>li.current_page_item>a,
body.navigation-mobile-enabled .fy-navigation>ul>li.current_page_parent>a {
    color: rgba(255, 255, 255, 0.6)
}

body.navigation-mobile-enabled .fy-navigation>ul>li.current-menu-item:hover>a,
body.navigation-mobile-enabled .fy-navigation>ul>li.current-menu-item.focus>a,
body.navigation-mobile-enabled .fy-navigation>ul>li.current-menu-parent:hover>a,
body.navigation-mobile-enabled .fy-navigation>ul>li.current-menu-parent.focus>a,
body.navigation-mobile-enabled .fy-navigation>ul>li.current_page_item:hover>a,
body.navigation-mobile-enabled .fy-navigation>ul>li.current_page_item.focus>a,
body.navigation-mobile-enabled .fy-navigation>ul>li.current_page_parent:hover>a,
body.navigation-mobile-enabled .fy-navigation>ul>li.current_page_parent.focus>a {
    color: #fff
}

.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:last-child:not(:first-child)>ul,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:nth-last-child(2):not(:first-child)>ul,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li.float-right>ul {
    left: auto;
    right: 0
}

.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:last-child:not(:first-child)>ul li>ul,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:nth-last-child(2):not(:first-child)>ul li>ul,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li.float-right>ul li>ul {
    left: 0;
    right: auto;
    margin-left: -20px;
    margin-right: 0
}

.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:last-child:not(:first-child)>ul li.divider>a,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:nth-last-child(2):not(:first-child)>ul li.divider>a,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li.float-right>ul li.divider>a {
    direction: ltr
}

.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:last-child:not(:first-child) ul li,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li.float-right ul li {
    text-align: left
}

.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:last-child:not(:first-child) ul li a:before,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li a:before,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li.float-right ul li a:before {
    left: -20px;
    right: auto
}

.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:last-child:not(:first-child) ul li a:hover:before,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:last-child:not(:first-child) ul li a:focus:before,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li a:hover:before,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li a:focus:before,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li.float-right ul li a:hover:before,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li.float-right ul li a:focus:before {
    left: 0
}

.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:last-child:not(:first-child) ul li:hover>a:before,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:last-child:not(:first-child) ul li.focus>a:before,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li:hover>a:before,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li:nth-last-child(2):not(:first-child) ul li.focus>a:before,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li.float-right ul li:hover>a:before,
.navigation-align-right body.navigation-mobile-enabled .fy-navigation>ul>li.float-right ul li.focus>a:before {
    left: 0
}

body.navigation-mobile-enabled .fy-navigation ul li.divider {
    width: 100%;
    height: 40px;
    background-color: transparent
}

body.navigation-mobile-enabled .fy-navigation ul li.divider:after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    margin-left: 0;
    background-color: rgba(255, 255, 255, 0.1)
}

@media screen and (min-width:1024px) {
    body>.fy-navigation-container {
        display: none
    }
}

@media screen and (max-width:1023px) {
    body.bar-active .fy-container,
    body.navigation-active .fy-container {
        position: relative;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        overflow-y: scroll;
        overflow-x: hidden
    }
}

body.navigation-active .fy-navigation-container {
    opacity: 1;
    transform: translateX(0)
}

body.navigation-active .fy-navigation-container .fy-navigation>ul {
    opacity: 1;
    margin-top: 0
}

body.navigation-active .fy-navigation-close {
    opacity: 1;
    top: 0
}

body.bar-active .fy-bar-navigation-container {
    opacity: 1;
    transform: translateX(0)
}

body.bar-active .fy-bar-navigation-container .fy-navigation>ul {
    opacity: 1;
    margin-top: 0
}

body.bar-active .fy-bar-navigation-close {
    opacity: 1;
    top: 0
}

body.navigation-closing .fy-navigation-container {
    opacity: 0;
    transform: translateX(0)
}

body.navigation-closing .fy-navigation-container .fy-navigation>ul {
    opacity: 0
}

body.navigation-closing .fy-navigation-close {
    opacity: 0
}

body.bar-closing .fy-bar-navigation-container {
    opacity: 0;
    transform: translateX(0)
}

body.bar-closing .fy-bar-navigation-container .fy-navigation>ul {
    opacity: 0
}

body.bar-closing .fy-bar-navigation-close {
    opacity: 0
}

.fy-socials {
    display: block;
    padding: 40px 26.666666666667px;
    text-align: right;
    user-select: none
}

.fy-socials ul {
    display: inline-block;
    font-size: 0
}

.fy-socials ul li {
    display: inline-block;
    padding: 0;
    margin: 0 1px;
    font-size: 14px;
    vertical-align: middle
}

.fy-socials ul li:first-child {
    margin-left: 0
}

.fy-socials ul li:last-child {
    margin-right: 0
}

.fy-socials ul li a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    float: left;
    position: relative;
    width: 28px;
    height: 48px;
    overflow: visible;
    color: rgba(50, 50, 62, 0.4);
    border: 0
}

@media screen and (max-width:767px) {
    .fy-socials ul li a {
        width: 48px;
        height: 48px
    }
}

.fy-socials ul li a:before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 2px;
    margin-bottom: 2px;
    z-index: 1;
    background-color: transparent;
    transition: all .3s ease-out 0s
}

.fy-socials ul li a .fy-icon {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 20;
    color: currentColor;
    border-color: transparent;
    width: 28px;
    height: 28px
}

.fy-socials ul li a .fy-icon .icon {
    float: left;
    width: 16px;
    height: 16px;
    transition-property: width, height;
    transition-duration: .15s;
    transition-timing-function: ease-out
}

.fy-socials ul li a:hover,
.fy-socials ul li a:focus {
    color: #32323e
}

.fy-socials ul li a:hover:before,
.fy-socials ul li a:focus:before {
    bottom: 0;
    background-color: #644baf
}

.fy-socials ul li a:hover .fy-icon .icon,
.fy-socials ul li a:focus .fy-icon .icon {
    width: 24px;
    height: 24px
}

.fy-share ul li:first-child {
    display: block
}

.fy-share ul li:nth-child(2) {
    margin-left: 0
}

.fy-share ul li h5 {
    padding: 0;
    margin: 0;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: normal;
    text-align: center;
    color: rgba(50, 50, 62, 0.4)
}

.fy-share ul li a {
    width: 40px;
    height: 64px
}

body.single .fy-share {
    display: block;
    width: 100%;
    text-align: center;
    padding: 40px
}

.fy-bar {
    display: block;
    position: relative;
    height: 48px;
    max-height: 48px;
    z-index: 20;
    color: rgba(80, 80, 92, 0.8);
    background-color: #fff;
    will-change: transform
}

.fy-bar .fy-bar-container {
    display: block;
    max-height: 48px;
    transition: all .3s ease-out 0s
}

.header-width-full .fy-bar .fy-bar-container {
    padding-right: 80px;
    padding-left: 80px
}

@media screen and (max-width:1279px) {
    .header-width-full .fy-bar .fy-bar-container {
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (max-width:481px) {
    .header-width-full .fy-bar .fy-bar-container {
        padding-right: 20px;
        padding-left: 20px
    }
}

.header-width-stretched .fy-bar .fy-bar-container {
    padding-right: 80px;
    padding-left: 80px
}

@media screen and (max-width:1279px) {
    .header-width-stretched .fy-bar .fy-bar-container {
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (max-width:481px) {
    .header-width-stretched .fy-bar .fy-bar-container {
        padding-right: 20px;
        padding-left: 20px
    }
}

.header-width-stretched.navigation-align-right.header-socials-disabled.header-shop-nav-disabled .fy-bar .fy-bar-container .fy-socials {
    margin-right: -40px
}

@media screen and (max-width:1279px) {
    .header-width-stretched.navigation-align-right.header-socials-disabled.header-shop-nav-disabled .fy-bar .fy-bar-container .fy-socials {
        margin-right: -20px
    }
}

@media screen and (max-width:481px) {
    .header-width-stretched.navigation-align-right.header-socials-disabled.header-shop-nav-disabled .fy-bar .fy-bar-container .fy-socials {
        margin-right: -10px
    }
}

.header-width-centered .fy-bar .fy-bar-container {
    display: block;
    width: 1480px;
    margin: 0 auto
}

@media screen and (max-width:1640px) {
    .header-width-centered .fy-bar .fy-bar-container {
        width: 100%;
        padding-right: 80px;
        padding-left: 80px
    }
}

@media screen and (max-width:1279px) {
    .header-width-centered .fy-bar .fy-bar-container {
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (max-width:481px) {
    .header-width-centered .fy-bar .fy-bar-container {
        padding-right: 20px;
        padding-left: 20px
    }
}

.fy-bar .fy-navigation {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    min-height: 48px;
    padding: 0;
    background-color: transparent
}

.navigation-align-left .fy-bar .fy-navigation,
.navigation-align-center .fy-bar .fy-navigation,
.navigation-align-right .fy-bar .fy-navigation {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    text-align: left
}

@media screen and (min-width:1024px) {
    .fy-bar .fy-navigation>ul {
        margin-left: -25px
    }
}

@media screen and (min-width:1024px) and (max-width:1479px) {
    .fy-bar .fy-navigation>ul {
        margin-left: -20px
    }
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .fy-bar .fy-navigation>ul {
        margin-left: -10px
    }
}

@media screen and (min-width:1024px) {
    .fy-bar .fy-navigation>ul>li a {
        font-size: 14px
    }
}

.fy-bar .fy-navigation>ul>li>a {
    line-height: 48px;
    color: rgba(80, 80, 92, 0.8);
    overflow: hidden;
    text-shadow: none
}

.fy-bar .fy-navigation>ul>li>a:before {
    bottom: 0
}

.fy-bar .fy-navigation>ul>li>a:hover,
.fy-bar .fy-navigation>ul>li>a:focus {
    color: #50505c
}

.fy-bar .fy-navigation>ul>li>a:hover:before,
.fy-bar .fy-navigation>ul>li>a:focus:before {
    background-color: #fa6e78
}

.fy-bar .fy-navigation>ul>li.current-menu-item>a,
.fy-bar .fy-navigation>ul>li.current-menu-parent>a,
.fy-bar .fy-navigation>ul>li.current_page_item>a,
.fy-bar .fy-navigation>ul>li.current_page_parent>a {
    color: #fa6e78
}

.fy-bar .fy-navigation>ul>li.current-menu-item>a:hover,
.fy-bar .fy-navigation>ul>li.current-menu-item>a:focus,
.fy-bar .fy-navigation>ul>li.current-menu-parent>a:hover,
.fy-bar .fy-navigation>ul>li.current-menu-parent>a:focus,
.fy-bar .fy-navigation>ul>li.current_page_item>a:hover,
.fy-bar .fy-navigation>ul>li.current_page_item>a:focus,
.fy-bar .fy-navigation>ul>li.current_page_parent>a:hover,
.fy-bar .fy-navigation>ul>li.current_page_parent>a:focus {
    color: #fa6e78
}

.fy-bar .fy-navigation>ul>li.current-menu-item.important>a:hover,
.fy-bar .fy-navigation>ul>li.current-menu-item.important>a:focus,
.fy-bar .fy-navigation>ul>li.current-menu-parent.important>a:hover,
.fy-bar .fy-navigation>ul>li.current-menu-parent.important>a:focus,
.fy-bar .fy-navigation>ul>li.current_page_item.important>a:hover,
.fy-bar .fy-navigation>ul>li.current_page_item.important>a:focus,
.fy-bar .fy-navigation>ul>li.current_page_parent.important>a:hover,
.fy-bar .fy-navigation>ul>li.current_page_parent.important>a:focus {
    border-color: #fa6e78
}

.fy-bar .fy-navigation>ul>li:hover>a,
.fy-bar .fy-navigation>ul>li.focus>a {
    color: #50505c
}

.fy-bar .fy-navigation>ul>li:hover>a:before,
.fy-bar .fy-navigation>ul>li.focus>a:before {
    background-color: #fa6e78
}

.fy-bar .fy-navigation>ul>li ul {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.fy-bar .fy-socials {
    padding: 0;
    text-align: right;
    transition: all .3s ease-out 0s
}

@media screen and (max-width:767px) {
    .fy-bar .fy-socials ul {
        margin-left: 0
    }
}

.fy-bar .fy-socials ul li a {
    height: 48px;
    color: rgba(80, 80, 92, 0.8)
}

.fy-bar .fy-socials ul li a:before {
    bottom: 1px
}

.fy-bar .fy-socials ul li a:hover,
.fy-bar .fy-socials ul li a:focus {
    color: #50505c
}

.fy-bar .fy-socials ul li a:hover:before,
.fy-bar .fy-socials ul li a:focus:before {
    background-color: #fa6e78
}

.fy-bar .fy-shop-navigation {
    z-index: 60;
    min-height: 48px
}

.fy-bar .fy-shop-navigation>ul>li>a {
    height: 48px;
    min-height: 48px;
    overflow: hidden;
    color: rgba(80, 80, 92, 0.8)
}

.fy-bar .fy-shop-navigation>ul>li>a:before {
    bottom: 0
}

.fy-bar .fy-shop-navigation>ul>li>a:after {
    display: none
}

.fy-bar .fy-shop-navigation>ul>li>a.has-product {
    color: #50505c
}

.fy-bar .fy-shop-navigation>ul>li>a.has-product .fy-icon:before {
    background-color: #50505c
}

.fy-bar .fy-shop-navigation>ul>li>a:hover,
.fy-bar .fy-shop-navigation>ul>li>a:focus {
    color: #50505c
}

.fy-bar .fy-shop-navigation>ul>li>a:hover:before,
.fy-bar .fy-shop-navigation>ul>li>a:focus:before {
    background-color: #fa6e78
}

.fy-bar .fy-shop-navigation>ul>li:hover>a,
.fy-bar .fy-shop-navigation>ul>li.focus>a {
    color: #50505c
}

.fy-bar .fy-shop-navigation>ul>li:hover>a:before,
.fy-bar .fy-shop-navigation>ul>li.focus>a:before {
    background-color: #fa6e78
}

.fy-bar .fy-shop-navigation>ul>li>ul {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.fy-bar .fy-bar-text {
    padding: 0 0 0 10px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .025em;
    text-transform: none;
    line-height: 20px;
    color: rgba(80, 80, 92, 0.8)
}

.bar-socials-disabled .fy-bar .fy-bar-text {
    margin-right: 0
}

.fy-bar .fy-bar-text a:not(.fy-button) {
    color: rgba(80, 80, 92, 0.8);
    border-bottom: 1px solid rgba(80, 80, 92, 0.8)
}

.fy-bar .fy-bar-text a:not(.fy-button):hover {
    color: #fa6e78;
    border-bottom-color: #fa6e78
}

.fy-bar .fy-bar-icon a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px
}

.fy-bar .fy-bar-icon img {
    display: block;
    width: auto;
    height: 36px
}

@media screen and (max-width:1023px) {
    .fy-bar-navigation-container {
        z-index: 190;
        background-color: #fff;
        transition-duration: .3s
    }
    .fy-bar-navigation-container .fy-navigation {
        background-color: transparent
    }
    .fy-bar-navigation-container .fy-navigation>ul>li>a {
        padding: 10px 0;
        font-size: 30px;
        color: #50505c;
        background-color: transparent
    }
    .fy-bar-navigation-container .fy-navigation>ul>li>a:before {
        bottom: 0
    }
    .fy-bar-navigation-container .fy-navigation>ul>li>a:hover,
    .fy-bar-navigation-container .fy-navigation>ul>li>a:focus {
        color: #50505c
    }
    .fy-bar-navigation-container .fy-navigation>ul>li>a[href='#'] {
        color: #50505c
    }
    .fy-bar-navigation-container .fy-navigation>ul>li>a[href='#']:hover {
        color: #50505c
    }
    .fy-bar-navigation-container .fy-navigation>ul>li:hover>a,
    .fy-bar-navigation-container .fy-navigation>ul>li.focus>a {
        color: #50505c
    }
    .fy-bar-navigation-container .fy-navigation>ul>li.important>a {
        color: #50505c
    }
    .fy-bar-navigation-container .fy-navigation>ul>li.important>a:before {
        background-color: transparent
    }
    .fy-bar-navigation-container .fy-navigation>ul>li.important>a:hover,
    .fy-bar-navigation-container .fy-navigation>ul>li.important>a:focus {
        color: #50505c
    }
    .fy-bar-navigation-container .fy-navigation>ul>li ul {
        background-color: transparent;
        box-shadow: none;
        padding-top: 5px;
        padding-bottom: 5px
    }
    .fy-bar-navigation-container .fy-navigation>ul>li ul li ul {
        padding: 0 0 0 20px
    }
    .fy-bar-navigation-container .fy-navigation>ul>li ul li a {
        position: relative;
        padding-top: 5px;
        padding-bottom: 5px;
        color: #50505c;
        background-color: transparent;
        border: 0
    }
    .fy-bar-navigation-container .fy-navigation>ul>li ul li a:before {
        background-color: rgba(80, 80, 92, 0.2)
    }
    .fy-bar-navigation-container .fy-navigation>ul>li ul li a:hover,
    .fy-bar-navigation-container .fy-navigation>ul>li ul li a:focus {
        color: #50505c;
        background-color: transparent
    }
    .fy-bar-navigation-container .fy-navigation>ul>li ul li a:hover:before,
    .fy-bar-navigation-container .fy-navigation>ul>li ul li a:focus:before {
        background-color: #50505c
    }
    .fy-bar-navigation-container .fy-navigation>ul>li ul li:hover>a,
    .fy-bar-navigation-container .fy-navigation>ul>li ul li.focus>a {
        color: #50505c;
        background-color: transparent
    }
    .fy-bar-navigation-container .fy-navigation>ul>li ul li:hover>a:before,
    .fy-bar-navigation-container .fy-navigation>ul>li ul li.focus>a:before {
        background-color: #50505c
    }
    .fy-bar-navigation-container .fy-navigation>ul>li ul li.important>a {
        color: #50505c;
        background-color: transparent;
        border-color: rgba(80, 80, 92, 0.2)
    }
    .fy-bar-navigation-container .fy-navigation>ul>li ul li.important>a:hover,
    .fy-bar-navigation-container .fy-navigation>ul>li ul li.important>a:focus {
        color: #fa6e78;
        border-color: #fa6e78
    }
    .fy-bar-navigation-container .fy-navigation>ul>li ul li.current-menu-item>a,
    .fy-bar-navigation-container .fy-navigation>ul>li ul li.current-menu-parent>a,
    .fy-bar-navigation-container .fy-navigation>ul>li ul li.current_page_item>a,
    .fy-bar-navigation-container .fy-navigation>ul>li ul li.current_page_parent>a {
        color: #fa6e78
    }
    .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-item>a,
    .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-parent>a,
    .fy-bar-navigation-container .fy-navigation>ul>li.current_page_item>a,
    .fy-bar-navigation-container .fy-navigation>ul>li.current_page_parent>a {
        color: #fa6e78
    }
    .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-item:hover>a,
    .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-parent:hover>a,
    .fy-bar-navigation-container .fy-navigation>ul>li.current_page_item:hover>a,
    .fy-bar-navigation-container .fy-navigation>ul>li.current_page_parent:hover>a {
        color: #fa6e78
    }
    .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-item.important>a:hover,
    .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-item.important>a:focus,
    .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-parent.important>a:hover,
    .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-parent.important>a:focus,
    .fy-bar-navigation-container .fy-navigation>ul>li.current_page_item.important>a:hover,
    .fy-bar-navigation-container .fy-navigation>ul>li.current_page_item.important>a:focus,
    .fy-bar-navigation-container .fy-navigation>ul>li.current_page_parent.important>a:hover,
    .fy-bar-navigation-container .fy-navigation>ul>li.current_page_parent.important>a:focus {
        color: #fa6e78
    }
}

body.navigation-mobile-enabled .fy-bar-navigation-container {
    z-index: 190;
    background-color: #fff;
    transition-duration: .3s
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation {
    background-color: transparent
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li>a {
    padding: 10px 0;
    font-size: 30px;
    color: #50505c;
    background-color: transparent
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li>a:before {
    bottom: 0
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li>a:hover,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li>a:focus {
    color: #50505c
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li>a[href='#'] {
    color: #50505c
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li>a[href='#']:hover {
    color: #50505c
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li:hover>a,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.focus>a {
    color: #50505c
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.important>a {
    color: #50505c
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.important>a:before {
    background-color: transparent
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.important>a:hover,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.important>a:focus {
    color: #50505c
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul {
    background-color: transparent;
    box-shadow: none;
    padding-top: 5px;
    padding-bottom: 5px
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li ul {
    padding: 0 0 0 20px
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li a {
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #50505c;
    background-color: transparent;
    border: 0
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li a:before {
    background-color: rgba(80, 80, 92, 0.2)
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li a:hover,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li a:focus {
    color: #50505c;
    background-color: transparent
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li a:hover:before,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li a:focus:before {
    background-color: #50505c
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li:hover>a,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li.focus>a {
    color: #50505c;
    background-color: transparent
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li:hover>a:before,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li.focus>a:before {
    background-color: #50505c
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li.important>a {
    color: #50505c;
    background-color: transparent;
    border-color: rgba(80, 80, 92, 0.2)
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li.important>a:hover,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li.important>a:focus {
    color: #fa6e78;
    border-color: #fa6e78
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li.current-menu-item>a,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li.current-menu-parent>a,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li.current_page_item>a,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li ul li.current_page_parent>a {
    color: #fa6e78
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-item>a,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-parent>a,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current_page_item>a,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current_page_parent>a {
    color: #fa6e78
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-item:hover>a,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-parent:hover>a,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current_page_item:hover>a,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current_page_parent:hover>a {
    color: #fa6e78
}

body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-item.important>a:hover,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-item.important>a:focus,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-parent.important>a:hover,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current-menu-parent.important>a:focus,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current_page_item.important>a:hover,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current_page_item.important>a:focus,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current_page_parent.important>a:hover,
body.navigation-mobile-enabled .fy-bar-navigation-container .fy-navigation>ul>li.current_page_parent.important>a:focus {
    color: #fa6e78
}

@media screen and (min-width:1024px) {
    body>.fy-bar-navigation-container {
        display: none
    }
}

.fy-bar-navigation-trigger {
    height: 48px;
    min-height: 48px;
    margin: 0 0 0 -12px;
    overflow: hidden;
    color: #50505c
}

.fy-bar-navigation-trigger:before {
    bottom: 0;
    background-color: transparent
}

.fy-bar-navigation-trigger:hover,
.fy-bar-navigation-trigger:focus {
    color: #50505c
}

.fy-bar-navigation-trigger:hover:before,
.fy-bar-navigation-trigger:focus:before {
    bottom: 0;
    background-color: #fa6e78
}

.fy-bar-navigation-close {
    color: #50505c
}

body.navigation-active .fy-bar-navigation-close {
    display: none
}

.fy-header {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 320px;
    max-height: 200px;
    padding: 0;
    z-index: 60;
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(100, 75, 175, 0);
    transition: all .3s ease-out 0s
}

@media screen and (max-width:1023px) {
    .fy-header .fy-flex-container.fy-flex-gutter-medium {
        margin-left: -10px
    }
    .fy-header .fy-flex-container.fy-flex-gutter-medium>[class^="fy-flex-column"],
    .fy-header .fy-flex-container.fy-flex-gutter-medium>[class*=" fy-flex-column"] {
        padding-left: 10px
    }
}

@media screen and (max-width:767px) {
    .fy-header .fy-flex-container.fy-flex-gutter-small {
        margin-left: -5px
    }
    .fy-header .fy-flex-container.fy-flex-gutter-small>[class^="fy-flex-column"],
    .fy-header .fy-flex-container.fy-flex-gutter-small>[class*=" fy-flex-column"] {
        padding-left: 5px
    }
}

.navigation-mobile-enabled .fy-header .fy-desktop-hide {
    display: block
}

.fy-header .fy-header-container {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 1;
    transition: all .3s ease-out 0s
}

@media screen and (max-width:767px) {
    .fy-header .fy-header-container {
        padding-top: 10px;
        padding-bottom: 10px
    }
}

.header-width-full .fy-header .fy-header-container {
    padding-right: 80px;
    padding-left: 80px
}

@media screen and (max-width:1279px) {
    .header-width-full .fy-header .fy-header-container {
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (max-width:481px) {
    .header-width-full .fy-header .fy-header-container {
        padding-right: 20px;
        padding-left: 20px
    }
}

.header-width-stretched .fy-header .fy-header-container {
    padding-right: 80px;
    padding-left: 80px
}

@media screen and (max-width:1279px) {
    .header-width-stretched .fy-header .fy-header-container {
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (max-width:481px) {
    .header-width-stretched .fy-header .fy-header-container {
        padding-right: 20px;
        padding-left: 20px
    }
}

.header-width-stretched.navigation-align-right.header-socials-disabled.header-shop-nav-disabled .fy-header .fy-header-container .fy-navigation-container,
.header-width-stretched.navigation-align-right.header-socials-disabled.header-shop-nav-disabled .fy-header .fy-header-container .fy-navigation-trigger {
    margin-right: -80px
}

@media screen and (max-width:1279px) {
    .header-width-stretched.navigation-align-right.header-socials-disabled.header-shop-nav-disabled .fy-header .fy-header-container .fy-navigation-container,
    .header-width-stretched.navigation-align-right.header-socials-disabled.header-shop-nav-disabled .fy-header .fy-header-container .fy-navigation-trigger {
        margin-right: -40px
    }
}

@media screen and (max-width:481px) {
    .header-width-stretched.navigation-align-right.header-socials-disabled.header-shop-nav-disabled .fy-header .fy-header-container .fy-navigation-container,
    .header-width-stretched.navigation-align-right.header-socials-disabled.header-shop-nav-disabled .fy-header .fy-header-container .fy-navigation-trigger {
        margin-right: -20px
    }
}

.header-width-centered .fy-header .fy-header-container {
    display: block;
    width: 1480px;
    margin: 0 auto
}

@media screen and (max-width:1640px) {
    .header-width-centered .fy-header .fy-header-container {
        width: 100%;
        padding-right: 80px;
        padding-left: 80px
    }
}

@media screen and (max-width:1279px) {
    .header-width-centered .fy-header .fy-header-container {
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (max-width:481px) {
    .header-width-centered .fy-header .fy-header-container {
        padding-right: 20px;
        padding-left: 20px
    }
}

.fy-header .fy-border {
    top: 100%;
    bottom: auto;
    margin-top: 0;
    margin-bottom: 0;
    transform: rotateX(180deg);
    transform: rotateZ(180deg);
    left: -1px;
    width: calc(100% + 1px)
}

.fy-header>.fy-border {
    color: rgba(100, 75, 175, 0)
}

.header-background-gradient .fy-header {
    background-color: transparent;
    box-shadow: none
}

.header-background-gradient .fy-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(to bottom, rgba(100, 75, 175, 0), rgba(100, 75, 175, 0));
    transition: all .3s ease-out 0s
}

.header-background-gradient .fy-header .fy-border {
    display: none
}

.fy-header .fy-bar {
    z-index: 30
}

.fy-header .fy-header-text {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .025em;
    text-transform: none;
    line-height: 20px;
    color: #fff;
    transition: all .3s ease-out 0s
}

.fy-header .fy-header-text a:not(.fy-button) {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6)
}

.fy-header .fy-header-text a:not(.fy-button):hover,
.fy-header .fy-header-text a:not(.fy-button):focus {
    color: #fff;
    border-bottom-color: #fa6e78
}

.fy-header .fy-header-text .fy-button {
    color: #644baf;
    background-color: #fff
}

.fy-header .fy-header-text .fy-button:hover,
.fy-header .fy-header-text .fy-button:focus {
    color: #644baf;
    background-color: #fff
}

.fy-header .fy-header-text .fy-button.fy-button-accent {
    color: #fff;
    background-color: #fa6e78
}

.fy-header .fy-header-text .fy-button.fy-button-accent:hover,
.fy-header .fy-header-text .fy-button.fy-button-accent:focus {
    color: #fff;
    background-color: #fb878f
}

.fy-header .fy-header-text .fy-button.fy-button-bordered {
    color: #fff;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2)
}

.fy-header .fy-header-text .fy-button.fy-button-bordered:hover,
.fy-header .fy-header-text .fy-button.fy-button-bordered:focus {
    color: #fff;
    background-color: transparent;
    border-bottom-color: #fa6e78
}

.fy-header .fy-header-container .fy-socials {
    padding: 0;
    text-align: right;
    transition: all .3s ease-out 0s
}

@media screen and (max-width:767px) {
    .fy-header .fy-header-container .fy-socials {
        display: none
    }
}

@media screen and (max-width:767px) {
    .fy-header .fy-header-container .fy-socials ul {
        margin-left: 0
    }
}

.fy-header .fy-header-container .fy-socials ul li a {
    height: 72px;
    color: rgba(255, 255, 255, 0.6)
}

.fy-header .fy-header-container .fy-socials ul li a:before {
    bottom: -20px
}

.fy-header .fy-header-container .fy-socials ul li a:hover,
.fy-header .fy-header-container .fy-socials ul li a:focus {
    color: #fff
}

.fy-header .fy-header-container .fy-socials ul li a:hover:before,
.fy-header .fy-header-container .fy-socials ul li a:focus:before {
    bottom: 0;
    background-color: #fa6e78
}

.navigation-align-default .fy-header.fy-header-center .fy-navigation-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start
}

@media screen and (min-width:1024px) {
    .navigation-align-default .fy-header.fy-header-center .fy-navigation-container .fy-navigation>ul,
    .navigation-align-left .fy-header.fy-header-center .fy-navigation-container .fy-navigation>ul {
        margin-left: -25px
    }
}

@media screen and (min-width:1024px) and (max-width:1479px) {
    .navigation-align-default .fy-header.fy-header-center .fy-navigation-container .fy-navigation>ul,
    .navigation-align-left .fy-header.fy-header-center .fy-navigation-container .fy-navigation>ul {
        margin-left: -20px
    }
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .navigation-align-default .fy-header.fy-header-center .fy-navigation-container .fy-navigation>ul,
    .navigation-align-left .fy-header.fy-header-center .fy-navigation-container .fy-navigation>ul {
        margin-left: -10px
    }
}

.fy-header.fy-header-center .fy-header-text {
    margin-right: 10px
}

.header-socials-disabled.header-shop-nav-disabled .fy-header.fy-header-center .fy-header-text {
    margin-right: 0
}

.fy-header.fy-header-left .fy-logo a {
    margin: 0
}

.fy-header.fy-header-right {
    text-align: right
}

.fy-header.fy-header-right .fy-header-bar {
    right: auto;
    left: 0
}

.fy-header.fy-header-right .fy-logo {
    text-align: right;
    float: right
}

.fy-header.fy-header-right .fy-logo a {
    margin: 0
}

.fy-header.fy-header-centered {
    max-height: 272px
}

.navigation-background-solid .fy-header.fy-header-centered {
    max-height: 244px
}

.navigation-background-solid .fy-header.fy-header-centered .fy-navigation-container {
    margin-top: 20px
}

.navigation-background-solid.bar-enabled .fy-header.fy-header-centered {
    max-height: 292px
}

.navigation-background-solid.bar-enabled .fy-header.fy-header-centered .fy-navigation-container {
    margin-top: 20px
}

body.header-bar-merge .fy-header .fy-bar:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all .3s ease-out 0s
}

body.bar-active .fy-header.sticky-clone .fy-navigation-container,
body.navigation-active .fy-header.sticky-clone .fy-navigation-container {
    display: none
}

.fy-header.sticky-clone {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: none;
    transform: translateY(-200%)
}

.fy-header.sticky-clone .fy-header-container {
    padding-top: 10px;
    padding-bottom: 10px
}

.fy-header.sticky-clone.is-sticky {
    display: block;
    transform: translateY(-200%)
}

.fy-header.sticky-clone.is-sticky.is-sticky-visible {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-header.sticky-clone.is-sticky.is-sticky-visible {
    box-shadow: none
}

.shadow-disabled .fy-header.sticky-clone.is-sticky.is-sticky-visible {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .shadow-disabled .fy-header.sticky-clone.is-sticky.is-sticky-visible {
    box-shadow: none
}

.header-content-merge .fy-header.sticky-clone.is-sticky.is-sticky-visible,
.header-background-gradient .fy-header.sticky-clone.is-sticky.is-sticky-visible {
    box-shadow: none
}

.fy-header.sticky-clone.is-sticky.is-sticky-hidden {
    transform: translateY(-200%);
    box-shadow: none
}

.fy-header.sticky-clone.is-sticky.is-hidden {
    transform: translateY(-100%);
    box-shadow: none
}

.fy-header.sticky-clone.is-sticky.is-sticky-visible.is-visible {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-header.sticky-clone.is-sticky.is-sticky-visible.is-visible {
    box-shadow: none
}

.shadow-disabled .fy-header.sticky-clone.is-sticky.is-sticky-visible.is-visible {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .shadow-disabled .fy-header.sticky-clone.is-sticky.is-sticky-visible.is-visible {
    box-shadow: none
}

.header-content-merge .fy-header.sticky-clone.is-sticky.is-sticky-visible.is-visible,
.header-background-gradient .fy-header.sticky-clone.is-sticky.is-sticky-visible.is-visible {
    box-shadow: none
}

.fy-header.sticky-clone.is-on-top {
    transform: translateY(-200%)
}

.bar-enabled .fy-header.sticky-clone .fy-bar {
    display: none
}

.header-sticky-disabled .fy-header.sticky-clone {
    display: none
}

.fy-header.sticky-clone.is-sticky {
    background-color: #fff
}

.header-background-gradient .fy-header.sticky-clone.is-sticky {
    background-color: transparent
}

.header-background-gradient .fy-header.sticky-clone.is-sticky:before {
    background-image: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0))
}

.fy-header.sticky-clone.is-sticky .fy-border {
    color: #fff
}

.fy-header.sticky-clone.is-sticky .fy-header-text {
    color: #32323e
}

.fy-header.sticky-clone.is-sticky .fy-header-text a:not(.fy-button) {
    color: #32323e;
    border-bottom: 1px solid rgba(50, 50, 62, 0.6)
}

.fy-header.sticky-clone.is-sticky .fy-header-text a:not(.fy-button):hover,
.fy-header.sticky-clone.is-sticky .fy-header-text a:not(.fy-button):focus {
    color: #32323e;
    border-bottom-color: #fa6e78
}

.fy-header.sticky-clone.is-sticky .fy-header-text .fy-button {
    color: #fff;
    background-color: #32323e
}

.fy-header.sticky-clone.is-sticky .fy-header-text .fy-button:hover,
.fy-header.sticky-clone.is-sticky .fy-header-text .fy-button:focus {
    color: #fff;
    background-color: #3d3d4c
}

.fy-header.sticky-clone.is-sticky .fy-header-text .fy-button.fy-button-accent {
    color: #fff;
    background-color: #fa6e78
}

.fy-header.sticky-clone.is-sticky .fy-header-text .fy-button.fy-button-accent:hover,
.fy-header.sticky-clone.is-sticky .fy-header-text .fy-button.fy-button-accent:focus {
    color: #fff;
    background-color: #fb878f
}

.fy-header.sticky-clone.is-sticky .fy-header-text .fy-button.fy-button-bordered {
    color: #32323e;
    background-color: transparent;
    border-color: rgba(50, 50, 62, 0.2)
}

.fy-header.sticky-clone.is-sticky .fy-header-text .fy-button.fy-button-bordered:hover,
.fy-header.sticky-clone.is-sticky .fy-header-text .fy-button.fy-button-bordered:focus {
    color: #32323e;
    background-color: transparent;
    border-bottom-color: #fa6e78
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-logo a {
    color: #32323e
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-logo a:hover,
.fy-header.sticky-clone.is-sticky .fy-header-container .fy-logo a:focus {
    color: #32323e
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-logo.has-sticky-logo .fy-logo-img {
    display: none
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-logo.has-sticky-logo .fy-logo-img-sticky {
    display: block
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation-trigger {
    color: #32323e
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-socials ul li a {
    color: rgba(50, 50, 62, 0.4)
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-socials ul li a:before {
    bottom: -10px
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-socials ul li a:hover,
.fy-header.sticky-clone.is-sticky .fy-header-container .fy-socials ul li a:focus {
    color: #32323e
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-socials ul li a:hover:before,
.fy-header.sticky-clone.is-sticky .fy-header-container .fy-socials ul li a:focus:before {
    bottom: 0;
    background-color: #fa6e78
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-shop-navigation>ul>li>a {
    color: rgba(50, 50, 62, 0.6)
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-shop-navigation>ul>li>a:before {
    bottom: -10px
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-shop-navigation>ul>li>a.has-product {
    color: #32323e
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-shop-navigation>ul>li>a.has-product .fy-icon:before {
    background-color: #32323e
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-shop-navigation>ul>li:hover>a,
.fy-header.sticky-clone.is-sticky .fy-header-container .fy-shop-navigation>ul>li.focus>a {
    color: #32323e
}

.fy-header.sticky-clone.is-sticky .fy-header-container .fy-shop-navigation>ul>li:hover>a:before,
.fy-header.sticky-clone.is-sticky .fy-header-container .fy-shop-navigation>ul>li.focus>a:before {
    bottom: 0;
    background-color: #fa6e78
}

@media screen and (min-width:1024px) {
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation {
        padding: 10px 0;
        color: #32323e
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li>a {
        color: #32323e;
        text-shadow: none
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li>a:before {
        bottom: -10px
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li>a:hover,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li>a:focus {
        color: #32323e
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li>a:hover:before,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li>a:focus:before {
        bottom: 0;
        background-color: #fa6e78
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li>a[target="_blank"]:hover:after,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li>a[target="_blank"]:focus:after {
        background-color: #32323e
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.important>a {
        color: #32323e
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.important>a:before {
        background-color: transparent;
        border-color: #32323e
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.important:hover>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.important.focus>a {
        color: #32323e
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.important:hover>a:before,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.important.focus>a:before {
        background-color: transparent;
        border-color: #fa6e78
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.divider:after {
        background-color: rgba(50, 50, 62, 0.2)
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current-menu-item>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current-menu-parent>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current_page_item>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current_page_parent>a {
        color: rgba(50, 50, 62, 0.6)
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current-menu-item:hover>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current-menu-item.focus>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current-menu-parent:hover>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current-menu-parent.focus>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current_page_item:hover>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current_page_item.focus>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current_page_parent:hover>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current_page_parent.focus>a {
        color: #32323e
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current-menu-item.important>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current-menu-parent.important>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current_page_item.important>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current_page_parent.important>a {
        color: #32323e
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current-menu-item.important>a:before,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current-menu-parent.important>a:before,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current_page_item.important>a:before,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.current_page_parent.important>a:before {
        border-color: #fa6e78
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li ul {
        margin-top: 10px
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li:hover>a,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.focus>a {
        color: #32323e
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li:hover>a:before,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.focus>a:before {
        bottom: 0;
        background-color: #fa6e78
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li:hover.important>a:before,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.focus.important>a:before {
        border-color: #fa6e78;
        background-color: transparent
    }
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li:hover ul,
    .fy-header.sticky-clone.is-sticky .fy-header-container .fy-navigation>ul>li.focus ul {
        margin-top: 0
    }
}

body.admin-bar .fy-header.sticky-clone.is-sticky {
    margin-top: 32px !important
}

@media screen and (max-width:782px) {
    body.admin-bar .fy-header.sticky-clone.is-sticky {
        margin-top: 46px !important
    }
}

body.admin-bar.header-sticky-disabled .fy-header {
    margin-top: 0 !important
}

body.admin-bar.header-sticky-disabled.bar-active .fy-header,
body.admin-bar.header-sticky-disabled.navigation-active .fy-header {
    transform: translateY(0)
}

.fy-heading {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 152px 0 0;
    z-index: 20;
    color: #fff;
    background-color: #644baf
}

@media screen and (max-width:767px) {
    .fy-heading {
        padding-top: 132px
    }
}

.bar-enabled .fy-heading {
    padding-top: 200px
}

@media screen and (max-width:767px) {
    .bar-enabled .fy-heading {
        padding-top: 180px
    }
}

.header-layout-centered .fy-heading {
    padding-top: 224px
}

@media screen and (max-width:767px) {
    .header-layout-centered .fy-heading {
        padding-top: 204px
    }
}

.header-layout-centered.bar-enabled .fy-heading {
    padding-top: 272px
}

@media screen and (max-width:767px) {
    .header-layout-centered.bar-enabled .fy-heading {
        padding-top: 252px
    }
}

.header-layout-centered.page-template-template-coming-soon .fy-heading {
    padding-top: 132px !important
}

.page-template-template-coming-soon .fy-heading {
    padding-top: 112px !important
}

.fy-heading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: linear-gradient(135deg, rgba(250, 110, 120, 0), rgba(250, 110, 120, 0.75))
}

.header-background-solid .fy-heading:before {
    height: calc(100% - (152px));
    top: 152px
}

.header-background-solid.bar-enabled .fy-heading:before {
    height: calc(100% - (200px));
    top: 200px
}

.header-background-solid.header-layout-centered .fy-heading:before {
    height: calc(100% - (224px));
    top: 224px
}

@media screen and (max-width:767px) {
    .header-background-solid.header-layout-centered .fy-heading:before {
        height: calc(100% - (224px - 20px));
        top: 204px
    }
}

.header-background-solid.header-layout-centered.bar-enabled .fy-heading:before {
    height: calc(100% - (272px));
    top: 272px
}

@media screen and (max-width:767px) {
    .header-background-solid.header-layout-centered.bar-enabled .fy-heading:before {
        height: calc(100% - (272px - 20px));
        top: 252px
    }
}

.page-template-template-coming-soon .fy-heading:before {
    height: 100% !important;
    top: 0 !important
}

.fy-heading .fy-heading-container {
    display: block;
    width: 1480px;
    margin: 0 auto;
    position: relative;
    height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    z-index: 20;
    text-align: center
}

@media screen and (max-width:1640px) {
    .fy-heading .fy-heading-container {
        width: 100%;
        padding-right: 80px;
        padding-left: 80px
    }
}

@media screen and (max-width:1279px) {
    .fy-heading .fy-heading-container {
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (max-width:481px) {
    .fy-heading .fy-heading-container {
        padding-right: 20px;
        padding-left: 20px
    }
}

.fy-heading .fy-heading-container.fy-heading-container-thin {
    display: block;
    width: 944px;
    margin: 0 auto
}

@media screen and (max-width:1024px) {
    .fy-heading .fy-heading-container.fy-heading-container-thin {
        width: 100%;
        padding-right: 40px;
        padding-left: 40px
    }
}

.heading-horizontal-left .fy-heading .fy-heading-container {
    text-align: left
}

.heading-horizontal-center .fy-heading .fy-heading-container {
    text-align: center
}

.heading-horizontal-right .fy-heading .fy-heading-container {
    text-align: right
}

.heading-vertical-top .fy-heading .fy-heading-container {
    align-self: flex-start
}

.heading-vertical-center .fy-heading .fy-heading-container {
    align-self: center
}

.heading-vertical-bottom .fy-heading .fy-heading-container {
    align-self: flex-end
}

.fy-heading>.fy-border {
    position: absolute;
    top: auto;
    bottom: 0;
    z-index: 2
}

.custom-background-image .fy-heading>.fy-border {
    display: none
}

.fy-heading .fy-button.fy-button-accent {
    background-color: #fa6e78
}

.fy-heading .fy-button.fy-button-accent:hover,
.fy-heading .fy-button.fy-button-accent:focus {
    background-color: #fb878f
}

.fy-heading .fy-button.fy-button-bordered {
    color: rgba(255, 255, 255, 0.6);
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2)
}

.fy-heading .fy-button.fy-button-bordered:hover,
.fy-heading .fy-button.fy-button-bordered:focus {
    color: #fff;
    background-color: transparent;
    border-color: #fa6e78
}

.fy-heading.fy-heading-micro {
    min-height: 152px
}

.fy-heading.fy-heading-micro .fy-heading-container {
    display: none
}

.fy-heading.fy-heading-xxsmall {
    min-height: 152px
}

.fy-heading.fy-heading-xxsmall .fy-heading-container {
    padding-top: 40px
}

.bar-enabled .fy-heading.fy-heading-xxsmall {
    min-height: 200px
}

.fy-heading.fy-heading-xsmall {
    min-height: 33vh
}

.fy-heading.fy-heading-xsmall .fy-heading-container {
    padding-top: 40px
}

.fy-heading.fy-heading-small {
    min-height: 40vh
}

.fy-heading.fy-heading-medium {
    min-height: 60vh
}

.fy-heading.fy-heading-large {
    min-height: 80vh
}

.fy-heading.fy-heading-full-height {
    min-height: 100vh
}

.admin-bar .fy-heading.fy-heading-full-height {
    min-height: calc(100vh - 32px)
}

@media screen and (max-width:782px) {
    .admin-bar .fy-heading.fy-heading-full-height {
        min-height: calc(100vh - 46px)
    }
}

.fy-heading.fy-heading-empty {
    height: 152px;
    min-height: 0;
    padding: 0 !important;
    border: 0
}

@media screen and (max-width:767px) {
    .fy-heading.fy-heading-empty {
        height: 132px
    }
}

.bar-enabled .fy-heading.fy-heading-empty {
    height: 200px
}

@media screen and (max-width:767px) {
    .bar-enabled .fy-heading.fy-heading-empty {
        height: 180px
    }
}

.fy-heading.fy-heading-empty>.fy-border {
    display: none
}

.fy-heading.fy-heading-404 .fy-heading-container {
    padding-top: 0
}

.fy-heading.fy-heading-coming {
    align-items: center
}

.fy-heading.fy-heading-coming .fy-background {
    border: 0 !important
}

.bar-enabled .fy-heading .fy-background {
    border-top: 48px solid transparent
}

.fy-heading h1 {
    display: block;
    max-width: 100%;
    margin: 0;
    font-size: 53px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-heading h1 {
    text-shadow: none
}

@media screen and (max-width:1023px) {
    .fy-heading h1 {
        font-size: 46px
    }
}

@media screen and (max-width:767px) {
    .fy-heading h1 {
        font-size: 38px
    }
}

.fy-heading h1 span {
    display: block;
    position: relative
}

.fy-heading h1 .fy-icon {
    display: block
}

.fy-heading h1 .fy-icon .icon .eye,
.fy-heading h1 .fy-icon .icon .ellipse {
    fill: #fa6e78
}

.error404 .fy-heading h1 {
    font-size: 46px;
    line-height: 57px
}

.fy-heading .fy-heading-subtitle {
    margin-bottom: 10px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    line-height: normal;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-heading .fy-heading-subtitle {
    text-shadow: none
}

@media screen and (max-width:767px) {
    .fy-heading .fy-heading-subtitle {
        font-size: 17px
    }
}

.fy-heading .fy-heading-subtitle a {
    color: #fff;
    border-bottom: 2px solid transparent
}

.fy-heading .fy-heading-subtitle a:hover {
    color: #fff;
    border-bottom-color: #fa6e78
}

.fy-heading .fy-heading-navigation {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 20px;
    z-index: 20
}

@media screen and (max-width:1023px) {
    .fy-heading .fy-heading-navigation {
        margin-top: 40px
    }
}

.navigation-align-left .fy-heading .fy-heading-navigation,
.navigation-align-right .fy-heading .fy-heading-navigation {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center
}

.heading-horizontal-left .fy-heading .fy-heading-navigation {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-left: -25px
}

.heading-horizontal-right .fy-heading .fy-heading-navigation {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin-right: -25px
}

.fy-heading .fy-heading-navigation>ul>li>a {
    color: #fff;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-heading .fy-heading-navigation>ul>li>a {
    text-shadow: none
}

.fy-heading .fy-heading-navigation>ul>li>a:hover,
.fy-heading .fy-heading-navigation>ul>li>a:focus {
    color: #fff
}

.fy-heading .fy-heading-navigation>ul>li>a:hover:before,
.fy-heading .fy-heading-navigation>ul>li>a:focus:before {
    background-color: #fa6e78
}

.fy-heading .fy-heading-navigation>ul>li.current-cat-parent>a,
.fy-heading .fy-heading-navigation>ul>li.current-cat>a {
    color: rgba(255, 255, 255, 0.4)
}

.fy-heading .fy-heading-navigation>ul>li.current-cat-parent.important>a:hover,
.fy-heading .fy-heading-navigation>ul>li.current-cat-parent.important>a:focus,
.fy-heading .fy-heading-navigation>ul>li.current-cat.important>a:hover,
.fy-heading .fy-heading-navigation>ul>li.current-cat.important>a:focus {
    border-color: #fff
}

.fy-heading .fy-heading-navigation>ul>li:hover>a,
.fy-heading .fy-heading-navigation>ul>li.focus>a {
    color: #fff
}

@media screen and (max-width:1023px) {
    .fy-heading .fy-heading-navigation>ul>li {
        display: block;
        text-align: center
    }
    .heading-horizontal-left .fy-heading .fy-heading-navigation>ul>li {
        text-align: left
    }
    .heading-horizontal-right .fy-heading .fy-heading-navigation>ul>li {
        text-align: right
    }
    .fy-heading .fy-heading-navigation>ul>li>a {
        padding: 0 25px;
        font-size: 15px;
        line-height: 48px
    }
    .fy-heading .fy-heading-navigation>ul>li>ul {
        display: none
    }
}

.fy-heading .fy-heading-date {
    display: block;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    line-height: normal;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-heading .fy-heading-date {
    text-shadow: none
}

@media screen and (max-width:767px) {
    .fy-heading .fy-heading-date {
        font-size: 21px
    }
}

.fy-heading .fy-heading-date .fy-post-time {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: normal
}

.fy-heading .fy-heading-date.fy-date-past {
    text-decoration: line-through
}

.fy-heading .fy-heading-price {
    margin-top: 10px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    line-height: normal;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-heading .fy-heading-price {
    text-shadow: none
}

.fy-heading .fy-heading-content {
    margin-top: 20px;
    font-size: 21px;
    color: rgba(255, 255, 255, 0.8)
}

.fy-heading .fy-heading-content p {
    font-size: 18px;
    margin: 0
}

.fy-heading .fy-heading-content p+p {
    margin-top: 30px
}

.fy-heading .fy-heading-content a:not(.fy-button) {
    color: inherit;
    border-bottom: 1px solid currentColor
}

.fy-heading .fy-heading-content a:not(.fy-button):hover,
.fy-heading .fy-heading-content a:not(.fy-button):focus {
    color: #fff;
    border-bottom-color: #fa6e78
}

.fy-heading .fy-heading-button {
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-heading .fy-heading-button {
    box-shadow: none
}

@media screen and (max-width:481px) {
    .fy-heading .fy-heading-button {
        display: block;
        margin-right: 0;
        margin-left: 0
    }
    .fy-heading .fy-heading-button+.fy-button {
        margin-top: 20px
    }
}

.fy-heading .fy-heading-button:hover,
.fy-heading .fy-heading-button:focus {
    box-shadow: 0 16px 80px rgba(0, 0, 0, 0.2)
}

.shadow-disabled .fy-heading .fy-heading-button:hover,
.shadow-disabled .fy-heading .fy-heading-button:focus {
    box-shadow: none
}

.fy-heading .fy-heading-button.fy-button-accent {
    color: #fff;
    background-color: #fa6e78;
    border-color: transparent
}

.fy-heading .fy-heading-button.fy-button-accent:hover,
.fy-heading .fy-heading-button.fy-button-accent:focus {
    color: #fff;
    background-color: #fb878f
}

.fy-heading .fy-heading-button.fy-button-bordered {
    color: #fff;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none
}

.fy-heading .fy-heading-button.fy-button-bordered .icon {
    color: #fff
}

.fy-heading .fy-heading-button.fy-button-bordered:hover,
.fy-heading .fy-heading-button.fy-button-bordered:focus {
    color: #fff;
    background-color: transparent;
    border-color: #fa6e78
}

.fy-heading .fy-heading-search {
    max-width: 480px;
    margin: 40px auto 0
}

.fy-heading .fy-heading-search .fy-field .fy-input {
    border-color: transparent
}

.fy-heading .fy-author-avatar {
    display: block
}

.fy-heading .fy-author-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 64px
}

.fy-heading .fy-post-meta {
    display: block;
    margin-top: 20px;
    text-align: inherit;
    color: rgba(255, 255, 255, 0.8)
}

.fy-heading .fy-post-meta li:before {
    background-color: rgba(255, 255, 255, 0.4)
}

@media screen and (max-width:481px) {
    .fy-heading .fy-post-meta li {
        display: block;
        padding: 0;
        margin: 0
    }
    .fy-heading .fy-post-meta li:before {
        display: none
    }
}

.fy-heading .fy-post-meta a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8)
}

.fy-heading .fy-post-meta a:hover,
.fy-heading .fy-post-meta a:focus {
    color: #fff;
    border-bottom-color: #fa6e78
}

.fy-heading .fy-post-terms {
    margin: 0 0 4px;
    color: #fff;
    text-align: inherit
}

.fy-heading .fy-post-terms .fy-terms li {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2)
}

.fy-heading .fy-post-terms .fy-terms li a {
    display: inline-block;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: .025em;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2)
}

.fy-heading .fy-post-terms .fy-terms li a:hover,
.fy-heading .fy-post-terms .fy-terms li a:focus {
    color: #fff;
    border-color: #fa6e78
}

.fy-heading .fy-post-badges {
    user-select: none
}

.fy-heading .fy-post-badges .fy-terms li {
    display: inline-block;
    padding: 5px 20px;
    line-height: 1.8;
    color: #fff;
    background-color: #fa6e78;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-heading .fy-post-badges .fy-terms li {
    box-shadow: none
}

.fy-heading .fy-post-categories {
    margin: 0 0 4px;
    color: transparent
}

.fy-heading .fy-post-categories a {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    text-transform: none;
    letter-spacing: .025em;
    color: rgba(255, 255, 255, 0.8)
}

.fy-heading .fy-post-categories a:hover,
.fy-heading .fy-post-categories a:focus {
    color: #fff;
    border-color: #fa6e78
}

.fy-heading .fy-video-controls {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%)
}

.fy-heading .fy-video-controls .fy-button {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0 10px;
    color: #fff;
    background-color: transparent;
    border: 0
}

.fy-heading .fy-video-controls .fy-button:before {
    display: none
}

.fy-heading .fy-video-controls .fy-icon {
    line-height: 28px
}

.fy-heading.video-playing .fy-icon-play {
    display: none
}

.fy-heading.video-playing .fy-icon-pause {
    display: block
}

.fy-heading.video-paused .fy-icon-play {
    display: block
}

.fy-heading.video-paused .fy-icon-pause {
    display: none
}

body.custom-background-image .fy-heading {
    background-color: transparent
}

body.custom-background-image .fy-heading .fy-background {
    background-color: transparent
}

body.custom-background-image .fy-heading .fy-background .fy-background-empty {
    background-color: transparent
}

.fy-page-heading {
    position: relative;
    padding: 40px 0 80px;
    text-align: center;
    color: #32323e
}

.fy-page-heading h2,
.fy-page-heading h3 {
    position: relative;
    font-size: 38px;
    line-height: 57px
}

.fy-page-heading h2 span,
.fy-page-heading h3 span {
    position: relative;
    padding: 0;
    z-index: 1;
    transition: all .3s ease-out 0s
}

.fy-page-heading h2 a,
.fy-page-heading h3 a {
    color: #32323e
}

.fy-page-heading h2 a span,
.fy-page-heading h3 a span {
    border-bottom: 1px solid transparent
}

.fy-page-heading h2 a:hover span,
.fy-page-heading h2 a:focus span,
.fy-page-heading h3 a:hover span,
.fy-page-heading h3 a:focus span {
    border-bottom-color: #644baf
}

.fy-page-heading+.fy-page-content {
    margin-top: -20px
}

.fy-footer-heading {
    position: relative;
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
    color: #fa6e78
}

.fy-footer-heading h2,
.fy-footer-heading h3 {
    font-size: 25px;
    line-height: 25px
}

.fy-homepage {
    position: relative;
    z-index: 1;
    padding: 0
}

.custom-background-image .fy-homepage {
    background-color: transparent
}

.fy-homepage .fy-main {
    padding: 0
}

.fy-homepage .fy-sidebar {
    padding: 0
}

.fy-homepage-section {
    position: relative;
    display: block;
    max-width: 100%;
    padding: 0;
    margin: 0
}

.fy-homepage-section .fy-section-container {
    max-width: 100%;
    padding: 40px 0
}

.fy-homepage-section .woocommerce .fy-products-container {
    padding: 0
}

.fy-homepage-section .fy-page-heading {
    padding-top: 0
}

.fy-homepage-section .fy-page-heading+.fy-page-content {
    margin-top: -60px
}

.fy-homepage-section .fy-page-content {
    padding: 0;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.8;
    text-align: center
}

.fy-homepage-section .fy-page-content .fy-shortcode-form {
    margin-top: 40px
}

.fy-homepage-section .fy-page-content .fy-form-contact {
    padding-bottom: 40px
}

.fy-homepage-section .fy-post-column {
    min-width: 20%
}

.content-post-merged .fy-homepage-section .fy-masonry+.fy-go-to,
.content-post-merged .fy-homepage-section .fy-flex-container+.fy-go-to {
    padding-top: 0
}

.fy-homepage-content .fy-section-container {
    padding-top: 80px
}

.fy-homepage-content .fy-page-content {
    margin-bottom: 0
}

.fy-homepage-widgets .fy-section-container {
    padding-top: 80px;
    padding-bottom: 0
}

.fy-homepage-widgets .fy-widget-column {
    max-width: 33.333%;
    min-width: 25%
}

@media screen and (max-width:1023px) {
    .fy-homepage-widgets .fy-widget-column {
        max-width: 100%
    }
}

.fy-homepage-widgets .fy-widget {
    margin-bottom: 40px
}

.fy-homepage-widgets .fy-widget.widget_call_to_action {
    text-align: center
}

.fy-homepage-widgets .fy-widget.widget_call_to_action .fy-button-container {
    text-align: center
}

.fy-homepage-widgets.fy-homepage-bottom-widgets .fy-section-container {
    padding-bottom: 40px
}

.fy-homepage-carousel .fy-section-container {
    padding: 80px 0;
    width: 100%;
    overflow-x: hidden
}

.fy-homepage-about {
    padding: 80px 0 40px;
    z-index: 0
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .content-layout-centered .fy-homepage-grid .fy-masonry-item:nth-child(3),
    .content-layout-centered .fy-homepage-grid .fy-post-column:nth-child(3) {
        display: none
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .content-layout-full .fy-homepage-grid .fy-masonry-item:nth-child(4),
    .content-layout-full .fy-homepage-grid .fy-post-column:nth-child(4) {
        display: none
    }
}

@media screen and (min-width:1280px) and (max-width:1479px) {
    .content-layout-full .fy-homepage-grid .fy-masonry-item:nth-child(4),
    .content-layout-full .fy-homepage-grid .fy-post-column:nth-child(4) {
        display: none
    }
}

.fy-homepage-blog-posts {
    padding-top: 80px
}

@media screen and (max-width:1279px) {
    .fy-homepage-blog-posts {
        padding-top: 40px
    }
}

.fy-homepage-widgets+.fy-homepage-blog-posts {
    padding-top: 40px
}

.fy-homepage-call-to-action {
    position: relative;
    z-index: 40;
    overflow: visible;
    margin-bottom: -80px
}

@media screen and (max-height:680px) {
    .fy-homepage-call-to-action {
        margin-bottom: 0
    }
}

@media screen and (max-width:767px) {
    .fy-homepage-call-to-action {
        margin-bottom: 0
    }
}

.fy-homepage-call-to-action .fy-section-container {
    position: relative;
    top: -80px;
    left: 0;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0
}

@media screen and (max-height:680px) {
    .fy-homepage-call-to-action .fy-section-container {
        top: 0;
        padding-top: 80px
    }
}

@media screen and (max-width:767px) {
    .fy-homepage-call-to-action .fy-section-container {
        top: 0;
        padding-top: 80px
    }
}

.posts-layout-masonry-broken .fy-homepage-call-to-action {
    margin-bottom: -120px
}

@media screen and (max-height:680px) {
    .posts-layout-masonry-broken .fy-homepage-call-to-action {
        margin-bottom: 0
    }
}

@media screen and (max-width:767px) {
    .posts-layout-masonry-broken .fy-homepage-call-to-action {
        margin-bottom: 0
    }
}

.posts-layout-masonry-broken .fy-homepage-call-to-action .fy-section-container {
    top: -120px
}

@media screen and (max-height:680px) {
    .posts-layout-masonry-broken .fy-homepage-call-to-action .fy-section-container {
        top: 0
    }
}

@media screen and (max-width:767px) {
    .posts-layout-masonry-broken .fy-homepage-call-to-action .fy-section-container {
        top: 0
    }
}

.fy-homepage-call-to-action .fy-widget {
    padding: 40px;
    z-index: 1;
    background-color: #fff;
    margin-bottom: 40px
}

.posts-gutter-0 .fy-homepage-call-to-action .fy-widget {
    border-radius: 0
}

@media screen and (min-width:768px) {
    .fy-homepage-call-to-action .fy-widget:hover {
        z-index: 30;
        transform: translateY(-60px)
    }
}

.fy-homepage-call-to-action .fy-widget.widget_call_to_action {
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-homepage-call-to-action .fy-widget.widget_call_to_action {
    box-shadow: none
}

@media screen and (max-width:767px) {
    .fy-homepage-call-to-action .fy-widget.widget_call_to_action {
        box-shadow: none
    }
}

.fy-homepage-call-to-action .fy-widget.widget_call_to_action .fy-widget-title {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0;
    font-size: 21px;
    line-height: normal
}

@media screen and (min-width:768px) {
    .fy-homepage-call-to-action .fy-widget.widget_call_to_action .fy-widget-title {
        font-size: 17px
    }
}

.fy-homepage-call-to-action .fy-widget.widget_call_to_action .fy-button-container {
    text-align: center
}

.fy-homepage-call-to-action .fy-widget.widget_call_to_action .fy-button {
    margin-top: 40px
}

.fy-homepage-call-to-action .fy-widget.widget_call_to_action:hover {
    box-shadow: 0 -16px 80px rgba(0, 0, 0, 0.2)
}

.shadow-disabled .fy-homepage-call-to-action .fy-widget.widget_call_to_action:hover {
    box-shadow: none
}

@media screen and (max-width:767px) {
    .fy-homepage-call-to-action .fy-widget.widget_call_to_action:hover {
        box-shadow: none
    }
}

.fy-homepage-call-to-action .fy-widget-column {
    max-width: 33.333%;
    min-width: 20%
}

@media screen and (max-width:1023px) {
    .fy-homepage-call-to-action .fy-widget-column {
        max-width: 100%
    }
    .fy-homepage-call-to-action .fy-widget-column:nth-child(n+3) .fy-widget:hover {
        transform: translateY(0)
    }
}

.posts-layout-masonry-broken .fy-homepage-call-to-action .fy-widget-column:nth-child(odd) {
    border-top: 40px solid transparent;
    border-left: 40px solid transparent
}

@media screen and (max-width:1279px) {
    .posts-layout-masonry-broken .fy-homepage-call-to-action .fy-widget-column:nth-child(odd) {
        border-left-width: 0
    }
}

@media screen and (max-width:1023px) {
    .posts-layout-masonry-broken .fy-homepage-call-to-action .fy-widget-column:nth-child(odd) {
        border-width: 0
    }
}

.posts-layout-masonry-broken .fy-homepage-call-to-action .fy-widget-column:nth-child(odd):first-child {
    border-left: 0
}

.posts-layout-masonry-broken .fy-homepage-call-to-action .fy-widget-column:nth-child(even) .fy-widget.widget_call_to_action {
    z-index: 20
}

@media screen and (min-width:768px) {
    .posts-layout-masonry-broken .fy-homepage-call-to-action .fy-widget-column:nth-child(even) .fy-widget.widget_call_to_action .fy-widget-title {
        height: 120px;
        font-size: 21px
    }
}

.fy-homepage-call-to-action.fy-widgets-count-4 .fy-widget-column {
    max-width: 25%
}

.fy-homepage-call-to-action.fy-widgets-count-5 .fy-widget-column {
    max-width: 20%
}

.fy-homepage-call-to-action.fy-widgets-count-6 .fy-widget-column {
    max-width: 33.333%
}

@media screen and (max-width:1279px) {
    .fy-homepage-call-to-action.fy-widgets-count-4 .fy-widget-column,
    .fy-homepage-call-to-action.fy-widgets-count-5 .fy-widget-column,
    .fy-homepage-call-to-action.fy-widgets-count-6 .fy-widget-column {
        max-width: 33.333%
    }
    .fy-homepage-call-to-action.fy-widgets-count-4 .fy-widget-column:nth-child(n+4) .fy-widget:hover,
    .fy-homepage-call-to-action.fy-widgets-count-5 .fy-widget-column:nth-child(n+4) .fy-widget:hover,
    .fy-homepage-call-to-action.fy-widgets-count-6 .fy-widget-column:nth-child(n+4) .fy-widget:hover {
        transform: translateY(0)
    }
}

@media screen and (max-width:1023px) {
    .fy-homepage-call-to-action.fy-widgets-count-4 .fy-widget-column,
    .fy-homepage-call-to-action.fy-widgets-count-5 .fy-widget-column,
    .fy-homepage-call-to-action.fy-widgets-count-6 .fy-widget-column {
        max-width: 50%
    }
    .fy-homepage-call-to-action.fy-widgets-count-4 .fy-widget-column:nth-child(n+3) .fy-widget:hover,
    .fy-homepage-call-to-action.fy-widgets-count-5 .fy-widget-column:nth-child(n+3) .fy-widget:hover,
    .fy-homepage-call-to-action.fy-widgets-count-6 .fy-widget-column:nth-child(n+3) .fy-widget:hover {
        transform: translateY(0)
    }
}

@media screen and (max-width:767px) {
    .fy-homepage-call-to-action.fy-widgets-count-4 .fy-widget-column,
    .fy-homepage-call-to-action.fy-widgets-count-5 .fy-widget-column,
    .fy-homepage-call-to-action.fy-widgets-count-6 .fy-widget-column {
        max-width: 100%
    }
}

.fy-homepage-categories-posts .fy-page-heading {
    margin-bottom: 0
}

.fy-homepage-categories-posts .fy-categories .fy-category .fy-category-header {
    position: relative;
    padding: 40px 0;
    text-align: center;
    color: rgba(50, 50, 62, 0.6)
}

.fy-homepage-categories-posts .fy-categories .fy-category .fy-category-header h3 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    font-size: 38px
}

@media screen and (max-width:1023px) {
    .fy-homepage-categories-posts .fy-categories .fy-category .fy-category-header h3 {
        font-size: 32px
    }
}

@media screen and (max-width:767px) {
    .fy-homepage-categories-posts .fy-categories .fy-category .fy-category-header h3 {
        font-size: 25px
    }
}

.fy-homepage-categories-posts .fy-categories .fy-category .fy-category-header h3 a {
    color: #644baf;
    border-bottom: 2px solid transparent
}

.fy-homepage-categories-posts .fy-categories .fy-category .fy-category-header h3 a span {
    position: relative;
    padding: 0 20px
}

.fy-homepage-categories-posts .fy-categories .fy-category .fy-category-header h3 a span.fy-category-counter {
    position: absolute;
    top: 0;
    left: 100%;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .025em;
    text-transform: none;
    line-height: normal;
    color: rgba(50, 50, 62, 0.4)
}

.fy-homepage-categories-posts .fy-categories .fy-category .fy-category-header h3 a span>span {
    padding: 0
}

.fy-homepage-categories-posts .fy-categories .fy-category .fy-category-header h3 a:hover,
.fy-homepage-categories-posts .fy-categories .fy-category .fy-category-header h3 a:focus {
    color: #644baf;
    border-bottom-color: #644baf
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .content-layout-centered .fy-homepage-categories-posts .fy-categories .fy-category .fy-masonry-item:nth-child(4),
    .content-layout-centered .fy-homepage-categories-posts .fy-categories .fy-category .fy-post-column:nth-child(4) {
        display: none
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .content-layout-full .fy-homepage-categories-posts .fy-categories .fy-category .fy-masonry-item:nth-child(5),
    .content-layout-full .fy-homepage-categories-posts .fy-categories .fy-category .fy-post-column:nth-child(5) {
        display: none
    }
}

@media screen and (min-width:1280px) and (max-width:1479px) {
    .content-layout-full .fy-homepage-categories-posts .fy-categories .fy-category .fy-masonry-item:nth-child(5),
    .content-layout-full .fy-homepage-categories-posts .fy-categories .fy-category .fy-post-column:nth-child(5) {
        display: none
    }
}

.fy-slideshow-container {
    position: relative;
    top: 0;
    left: 0;
    width: calc(100% - (0px*2));
    height: calc(100vh - (152px));
    min-height: 400px;
    margin: 0;
    overflow: visible;
    background-color: #fa6e78;
    border-top: 0 solid transparent;
    border-bottom: 0 solid transparent
}

@media screen and (max-width:1023px) {
    .fy-slideshow-container {
        height: 100vh
    }
}

.border-pattern-enabled .fy-slideshow-container {
    border-top: 0
}

.fy-slideshow-container.fy-slideshow-empty {
    border: 0;
    padding: 0;
    margin: 0;
    height: 0;
    min-height: 152px !important
}

.bar-enabled .fy-slideshow-container {
    height: calc(100vh - 200px)
}

.header-layout-centered .fy-slideshow-container {
    height: calc(100vh - 224px)
}

.header-layout-centered.bar-enabled .fy-slideshow-container {
    height: calc(100vh - 272px + 48px)
}

.slideshow-height-full .fy-slideshow-container {
    height: 100vh !important
}

.slideshow-height-full .fy-slideshow-container .fy-caption-centerer {
    margin-top: 40px
}

.slideshow-height-full .fy-slideshow-container .fy-slideshow-prev,
.slideshow-height-full .fy-slideshow-container .fy-slideshow-next {
    transform: translateY(40px)
}

.slideshow-height-full.bar-enabled .fy-slideshow-container {
    margin-top: 48px;
    height: calc(100vh - 48px) !important
}

body.admin-bar .fy-slideshow-container {
    height: calc(100vh - (152px + 32px))
}

body.admin-bar.bar-enabled .fy-slideshow-container {
    height: calc(100vh - (152px + 48px + 32px))
}

body.admin-bar.header-layout-centered .fy-slideshow-container {
    height: calc(100vh - (224px + 32px))
}

body.admin-bar.header-layout-centered.bar-enabled .fy-slideshow-container {
    height: calc(100vh - (224px + 48px + 32px))
}

body.admin-bar.slideshow-height-full .fy-slideshow-container {
    height: calc(100vh - 32px) !important
}

body.admin-bar.slideshow-height-full.bar-enabled .fy-slideshow-container {
    margin-top: 48px;
    height: calc(100vh - 48px - 32px) !important
}

@media screen and (max-width:782px) {
    body.admin-bar .fy-slideshow-container {
        height: calc(100vh - (152px + 46px)) !important
    }
}

.fy-slideshow-background-color {
    background-color: #fa6e78
}

.fy-slideshow-background {
    max-height: 100vh;
    overflow: hidden;
    background-color: #fa6e78
}

.fy-slideshow-background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background-color: rgba(100, 75, 175, 0.4)
}

.fy-slideshow-background:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 21;
    background-image: linear-gradient(135deg, rgba(250, 110, 120, 0), rgba(250, 110, 120, 0))
}

.fy-slideshow-background .fy-background-image {
    opacity: 1 !important
}

.fy-slideshow-background .fy-background-image:before {
    display: none
}

body.slideshow-image-enabled .fy-slideshow {
    z-index: 30
}

.fy-slideshow .fy-slide {
    width: 100%;
    background-color: #644baf;
    -webkit-transform: translate3d(0, 0, 0)
}

.fy-slideshow .fy-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    will-change: transform;
    background-image: linear-gradient(135deg, rgba(250, 110, 120, 0), rgba(250, 110, 120, 0.75))
}

.fy-slideshow .fy-slide .fy-slide-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

.cta-enabled .fy-slideshow .fy-slide.fy-slide-caption-position-v-bottom .fy-caption-centerer {
    bottom: 160px
}

@media screen and (max-width:481px) {
    .fy-slideshow.fy-more-slides-per-view .fy-caption .fy-post-excerpt {
        display: none
    }
}

.fy-caption .fy-caption-header h2 a,
.fy-caption .fy-caption-header h3 a {
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-caption .fy-caption-header h2 a,
.shadow-disabled .fy-caption .fy-caption-header h3 a {
    text-shadow: none
}

.fy-caption .fy-caption-header h2 a span,
.fy-caption .fy-caption-header h3 a span {
    border-color: transparent
}

.fy-caption .fy-caption-header h2 a:hover,
.fy-caption .fy-caption-header h3 a:hover {
    text-shadow: 4px 4px 40px rgba(0, 0, 0, 0.2)
}

.shadow-disabled .fy-caption .fy-caption-header h2 a:hover,
.shadow-disabled .fy-caption .fy-caption-header h3 a:hover {
    text-shadow: none
}

.fy-caption .fy-caption-header h2 a:hover span,
.fy-caption .fy-caption-header h3 a:hover span {
    border-color: transparent
}

.fy-caption .fy-caption-header h2 a:focus span,
.fy-caption .fy-caption-header h3 a:focus span {
    border-color: #fff
}

.fy-caption .fy-caption-content {
    font-size: 18px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-caption .fy-caption-content {
    text-shadow: none
}

@media screen and (max-width:767px) {
    .fy-caption .fy-caption-content {
        font-size: 16px
    }
}

@media screen and (max-width:481px) {
    .fy-caption .fy-caption-button {
        width: 100%
    }
    .fy-caption .fy-caption-button+.fy-caption-button {
        margin-top: 10px;
        margin-left: 0
    }
}

@media screen and (max-width:481px) {
    .fy-caption .fy-caption-button .fy-button {
        display: block
    }
}

.fy-caption .fy-caption-button .fy-button-accent {
    color: #fff;
    background-color: #fa6e78;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-caption .fy-caption-button .fy-button-accent {
    box-shadow: none
}

.fy-caption .fy-caption-button .fy-button-accent:hover,
.fy-caption .fy-caption-button .fy-button-accent:focus {
    color: #fff;
    background-color: #fb878f;
    box-shadow: 0 16px 80px rgba(0, 0, 0, 0.2)
}

.shadow-disabled .fy-caption .fy-caption-button .fy-button-accent:hover,
.shadow-disabled .fy-caption .fy-caption-button .fy-button-accent:focus {
    box-shadow: none
}

.fy-caption .fy-caption-button .fy-button-bordered {
    border-color: rgba(255, 255, 255, 0.5)
}

.fy-caption .fy-caption-button .fy-button-bordered .icon {
    color: #fff
}

.fy-caption .fy-caption-button .fy-button-bordered:focus,
.fy-caption .fy-caption-button .fy-button-bordered:hover {
    border-color: #fff
}

.fy-caption .fy-caption-meta ul {
    list-style: none
}

.fy-caption .fy-caption-meta ul li a {
    font-size: 14px;
    color: #fff;
    border-color: transparent
}

.fy-caption .fy-caption-meta ul li a:hover,
.fy-caption .fy-caption-meta ul li a:focus {
    color: #fff;
    border-color: #fa6e78
}

.fy-caption .fy-post-meta,
.fy-caption .fy-post-terms,
.fy-caption .fy-post-categories {
    color: #fff;
    margin-bottom: 10px
}

.fy-caption .fy-post-meta a,
.fy-caption .fy-post-terms a,
.fy-caption .fy-post-categories a {
    font-size: 14px;
    color: #fff;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-caption .fy-post-meta a,
.shadow-disabled .fy-caption .fy-post-terms a,
.shadow-disabled .fy-caption .fy-post-categories a {
    text-shadow: none
}

.fy-caption .fy-post-meta a:hover,
.fy-caption .fy-post-meta a:focus,
.fy-caption .fy-post-terms a:hover,
.fy-caption .fy-post-terms a:focus,
.fy-caption .fy-post-categories a:hover,
.fy-caption .fy-post-categories a:focus {
    color: #fff;
    border-bottom-color: #fa6e78
}

.fy-caption .fy-post-excerpt+.fy-post-meta {
    margin-top: 20px
}

.fy-caption .fy-event-date {
    margin-bottom: 10px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1)
}

.shadow-disabled .fy-caption .fy-event-date {
    text-shadow: none
}

.fy-caption.fy-caption-solid {
    background-color: #fa6e78
}

.fy-caption.fy-caption-solid .fy-caption-header h2 a,
.fy-caption.fy-caption-solid .fy-caption-header h3 a {
    text-shadow: none
}

.fy-caption.fy-caption-solid .fy-caption-content {
    text-shadow: none
}

.fy-caption.fy-caption-solid .fy-post-meta,
.fy-caption.fy-caption-solid .fy-post-terms,
.fy-caption.fy-caption-solid .fy-post-categories {
    text-shadow: none
}

.fy-caption.fy-caption-solid .fy-event-date {
    text-shadow: none
}

.fy-slideshow.fy-slideshow-posts .fy-caption .fy-caption-header h2 a:hover span,
.fy-slideshow.fy-slideshow-posts .fy-caption .fy-caption-header h3 a:hover span {
    border-color: #fa6e78
}

.fy-slideshow .fy-slide .fy-caption .fy-caption-meta {
    opacity: 0;
    transition: all .3s ease-out .3s
}

.fy-slideshow .fy-slide .fy-caption .fy-caption-header {
    opacity: 0;
    transform: translateY(80px);
    transition: all .3s ease-out .3s
}

.fy-slideshow .fy-slide .fy-caption .fy-caption-content {
    opacity: 0;
    transform: translateY(80px);
    transition: all .3s ease-out .3s
}

.fy-slideshow .fy-slide .fy-caption .fy-caption-button {
    opacity: 0;
    transform: translateY(80px);
    transition: all .3s ease-out .3s
}

.fy-slideshow .fy-slide .fy-caption .fy-caption-date {
    opacity: 0;
    transition: all .3s ease-out .3s
}

.fy-slideshow .fy-slide .fy-caption .fy-caption-header+.fy-caption-button {
    transition: all .3s ease-out .3s
}

.fy-slideshow .fy-slide.swiper-slide-active .fy-caption .fy-caption-meta,
.fy-slideshow .fy-slide.swiper-slide-active .fy-caption .fy-caption-header,
.fy-slideshow .fy-slide.swiper-slide-active .fy-caption .fy-caption-content,
.fy-slideshow .fy-slide.swiper-slide-active .fy-caption .fy-caption-button,
.fy-slideshow .fy-slide.swiper-slide-active .fy-caption .fy-caption-date,
.fy-slideshow .fy-slide.swiper-slide-duplicate-active .fy-caption .fy-caption-meta,
.fy-slideshow .fy-slide.swiper-slide-duplicate-active .fy-caption .fy-caption-header,
.fy-slideshow .fy-slide.swiper-slide-duplicate-active .fy-caption .fy-caption-content,
.fy-slideshow .fy-slide.swiper-slide-duplicate-active .fy-caption .fy-caption-button,
.fy-slideshow .fy-slide.swiper-slide-duplicate-active .fy-caption .fy-caption-date {
    opacity: 1;
    transform: translateY(0);
    transition-duration: .6s
}

.fy-slideshow .fy-slide.swiper-slide-active .fy-caption .fy-caption-meta,
.fy-slideshow .fy-slide.swiper-slide-duplicate-active .fy-caption .fy-caption-meta {
    transition-delay: .6s
}

.fy-slideshow .fy-slide.swiper-slide-active .fy-caption .fy-caption-header,
.fy-slideshow .fy-slide.swiper-slide-duplicate-active .fy-caption .fy-caption-header {
    transition-delay: .3s
}

.fy-slideshow .fy-slide.swiper-slide-active .fy-caption .fy-caption-content,
.fy-slideshow .fy-slide.swiper-slide-duplicate-active .fy-caption .fy-caption-content {
    transition-delay: .6s
}

.fy-slideshow .fy-slide.swiper-slide-active .fy-caption .fy-caption-button,
.fy-slideshow .fy-slide.swiper-slide-duplicate-active .fy-caption .fy-caption-button {
    transition-delay: .9s
}

.fy-slideshow .fy-slide.swiper-slide-active .fy-caption .fy-caption-date,
.fy-slideshow .fy-slide.swiper-slide-duplicate-active .fy-caption .fy-caption-date {
    transition-delay: .9s
}

.fy-slideshow .fy-slide.swiper-slide-active .fy-caption .fy-caption-header+.fy-caption-button,
.fy-slideshow .fy-slide.swiper-slide-duplicate-active .fy-caption .fy-caption-header+.fy-caption-button {
    transition-delay: .6s
}

.fy-slideshow.fy-one-image .fy-slide .fy-caption .fy-caption-meta,
.fy-slideshow.fy-one-image .fy-slide .fy-caption .fy-caption-header,
.fy-slideshow.fy-one-image .fy-slide .fy-caption .fy-caption-content,
.fy-slideshow.fy-one-image .fy-slide .fy-caption .fy-caption-button,
.fy-slideshow.fy-one-image .fy-slide .fy-caption .fy-caption-date,
.fy-slideshow.fy-more-slides-per-view .fy-slide .fy-caption .fy-caption-meta,
.fy-slideshow.fy-more-slides-per-view .fy-slide .fy-caption .fy-caption-header,
.fy-slideshow.fy-more-slides-per-view .fy-slide .fy-caption .fy-caption-content,
.fy-slideshow.fy-more-slides-per-view .fy-slide .fy-caption .fy-caption-button,
.fy-slideshow.fy-more-slides-per-view .fy-slide .fy-caption .fy-caption-date {
    opacity: 1;
    transform: translateY(0);
    transition: all .3s ease-out 0s
}

.fy-slideshow-prev,
.fy-slideshow-next {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 0;
    min-width: 80px;
    height: 0;
    min-height: 80px;
    color: #fff
}

@media screen and (max-width:767px) {
    .fy-slideshow-prev,
    .fy-slideshow-next {
        display: none
    }
}

.fy-slideshow-prev:hover,
.fy-slideshow-prev:active,
.fy-slideshow-next:hover,
.fy-slideshow-next:active {
    color: #fff
}

.fy-slideshow-prev {
    left: 0
}

.fy-slideshow-next {
    right: 0
}

.fy-slideshow-pagination {
    position: absolute;
    display: inline-block;
    bottom: 0;
    left: 80px;
    padding: 0;
    margin-bottom: 20px;
    margin-left: -5px;
    text-align: center;
    z-index: 30;
    transform: translateX(0)
}

@media screen and (max-width:1279px) {
    .fy-slideshow-pagination {
        left: 40px
    }
}

@media screen and (max-width:767px) {
    .fy-slideshow-pagination {
        display: none
    }
}

.cta-enabled .fy-slideshow-pagination {
    margin-bottom: 124px
}

.fy-slideshow-pagination.swiper-pagination-hidden {
    opacity: 0
}

.fy-slideshow-pagination .swiper-pagination-bullet {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 26px;
    margin: 0;
    outline: 0
}

.fy-slideshow-pagination .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 5px;
    width: 0;
    height: 2px;
    margin: 0;
    background-color: #fff;
    border: 0;
    border-radius: 1px;
    box-shadow: none;
    transition: all .3s ease-out 0s
}

.fy-slideshow-pagination .swiper-pagination-bullet:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 5px;
    width: 10px;
    height: 2px;
    z-index: 0;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all .3s ease-out 0s
}

.fy-slideshow-pagination .swiper-pagination-bullet:hover:after,
.fy-slideshow-pagination .swiper-pagination-bullet:focus:after {
    background-color: rgba(255, 255, 255, 0.4)
}

.fy-slideshow-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    top: 10px;
    left: 5px;
    width: 10px;
    height: 2px;
    margin: 0;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
} 
 



 /*      logo slider   */


.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.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;
    cursor: hand;
}

.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;
}
.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 img{
    width: 90%;
    margin: auto;
    height:90px;
    object-fit:cover;
}