@charset "UTF-8";
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    touch-action: none;
    z-index: 1500;
    -webkit-text-size-adjust: 100%;
    /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
    -webkit-backface-visibility: hidden;
    outline: none;
}

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

.pswp img {
    max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
    /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
    opacity: 0.001;
    will-change: opacity;
    /* for open/close transition */
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
    display: block;
}

.pswp--zoom-allowed .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}

.pswp--dragging .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transform: translateZ(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 {
    touch-action: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/* Prevent selection and tap highlights */
.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%;
    transform-origin: left top;
    /* for open/close transition */
    transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
    will-change: opacity;
    /* for open/close transition */
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

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

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

.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;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
    -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
    background: #222;
}

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

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: #CCC;
}

.pswp__error-msg a {
    color: #CCC;
    text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
    width: 44px;
    height: 44px;
    position: relative;
    background: none;
    cursor: pointer;
    overflow: visible;
    -webkit-appearance: none;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    float: right;
    opacity: 0.75;
    transition: opacity 0.2s;
    box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
    opacity: 1;
}

.pswp__button:active {
    outline: none;
    opacity: 0.9;
}

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

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
    opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    background: url(default-skin.png) 0 0 no-repeat;
    background-size: 264px 88px;
    width: 44px;
    height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
    /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
    .pswp--svg .pswp__button,
.pswp--svg .pswp__button--arrow--left:before,
.pswp--svg .pswp__button--arrow--right:before {
        background-image: url(default-skin.svg);
    }

    .pswp--svg .pswp__button--arrow--left,
.pswp--svg .pswp__button--arrow--right {
        background: none;
    }
}
.pswp__button--close {
    background-position: 0 -44px;
}

.pswp__button--share {
    background-position: -44px -44px;
}

.pswp__button--fs {
    display: none;
}

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

.pswp--fs .pswp__button--fs {
    background-position: -44px 0;
}

.pswp__button--zoom {
    display: none;
    background-position: -88px 0;
}

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

.pswp--zoomed-in .pswp__button--zoom {
    background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
    visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
    background: none;
    top: 50%;
    margin-top: -50px;
    width: 70px;
    height: 100px;
    position: absolute;
}

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

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

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    content: "";
    top: 35px;
    background-color: rgba(0, 0, 0, 0.3);
    height: 30px;
    width: 32px;
    position: absolute;
}

.pswp__button--arrow--left:before {
    left: 6px;
    background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
    right: 6px;
    background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

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

.pswp__share-tooltip {
    z-index: 1620;
    position: absolute;
    background: #FFF;
    top: 56px;
    border-radius: 2px;
    display: block;
    width: auto;
    right: 44px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    transform: translateY(6px);
    transition: transform 0.25s;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
}

.pswp__share-tooltip a:hover {
    text-decoration: none;
    color: #000;
}

.pswp__share-tooltip a:first-child {
    /* round corners on the first/last list item */
    border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
    border-radius: 0 0 2px 2px;
}

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

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

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
    padding: 16px 12px;
}

a.pswp__share--facebook:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -12px;
    right: 15px;
    border: 6px solid transparent;
    border-bottom-color: #FFF;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none;
}

a.pswp__share--facebook:hover {
    background: #3E5C9A;
    color: #FFF;
}

a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
    background: #55ACEE;
    color: #FFF;
}

a.pswp__share--pinterest:hover {
    background: #CCC;
    color: #CE272D;
}

a.pswp__share--download:hover {
    background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    font-size: 13px;
    line-height: 44px;
    color: #FFF;
    opacity: 0.75;
    padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 44px;
}

.pswp__caption small {
    font-size: 11px;
    color: #BBB;
}

.pswp__caption__center {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    font-size: 13px;
    padding: 10px;
    line-height: 20px;
    color: #CCC;
}

.pswp__caption--empty {
    display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
    visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -22px;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    will-change: opacity;
    direction: ltr;
}

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

.pswp__preloader--active {
    opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(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 {
    background: none;
    opacity: 0.75;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 15px;
    top: 15px;
    margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
    /* 
    	The idea of animating inner circle is based on Polymer ("material") loading indicator 
    	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
    */
    position: relative;
    width: 7px;
    height: 14px;
    overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border: 2px solid #FFF;
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .pswp__preloader {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        float: right;
    }
}
@-webkit-keyframes clockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes clockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes donut-rotate {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(-140deg);
    }
    100% {
        transform: rotate(0);
    }
}
@keyframes donut-rotate {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(-140deg);
    }
    100% {
        transform: rotate(0);
    }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
    -webkit-font-smoothing: auto;
    visibility: visible;
    opacity: 1;
    z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    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 class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
    background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
    background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.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 class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.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 {
    /* Force paint & create composition layer for controls. */
    opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.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;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
    padding: 0 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger.is-active:hover {
    opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

.hamburger-box {
    width: 20px;
    height: 15px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -0.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 20px;
    height: 1px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -7px;
}
.hamburger-inner::after {
    bottom: -7px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
    perspective: 40px;
}
.hamburger--3dx .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
    perspective: 40px;
}
.hamburger--3dx-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
    perspective: 40px;
}
.hamburger--3dy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
    perspective: 40px;
}
.hamburger--3dy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
    perspective: 40px;
}
.hamburger--3dxy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
    perspective: 40px;
}
.hamburger--3dxy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
    transform: translate3d(-4px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
    transform: translate3d(-4px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
    transform: translate3d(4px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
    transform: translate3d(4px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(-4px, -5px, 0) rotate(-45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(-4px, 5px, 0) rotate(45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(4px, -5px, 0) rotate(45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(4px, 5px, 0) rotate(-45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
    transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
    transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
    transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
    transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
    top: -14px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -7px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
    top: -14px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
    transform: translate3d(0, -7px, 0) rotate(45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
    top: 0.5px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
    top: 7px;
    transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
    top: 14px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 7px, 0) rotate(135deg);
    transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
    top: 0.5px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
    top: 7px;
    transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
    top: 14px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
    transform: translate3d(0, 7px, 0) rotate(-135deg);
    transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(270deg);
    transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
    overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
    top: 7px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
    left: -40px;
    top: -40px;
    transform: translate3d(40px, 40px, 0) rotate(45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
    right: -40px;
    top: -40px;
    transform: translate3d(-40px, 40px, 0) rotate(-45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
    overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
    top: 7px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
    left: -40px;
    top: 40px;
    transform: translate3d(40px, -40px, 0) rotate(-45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
    right: -40px;
    top: 40px;
    transform: translate3d(-40px, -40px, 0) rotate(45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
    transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
    opacity: 0;
    transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
    top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
    bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
    top: 0.5px;
}
.hamburger--slider .hamburger-inner::before {
    top: 7px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
    top: 14px;
}
.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-2.8571428571px, -6px, 0);
    opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
    top: 0.5px;
}
.hamburger--slider-r .hamburger-inner::before {
    top: 7px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
    top: 14px;
}
.hamburger--slider-r.is-active .hamburger-inner {
    transform: translate3d(0, 7px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(2.8571428571px, -6px, 0);
    opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
    transform: rotate(-225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
    top: 0.5px;
    transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
    top: 7px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
    top: 14px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 7px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
    top: -14px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
    transform: translate3d(0, -7px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
    transform: rotate(90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
    transform: rotate(-90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
    transform: rotate(765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
    transform: rotate(-765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

@font-face {
    font-family: "swiper-icons";
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
    font-weight: 400;
    font-style: normal;
}
:root {
    --swiper-theme-color: #007aff;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column;
}

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

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

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

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

.swiper-container-pointer-events {
    touch-action: pan-y;
}
.swiper-container-pointer-events.swiper-container-vertical {
    touch-action: pan-x;
}

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

.swiper-slide-invisible-blank {
    visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
    perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
}

/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
    font-family: "FontAwesome";
    font-weight: normal;
    font-style: normal;
    src: url("../../font/fontawesome-webfont.eot?v=4.3.0");
    src: url("../../font/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("../../font/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("../../font/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("../../font/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("../../font/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
}
.fa {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    display: inline-block;
    transform: translate(0, 0);
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
    font-size: 1.33333333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-ul {
    margin-left: 2.14285714em;
    padding-left: 0;
    list-style-type: none;
}

.fa-ul > li {
    position: relative;
}

.fa-li {
    position: absolute;
    top: 0.14285714em;
    left: -2.14285714em;
    width: 2.14285714em;
    text-align: center;
}

.fa-li.fa-lg {
    left: -1.85714286em;
}

.fa-border {
    padding: 0.2em 0.25em 0.15em;
    border: solid 0.08em #eee;
    border-radius: 0.1em;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: 0.3em;
}

.fa.pull-right {
    margin-left: 0.3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}
@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}
.fa-rotate-90 {
    transform: rotate(90deg);
}

.fa-rotate-180 {
    transform: rotate(180deg);
}

.fa-rotate-270 {
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none;
}

.fa-stack {
    line-height: 2em;
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-envelope-o:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-o:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-gear:before,
.fa-cog:before {
    content: "";
}

.fa-trash-o:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-file-o:before {
    content: "";
}

.fa-clock-o:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-arrow-circle-o-down:before {
    content: "";
}

.fa-arrow-circle-o-up:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-play-circle-o:before {
    content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "";
}

.fa-refresh:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-video-camera:before {
    content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "";
}

.fa-pencil:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "";
}

.fa-share-square-o:before {
    content: "";
}

.fa-check-square-o:before {
    content: "";
}

.fa-arrows:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-play:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-times-circle-o:before {
    content: "";
}

.fa-check-circle-o:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-arrows-v:before {
    content: "";
}

.fa-arrows-h:before {
    content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-gears:before,
.fa-cogs:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-thumbs-o-up:before {
    content: "";
}

.fa-thumbs-o-down:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-heart-o:before {
    content: "";
}

.fa-sign-out:before {
    content: "";
}

.fa-linkedin-square:before {
    content: "";
}

.fa-thumb-tack:before {
    content: "";
}

.fa-external-link:before {
    content: "";
}

.fa-sign-in:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-lemon-o:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-square-o:before {
    content: "";
}

.fa-bookmark-o:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-rss:before {
    content: "";
}

.fa-hdd-o:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-hand-o-right:before {
    content: "";
}

.fa-hand-o-left:before {
    content: "";
}

.fa-hand-o-up:before {
    content: "";
}

.fa-hand-o-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-group:before,
.fa-users:before {
    content: "";
}

.fa-chain:before,
.fa-link:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-cut:before,
.fa-scissors:before {
    content: "";
}

.fa-copy:before,
.fa-files-o:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-money:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "";
}

.fa-legal:before,
.fa-gavel:before {
    content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "";
}

.fa-comment-o:before {
    content: "";
}

.fa-comments-o:before {
    content: "";
}

.fa-flash:before,
.fa-bolt:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "";
}

.fa-lightbulb-o:before {
    content: "";
}

.fa-exchange:before {
    content: "";
}

.fa-cloud-download:before {
    content: "";
}

.fa-cloud-upload:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-bell-o:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cutlery:before {
    content: "";
}

.fa-file-text-o:before {
    content: "";
}

.fa-building-o:before {
    content: "";
}

.fa-hospital-o:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "";
}

.fa-circle-o:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-folder-o:before {
    content: "";
}

.fa-folder-open-o:before {
    content: "";
}

.fa-smile-o:before {
    content: "";
}

.fa-frown-o:before {
    content: "";
}

.fa-meh-o:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-keyboard-o:before {
    content: "";
}

.fa-flag-o:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-code-fork:before {
    content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-shield:before {
    content: "";
}

.fa-calendar-o:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-ticket:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-minus-square-o:before {
    content: "";
}

.fa-level-up:before {
    content: "";
}

.fa-level-down:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-pencil-square:before {
    content: "";
}

.fa-external-link-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "";
}

.fa-euro:before,
.fa-eur:before {
    content: "";
}

.fa-gbp:before {
    content: "";
}

.fa-dollar:before,
.fa-usd:before {
    content: "";
}

.fa-rupee:before,
.fa-inr:before {
    content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "";
}

.fa-won:before,
.fa-krw:before {
    content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-text:before {
    content: "";
}

.fa-sort-alpha-asc:before {
    content: "";
}

.fa-sort-alpha-desc:before {
    content: "";
}

.fa-sort-amount-asc:before {
    content: "";
}

.fa-sort-amount-desc:before {
    content: "";
}

.fa-sort-numeric-asc:before {
    content: "";
}

.fa-sort-numeric-desc:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-youtube-play:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitbucket-square:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-long-arrow-down:before {
    content: "";
}

.fa-long-arrow-up:before {
    content: "";
}

.fa-long-arrow-left:before {
    content: "";
}

.fa-long-arrow-right:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "";
}

.fa-sun-o:before {
    content: "";
}

.fa-moon-o:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-vk:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-arrow-circle-o-right:before {
    content: "";
}

.fa-arrow-circle-o-left:before {
    content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "";
}

.fa-dot-circle-o:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "";
}

.fa-plus-square-o:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-fax:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-spoon:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-automobile:before,
.fa-car:before {
    content: "";
}

.fa-cab:before,
.fa-taxi:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-file-pdf-o:before {
    content: "";
}

.fa-file-word-o:before {
    content: "";
}

.fa-file-excel-o:before {
    content: "";
}

.fa-file-powerpoint-o:before {
    content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "";
}

.fa-file-code-o:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "";
}

.fa-circle-o-notch:before {
    content: "";
}

.fa-ra:before,
.fa-rebel:before {
    content: "";
}

.fa-ge:before,
.fa-empire:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-hacker-news:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-genderless:before,
.fa-circle-thin:before {
    content: "";
}

.fa-header:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-sliders:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-newspaper-o:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bell-slash-o:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-eyedropper:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-area-chart:before {
    content: "";
}

.fa-pie-chart:before {
    content: "";
}

.fa-line-chart:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-cc:before {
    content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "";
}

.fa-meanpath:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-dashcube:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-diamond:before {
    content: "";
}

.fa-ship:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-facebook-official:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-hotel:before,
.fa-bed:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-train:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

/* ------------------------------------------------------------------------------------------------ */
/*  Magnific Popup  */
/* ------------------------------------------------------------------------------------------------ */
.mfp-bg {
    position: fixed;
    z-index: 1042;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: #000;
    filter: alpha(opacity=80);
}

.mfp-wrap {
    position: fixed;
    z-index: 1043;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0 26px;
    text-align: center;
}

.mfp-container:before {
    display: inline-block;
    height: 100%;
    content: "";
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    z-index: 1045;
    display: inline-block;
    margin: 0 auto;
    text-align: left;
    vertical-align: middle;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    position: absolute;
    z-index: 1044;
    top: 50%;
    right: 8px;
    left: 8px;
    width: auto;
    margin-top: -0.8em;
    text-align: center;
    color: #ccc;
}

.mfp-preloader a {
    color: #ccc;
}

.mfp-preloader a:hover {
    color: #fff;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    z-index: 1046;
    display: block;
    padding: 0;
    cursor: pointer;
    border: 0;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    font-family: Arial, Baskerville, monospace;
    font-size: 33px;
    font-weight: normal;
    font-style: normal;
    line-height: 32px;
    position: absolute;
    top: 45px;
    right: 35px;
    overflow: hidden;
    width: 35px;
    height: 35px;
    padding: 0 0 18px 10px;
    text-align: center;
    text-decoration: none;
    text-indent: -9999px;
    color: #fff;
    border-radius: 100%;
    background-color: #000;
    background-image: url(../../img/ico_close_popup.png);
    background-repeat: no-repeat;
    background-position: 9px 9px;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}

.mfp-close:active {
    /*top: -16px;*/
}

.mfp-close-btn-in .mfp-close {
    /*color: #333;*/
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    right: -6px;
    width: 100%;
    padding-right: 6px;
    text-align: right;
    color: #fff;
}

.mfp-counter {
    font-size: 12px;
    line-height: 18px;
    position: absolute;
    top: 0;
    right: 0;
    white-space: nowrap;
    color: #ccc;
}

.mfp-arrow {
    position: absolute;
    top: 50%;
    width: 90px;
    height: 110px;
    margin: 0;
    margin-top: -55px;
    padding: 0;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 0;
    margin-top: 35px;
    margin-left: 35px;
    content: "";
    border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
    top: 8px;
    border-top-width: 13px;
    border-bottom-width: 13px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
    opacity: 0.7;
    border-top-width: 21px;
    border-bottom-width: 21px;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
    margin-left: 31px;
    border-right: 17px solid #fff;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
    margin-left: 39px;
    border-left: 17px solid #fff;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Main image in popup */
img.mfp-img {
    line-height: 0;
    display: block;
    box-sizing: border-box;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 40px 0 40px;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    position: absolute;
    z-index: -1;
    top: 40px;
    right: 0;
    bottom: 40px;
    left: 0;
    display: block;
    width: auto;
    height: auto;
    content: "";
    background: #444;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.mfp-figure small {
    font-size: 12px;
    line-height: 14px;
    display: block;
    color: #bdbdbd;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: -36px;
    cursor: auto;
}

.mfp-title {
    line-height: 18px;
    padding-right: 36px;
    text-align: left;
    word-wrap: break-word;
    color: #f3f3f3;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

.mfp-ie7 .mfp-img {
    padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
    left: 50%;
    width: 600px;
    margin-top: 5px;
    margin-left: -300px;
    padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
    padding: 0;
}

.mfp-ie7 .mfp-content {
    padding-top: 44px;
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}

.mfp-zoom-in .mfp-with-anim {
    transition: all 0.14s ease-in-out;
    transform: scale(0.98);
    opacity: 0;
}

.mfp-zoom-in.mfp-bg {
    transition: all 0.3s ease-out;
    opacity: 0;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    transform: scale(1);
    opacity: 1;
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.4;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.98);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/* ------------------------------------------------------------------------------------------------ */
/*  MMenu  */
/* ------------------------------------------------------------------------------------------------ */
.mm-menu.mm-horizontal > .mm-panel {
    transition: transform 0.4s ease;
}

.mm-menu .mm-hidden {
    display: none;
}

.mm-wrapper {
    position: relative;
    overflow-x: hidden;
}

.mm-menu,
.mm-menu > .mm-panel {
    position: relative;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.mm-menu {
    display: block;
    overflow: hidden;
    padding: 0;
    background: inherit;
}

.mm-menu > .mm-panel {
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 20px;
    transform: translate(100%, 0);
    background: inherit;
    -webkit-overflow-scrolling: touch;
}

.mm-menu > .mm-panel.mm-opened {
    transform: translate(0%, 0);
}

.mm-menu > .mm-panel.mm-subopened {
    transform: translate(-30%, 0);
}

.mm-menu > .mm-panel.mm-highest {
    z-index: 1;
}

.mm-menu .mm-list {
    padding: 5px 0;
}

.mm-menu > .mm-list {
    padding-bottom: 0;
}

.mm-menu > .mm-list:after {
    display: block;
    height: 5px;
    content: "";
}

.mm-panel > .mm-list {
    margin-right: -20px;
    margin-left: -20px;
}

.mm-panel > .mm-list:first-child {
    padding-top: 0;
}

.mm-list,
.mm-list > li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mm-list {
    font: inherit;
    font-size: 17px;
    font-weight: 500;
}

.mm-list a,
.mm-list a:hover {
    text-decoration: none;
}

.mm-list > li {
    position: relative;
}

.mm-list > li > a,
.mm-list > li > span {
    line-height: 20px;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 19px 20px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: inherit;
}

.mm-list > li > a:hover {
    color: #e0ac00;
}

.mm-list > li.current-menu-item > a {
    color: #e0ac00;
}

.mm-list > li.current-page-ancestor > a {
    color: #e0ac00;
}

.mm-list > li > a {
    transition: all 0.16s ease;
}

.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    content: "";
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.mm-list > li:last-child:after {
    border-bottom-width: 0 !important;
}

.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
    position: relative;
    left: auto;
    width: auto;
}

.mm-list a.mm-subopen {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 40px;
    height: 50px;
    padding: 0 !important;
    background: rgba(3, 2, 1, 0);
}

.mm-list a.mm-subopen:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    content: "";
    border-left-width: 1px;
    border-left-style: dotted;
}

.mm-list a.mm-subopen.mm-fullsubopen {
    width: 100%;
}

.mm-list a.mm-subopen.mm-fullsubopen:before {
    border-left: none;
}

.mm-list a.mm-subopen + a,
.mm-list a.mm-subopen + span {
    margin-right: 40px;
    padding-right: 5px;
}

.mm-list > li.mm-selected > a.mm-subopen {
    background: transparent;
}

.mm-list > li.mm-selected > a.mm-fullsubopen + a,
.mm-list > li.mm-selected > a.mm-fullsubopen + span {
    margin-right: 0;
    padding-right: 45px;
}

.mm-list a.mm-subclose {
    margin-top: -20px;
    padding: 30px 10px 15px 21px !important;
    text-indent: 20px;
}

.mm-list > li.mm-label {
    font-size: 10px;
    line-height: 25px;
    overflow: hidden;
    padding-right: 5px;
    white-space: nowrap;
    text-indent: 20px;
    text-transform: uppercase;
    text-overflow: ellipsis;
}

.mm-list > li.mm-spacer {
    padding-top: 40px;
}

.mm-list > li.mm-spacer.mm-label {
    padding-top: 25px;
}

.mm-list a.mm-subopen:after,
.mm-list a.mm-subclose:before {
    position: absolute;
    bottom: 50%;
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-bottom: -5px;
    content: "";
    transform: rotate(-45deg);
    border: 2px solid transparent;
}

.mm-list a.mm-subopen:after {
    right: 18px;
    border-top: none;
    border-left: none;
}

.mm-list a.mm-subclose:before {
    left: 22px;
    margin-bottom: -12px;
    border-right: none;
    border-bottom: none;
}

.mm-menu.mm-vertical .mm-list .mm-panel {
    display: none;
    padding: 10px 0 10px 10px;
}

.mm-menu.mm-vertical .mm-list .mm-panel li:last-child:after {
    border-color: transparent;
}

.mm-menu.mm-vertical .mm-list li.mm-opened > .mm-panel {
    display: block;
}

.mm-menu.mm-vertical .mm-list > li > a.mm-subopen {
    height: 40px;
}

.mm-menu.mm-vertical .mm-list > li > a.mm-subopen:after {
    top: 16px;
    bottom: auto;
}

.mm-menu.mm-vertical .mm-list > li.mm-opened > a.mm-subopen:after {
    transform: rotate(45deg);
}

.mm-menu.mm-vertical .mm-list > li.mm-label > a.mm-subopen {
    height: 25px;
}

.mm-menu {
    color: white;
    background: #000;
}

.mm-menu .mm-list > li:after {
    border-color: #333333;
}

.mm-menu .mm-list > li > a.mm-subclose {
    color: #fc0;
    background: rgba(0, 0, 0, 0.1);
}

.mm-menu .mm-list > li > a.mm-subopen:after,
.mm-menu .mm-list > li > a.mm-subclose:before {
    border-color: white;
}

.mm-menu .mm-list > li.current > a.mm-subopen:after,
.mm-menu .mm-list > li.current > a.mm-subclose:before {
    border-color: black;
}

.mm-list a.mm-subopen:hover:after {
    border-color: #fff !important;
}

.mm-menu .mm-list > li > a.mm-subopen:before {
    border-color: rgba(255, 255, 255, 0.15);
}

.mm-menu .mm-list > li.current > a.mm-subopen:before {
    border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu .mm-list > li.mm-selected > a:not(.mm-subopen),
.mm-menu .mm-list > li.mm-selected > span {
    color: #eab917;
}

.mm-menu .mm-list > li.mm-label {
    background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-vertical .mm-list li.mm-opened > a.mm-subopen,
.mm-menu.mm-vertical .mm-list li.mm-opened > ul {
    background: rgba(255, 255, 255, 0.05);
}

.mm-page {
    position: relative;
    box-sizing: border-box;
}

.mm-slideout {
    transition: transform 0.4s ease;
}

html.mm-opened {
    position: relative;
    overflow: hidden;
}

html.mm-opened body {
    overflow: hidden;
}

html.mm-background .mm-page {
    background: inherit;
}

#mm-blocker {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
}

html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
    display: block;
}

.mm-menu.mm-offcanvas {
    position: fixed;
    display: none;
}

.mm-menu.mm-current {
    display: block;
}

.mm-menu {
    width: 80%;
    min-width: 140px;
    max-width: 440px;
}

html.mm-opening .mm-slideout {
    transform: translate(80%, 0);
}

/*
  jQuery.mmenu position extension CSS
*/
.mm-menu.mm-top,
.mm-menu.mm-bottom {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.mm-menu.mm-right {
    right: 0;
    left: auto;
}

.mm-menu.mm-bottom {
    top: auto;
    bottom: 0;
}

html.mm-right.mm-opening .mm-slideout {
    transform: translate(-80%, 0);
}

/*
  jQuery.mmenu z-position extension CSS
*/
html.mm-front .mm-slideout {
    z-index: 0 !important;
    transform: none !important;
}

.mm-menu.mm-front {
    z-index: 1000;
}

.mm-menu.mm-front,
.mm-menu.mm-next {
    transition: transform 0.4s ease;
    transform: translate3d(-100%, 0, 0);
}

.mm-menu.mm-front.mm-right,
.mm-menu.mm-next.mm-right {
    transform: translate3d(100%, 0, 0);
}

.mm-menu.mm-top {
    transform: translate3d(0, -100%, 0);
}

.mm-menu.mm-bottom {
    transform: translate3d(0, 100%, 0);
}

html.mm-opening .mm-menu.mm-front,
html.mm-opening .mm-menu.mm-next {
    transform: translate3d(0, 0, 0);
}

.mm-menu.mm-top,
.mm-menu.mm-bottom {
    height: auto;
    min-height: 140px;
    max-height: 880px;
}

/* ------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------ */
/*  DOM  */
/* ------------------------------------------------------------------------------------------------ */
*::-moz-selection {
    color: #000;
    background: #fff;
}
*::selection {
    color: #000;
    background: #fff;
}

*::-moz-selection {
    color: #000;
    background: #fff;
}

*::-webkit-selection {
    color: #000;
    background: #fff;
}

::-webkit-input-placeholder {
    color: #fff;
}

:-moz-placeholder {
    color: #fff;
}

::-moz-placeholder {
    color: #fff;
}

:-ms-input-placeholder {
    color: #fff;
}

*,
*:after,
*:before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: "Roboto", sans-serif;
}

h1 {
    font-family: "Roboto", Georgia, serif;
    font-size: 24px;
    font-weight: normal;
    line-height: 34px;
    margin: 0;
    padding: 0;
}

h2 {
    font-family: "Roboto", Georgia, serif;
    font-size: 24px;
    font-weight: normal;
    line-height: 32px;
    margin: 0 0 14px 0;
    padding: 0;
}

h3 {
    font-family: "Roboto", Georgia, serif;
    font-size: 24px;
    font-weight: normal;
    line-height: 32px;
    margin: 0 0 14px 0;
    padding: 0;
}

hr {
    margin: 12px 0;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

input[type=text],
input[type=email],
input[type=password],
select,
textarea {
    font: 16px "Roboto", "Trebuchet MS", Arial, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
    box-sizing: border-box;
    margin: 13px 0;
    padding: 11px 14px;
    transition: all 0.14s ease;
    color: #fff;
    border: 1px solid #6b6b6b;
    background-color: transparent;
}

select option {
    color: #000;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
    color: #fff;
    border: 1px solid #fff;
}

input[type=submit],
input[type=button] {
    font: 16px "Roboto", "Trebuchet MS", Arial, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
    margin: 20px 0 10px;
    padding: 8px 22px 8px;
    cursor: pointer;
    text-align: center;
    color: #fff;
    border: none;
    border-radius: 50px;
    background: #e0ac00;
    background: linear-gradient(to bottom, #e0ac00 0%, #dca200 100%);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.15);
}

/* ------------------------------------------------------------------------------------------------ */
/*  Util  */
/* ------------------------------------------------------------------------------------------------ */
.clear {
    clear: both;
}

.clearfix:after,
.clearfix:before {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

​ .centered {
    text-align: center;
}

.t_align_l {
    text-align: left;
}

.t_align_r {
    text-align: right;
}

.pull_l {
    float: left !important;
}

.pull_r {
    float: right !important;
}

.alignright {
    float: right;
    margin: 6px 0 10px 20px;
}

.alignleft {
    float: left;
    margin: 6px 20px 10px 0;
}

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

.round {
    border-radius: 1000px;
}

.desaturate {
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
}

.hidden {
    display: none;
}

/* ------------------------------------------------------------------------------------------------ */
/*  Content  */
/* ------------------------------------------------------------------------------------------------ */
main {
    clear: both;
    width: 100%;
}

main.home {
    width: 100%;
    height: 901px;
    padding: 0 0 1px 0;
    border-bottom: 1px solid #807861;
    background-image: url(../../img/bg.jpg);
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: cover;
}

#content_home {
    position: relative;
    height: 900px;
    border-right: 1px solid rgba(222, 215, 196, 0.39);
    border-left: 1px solid rgba(222, 215, 196, 0.41);
}

/* ------------------------------------------------------------------------------------------------ */
#logo {
    position: absolute;
    z-index: 10;
    top: 40px;
    left: 50%;
    display: block;
    overflow: hidden;
    width: 388px;
    height: 104px;
    margin-left: -194px;
    transition: all 0.12s ease;
    text-indent: -9999px;
    background-image: url(../../../img/logo.png);
}

#logo_int {
    display: block;
    overflow: hidden;
    width: 388px;
    height: 104px;
    margin: 0 auto 30px;
    transition: all 0.12s ease;
    text-indent: -9999px;
    background-image: url(../../img/logo.png);
}

/* ------------------------------------------------------------------------------------------------ */
#content_home section.col {
    position: relative;
    float: left;
    width: 16.6666%;
    height: 900px;
    padding: 0 30px;
    cursor: default;
    border-right: 1px solid rgba(222, 215, 196, 0.39);
}

#content_home section.col .section_content {
    font-size: 16px;
    line-height: 20px;
    position: absolute;
    right: 0;
    bottom: 29px;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 263px;
    padding: 85px 30px 30px;
    transition: all 0.34s cubic-bezier(0.01, 0.31, 0.13, 1.02);
}

#content_home section.col.hover_fx:hover .section_content {
    bottom: 69px;
}

#content_home section.col .section_content .section_content_int {
    position: relative;
}

#content_home section.col .section_content .section_content_int a {
    color: inherit;
}

#content_home section.col.hover_fx .section_content h1 {
    transition: all 0.22s ease;
}

#content_home section.col.hover_fx:hover .section_content h1 {
    color: #dea900;
}

#content_home section.col .section_content h1 {
    font-size: 36px;
    font-weight: 300;
    margin: 0 0 21px 0;
    transition: all 0.34s cubic-bezier(0.01, 0.31, 0.13, 1.02);
}

#content_home section.col .section_content p {
    transition: all 0.12s ease;
}

#content_home section.col .section_content .ico {
    position: absolute;
    top: -85px;
    left: 0;
    width: 40px;
    transition: all 0.24s cubic-bezier(0.01, 0.31, 0.13, 1.02);
}

#content_home section.col.hover_fx:hover .section_content .ico {
    top: -60px;
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

/* ------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------ */
nav.sub {
    font-size: 18px;
    line-height: 20px;
    position: relative;
    z-index: 1;
    margin: 20px 0;
    text-align: center;
}

nav.sub:after {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 1px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #a09679;
}

nav.sub ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

nav.sub ul li {
    display: inline-block;
}

nav.sub ul li a {
    display: inline-block;
    padding: 5px 22px;
    transition: all 0.1s ease;
}

nav.sub ul li.current_page_item a {
    color: #dfab00;
    border-bottom: 3px solid #dfab00;
}

/* ------------------------------------------------------------------------------------------------ */
a.btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
    margin-left: -13px;
    padding: 7px 16px 8px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    background: #e0ac00;
    background: linear-gradient(to bottom, #e0ac00 0%, #dca200 100%);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.15);
}

a.btn_alt {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
    margin-left: -13px;
    padding: 7px 16px 8px;
    transition: all 0.1s ease;
    text-align: center;
    text-align: center;
    color: #fff;
    border: 1px solid #d1a100;
    border-radius: 50px;
    background: transparent;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.15);
}

a.btn_alt:hover {
    background-color: #dda600;
}

a.btn_alt.custom_w {
    min-width: 190px;
}

/* ------------------------------------------------------------------------------------------------ */
.special_text {
    font-size: 15px;
    line-height: 16px;
    margin-top: 90px;
}

#section_submenu {
    font-size: 16px;
    line-height: 20px;
    position: absolute;
    right: 0;
    bottom: 29px;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 250px;
    padding: 98px 30px 30px;
    padding-top: 98px;
    transition: all 0.34s cubic-bezier(0.01, 0.31, 0.13, 1.02);
}

#section_submenu h1 {
    font-size: 22px;
    font-weight: 800;
    line-height: 22px;
    margin: 0 0 21px 0;
    transition: all 0.12s ease;
    white-space: nowrap;
    color: #dea900;
}

#section_submenu p span {
    color: #dea900;
}

#section_submenu p a {
    color: #fff;
}

#search {
    transition: all 0.25s ease;
    text-align: right;
}

#search form {
    position: relative;
    display: inline-block;
}

#search form:before {
    position: absolute;
    z-index: 10;
    top: 3px;
    right: 3px;
    width: 26px;
    height: 26px;
    content: "";
    border-radius: 50px;
    background-color: #000;
}

#search form:after {
    font-family: "FontAwesome";
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    position: absolute;
    z-index: 20;
    top: 5px;
    right: 9px;
    content: "";
    color: #dca300;
}

#search input {
    font-size: 14px;
    line-height: 20px;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 6px 40px 6px 14px;
    color: #fff;
    border: none;
    border-radius: 50px;
    background-color: #807554;
}

/* ------------------------------------------------------------------------------------------------ */
#content_home section.col.video #col_video_inner {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../img/bg_video.jpg);
    background-repeat: no-repeat;
    background-position: 89.5% 100%;
    background-size: cover;
}

#content_home section.col.video h1 {
    color: #dea900;
}

#content_home section.col.video .section_content {
    padding-top: 86px;
}

#content_home section.col.video:hover .section_content {
    transition: all 0.29s ease 0.17s;
}

#play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-top: -75px;
    margin-left: -40px;
    transition: all 0.29s ease;
    background-image: url(../../img/ico_play.svg);
    background-size: 80px 80px;
}

#video_player {
    visibility: hidden;
    margin-top: 23%;
    padding: 0 9.8%;
    transition: all 0.45s ease;
    transform: scale(0.97);
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.wrapper_video {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
}

.wrapper_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wrapper_video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #000;
}

#video_info {
    font-size: 16px;
    line-height: 20px;
    visibility: hidden;
    margin-top: 5.1%;
    padding: 0 9.8%;
    transition: all 0.45s ease 0.85s;
    transform: scale(0.97);
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

#video_info h1 {
    font-size: 36px;
    font-weight: 300;
    margin: 0 0 21px 0;
}

#video_info .l_col {
    float: left;
    width: 70%;
    padding: 0 8% 0 0;
}

#video_info .r_col {
    float: right;
    width: 30%;
    padding: 48px 0 0 0;
    text-align: right;
}

#btn_video_close {
    font-size: 16px;
    position: absolute;
    top: 0;
    right: 10%;
    display: block;
    visibility: hidden;
    width: 90px;
    height: 36px;
    margin-top: 17%;
    padding: 2px 0 0 0;
    transition: all 0.45s ease 0.85s;
    transform: scale(0.97);
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    background-image: url(../../img/ico_close.png);
    background-repeat: no-repeat;
    background-position: right top;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

/* ------------------------------------------------------------------------------------------------ */
.no_delay {
    transition: all 0.45s ease !important;
}

.fade {
    visibility: hidden !important;
    transform: scale(0.94) !important;
    opacity: 0 !important;
    -moz-opacity: 0 !important;
    -khtml-opacity: 0 !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)" !important;
    filter: alpha(opacity=0) !important;
}

.display {
    visibility: visible !important;
    transform: scale(1) !important;
    opacity: 1 !important;
    -moz-opacity: 1 !important;
    -khtml-opacity: 1 !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
    filter: alpha(opacity=100) !important;
}

.visible {
    visibility: visible !important;
}

/* ------------------------------------------------------------------------------------------------ */
.col_partners {
    overflow: hidden;
}

#col_partners {
    border-right: none !important;
}

.col_partners h1 {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin: 69px 0 50px 0;
}

.col_partners img {
    visibility: hidden;
    max-width: 100%;
    max-height: 83px;
    margin: 0 0 34px 0;
    transition: all 0.32s ease;
    opacity: 0.34;
    -moz-opacity: 0.34;
    -khtml-opacity: 0.34;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=34)";
    filter: alpha(opacity=34);
}

.col_partners img:hover {
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
    filter: alpha(opacity=1);
}

.col_partners div {
    display: none;
}

/* ------------------------------------------------------------------------------------------------ */
#bg_int {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 902px;
    border-bottom: 1px solid #807861;
    background-image: url(../../img/bg.jpg);
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: cover;
}

/* ------------------------------------------------------------------------------------------------ */
main.interior {
    position: relative;
}

/* ------------------------------------------------------------------------------------------------ */
#static {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    clear: both;
    min-width: 980px;
    max-width: 1400px;
    margin: 0 auto;
    pointer-events: none;
}

/* ------------------------------------------------------------------------------------------------ */
#sidebar_menu {
    position: relative;
    float: left;
    width: 16.6666%;
    height: 901px;
    padding: 0 30px;
    transition: all 0.12s ease;
    pointer-events: auto;
    border-left: 1px solid rgba(222, 215, 196, 0.39);
}

/* ------------------------------------------------------------------------------------------------ */
#sidebar_partners {
    position: relative;
    float: right;
    width: 16.6666%;
    height: 901px;
    padding: 0 30px;
    cursor: default;
    transition: all 0.12s ease;
    pointer-events: auto;
    border-right: 1px solid rgba(222, 215, 196, 0.39);
}

#sidebar_partners img {
    max-width: 100%;
}

/* ------------------------------------------------------------------------------------------------ */
#main_content {
    width: 66.4%;
    min-height: 902px;
    margin-left: 16.8%;
    padding: 40px 0 0 0;
    border-right: 1px solid rgba(222, 215, 196, 0.51);
    border-bottom: 1px solid #807861;
    border-left: 1px solid rgba(222, 215, 196, 0.51);
    background-color: #000;
    background-image: url(../../img/bg_int.jpg);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 100% auto;
}

/* ------------------------------------------------------------------------------------------------ */
#main_content_int {
    padding: 45px 11% 50px;
}

#main_content_int h1 {
    color: #fff;
    font-family: "Roboto", "Trebuchet MS", Arial, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
    font-size: 24px;
    font-weight: normal;
    line-height: 34px;
    padding: 16px 0 0 0;
}

#main_content_int h2 {
    color: #dfab00;
    font-family: "Roboto", "Trebuchet MS", Arial, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
    font-size: 18px;
    line-height: 30px;
    font-weight: normal;
    margin: 26px 0 7px 0;
}

#main_content_top {
    padding: 35px 11% 0;
}

#main_content_sub {
    padding: 0 11% 30px;
}

#main_content_int img {
    max-width: 100%;
}

p.highlight {
    font-size: 36px;
    font-weight: 300;
    line-height: 37px;
    margin-bottom: 50px;
    text-align: center;
    color: #e0ac00;
}

p.highlight .small {
    font-size: 20px;
    line-height: 26px;
    display: block;
    margin-top: 8px;
}

p.highlight_alt {
    font-size: 18px;
    font-weight: 300;
    line-height: 34px;
    margin-bottom: 0;
    text-align: center;
}

.highlight_alt2 {
    font-size: 18px;
    font-weight: 300;
    line-height: 34px;
}

/* ------------------------------------------------------------------------------------------------ */
#subsections {
    padding: 50px 11% 30px;
    border-top: 1px solid #807861;
}

.col3 {
    font-size: 14px;
    line-height: 20px;
    float: left;
    width: 33.3%;
    padding: 0 2% 40px;
    text-align: center;
}

.col3 p {
    text-align: center;
}

#subsections.mission_vision .col3 img {
    width: 84px;
    margin: 0 0 5px 0;
}

#subsections.mission_vision .col3 h2 {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 20px 0;
    color: #dfaa00;
}

#subsections.community_service .col3 img {
    max-width: 84%;
}

#subsections.leadership h1 {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 50px 0;
    text-align: center;
    color: #dfaa00;
}

#subsections.leadership {
    text-align: center;
    font-size: 0;
}

#subsections.leadership .col3 {
    display: inline-block;
    float: none;
    vertical-align: top;
}

#subsections.leadership .col3 img {
    max-width: 67%;
    margin: 0 0 15px 0;
}

#subsections.leadership .col3 h2 {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 20px 0;
    color: #dfaa00;
    transition: all 0.1s ease;
}

#subsections.leadership .col3 a:hover h2 {
    color: #fff;
}

#subsections.leadership .col3 a p {
    color: #fff;
}

#subsections.founders h1 {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 50px 0;
    text-align: center;
    color: #dfaa00;
}

#subsections.founders {
    text-align: center;
    font-size: 0;
}

#subsections.founders .col3 {
    display: inline-block;
    float: none;
    vertical-align: top;
}

#subsections.founders .col3 img {
    max-width: 67%;
    margin: 0 0 15px 0;
}

#subsections.founders .col3 h2 {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 20px 0;
    color: #dfaa00;
    transition: all 0.1s ease;
}

#subsections.founders .col3 a:hover h2 {
    color: #fff;
}

#subsections.founders .col3 a p {
    color: #fff;
}

#subsections.partners {
    padding: 30px 11% 30px;
    text-align: center;
    border: none;
}

#subsections.partners h1 {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 50px 0;
    text-align: center;
    color: #dfaa00;
}

#subsections.partners .col3 {
    display: inline-block;
    float: none;
    width: 32.9%;
}

#subsections.partners .col3 img {
    max-width: 240px;
}

#subsections.partners .pad {
    padding: 0 0 20px 0;
}

#subsections.membership {
    padding: 0 11% 0;
    border: none;
}

#subsections.membership .col3 img {
    width: 84px;
    margin: 0 0 5px 0;
}

#subsections.membership .col3 h2 {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 20px 0;
    color: #dfaa00;
}

.col4 {
    font-size: 14px;
    line-height: 20px;
    float: left;
    width: 24.9%;
    padding: 0 2% 40px;
    text-align: center;
}

.col4 p {
    text-align: center;
}

#subsections.membership.alt {
    padding: 0 4.2% 30px;
}

#subsections.membership.alt .col4 img {
    width: 89px;
    margin: 0 0 5px 0;
}

#subsections.membership.alt .col4 h2 {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 20px 0;
    color: #dfaa00;
}

/* ------------------------------------------------------------------------------------------------ */
.member_info {
    position: relative;
    width: auto;
    max-width: 928px;
    margin: 40px auto;
    padding: 65px 6.9% 35px;
    background: #d29e22;
}

.member_info .heading {
    margin: 0 0 25px 0;
}

.member_info .heading_company {
    margin: 0 0 40px 0;
    text-align: center;
}

.member_info .heading_company img {
    max-width: 240px;
}

.member_info .heading_company .link {
    font-size: 12px;
    line-height: 32px;
    color: #000;
}

.member_info .heading_company .link a {
    color: #000;
}

.member_info .heading .photo {
    float: left;
    width: 20.7%;
}

.member_info .heading .photo img {
    width: 80%;
}

.member_info .heading .info {
    float: left;
    width: 79%;
    padding: 14px 0 0 0;
}

.member_info .heading .info.partner {
    padding: 41px 0 0 0;
}

.member_info .heading .info h2 {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 10px 0;
    color: #000;
}

.member_info .heading .info h3 {
    font-size: 14px;
    line-height: 18px;
    color: #fff;
}

.member_info .bio {
    font-size: 16px;
    line-height: 23px;
    color: #000;
}

.member_info .social {
    margin: 0 0 51px 0;
}

.member_info .social a {
    margin: 0 10px 0 0;
}

.member_info .social img {
    max-width: 30px;
}

.member_info .company_info {
    margin: 0 0 60px 0;
    color: #000;
}

.member_info .company_info a {
    color: #000;
}

/* ------------------------------------------------------------------------------------------------ */
#actions {
    padding: 0 0 40px;
    text-align: center;
}

#actions a {
    margin: 0 13px;
}

/* ------------------------------------------------------------------------------------------------ */
#testimonial {
    position: relative;
    padding: 45px 11% 50px;
}

#testimonial:before {
    font-size: 120px;
    font-weight: 700;
    position: absolute;
    top: 60px;
    left: 3.2%;
    content: '"';
    color: #705600;
}

#testimonial:after {
    font-size: 120px;
    font-weight: 700;
    position: absolute;
    right: 3.2%;
    bottom: 20px;
    content: '"';
    color: #705600;
}

#testimonial_int .photo {
    float: left;
    width: 20%;
}

#testimonial_int .photo img {
    width: 80%;
}

#testimonial_int .content {
    font-style: italic;
    float: left;
    width: 80%;
    color: #dfac00;
}

#testimonial_int .content .author {
    font-size: 14px;
    font-style: normal;
    color: #fff;
}

/* ------------------------------------------------------------------------------------------------ */
.event_image {
    float: right;
    max-width: 176px;
    margin: 6px 0 10px 20px;
}

.rsvp p {
    padding-left: 100px;
    padding-right: 100px;
    text-align: center;
}

/* ------------------------------------------------------------------------------------------------ */
.post {
    padding: 5px 0 66px;
}

.post img {
    max-width: 100%;
    height: auto !important;
}

.post_info {
    padding: 0 11% 6px;
    border-bottom: 1px solid #807861;
}

.post_info .categs {
    margin: 0 0 0 13%;
}

.post_info .loc {
    margin: 0 0 0 13%;
}

.post_content {
    position: relative;
    padding: 38px 11% 0;
}

.post_content h1 {
    font-size: 36px;
    font-weight: 300;
    line-height: 46px;
    margin: 0;
}

.event_info {
    font-size: 18px;
    font-weight: 300;
    line-height: 34px;
    color: #a7a7a7;
    margin: 0;
    padding: 12px 0 0 0;
}

.post .post_content h1 {
    margin: 0 0 26px 0;
    color: #e0ac00;
}

.post .post_content.private_dinner h1 {
    color: #ffffff;
}

.post .post_content h2 {
    padding: 20px 0 0 0;
}

.post_content .btn_alt {
    margin-left: 0;
}

#pagination {
    padding: 14px 11%;
    border-top: 1px solid #807861;
}

#pagination a {
    margin: 0 2.5% 0 0;
    padding: 0 0.4%;
    transition: all 0.1s ease;
    color: #fff;
}

#pagination span {
    margin: 0 1.7% 0 0;
    padding: 0 0.4%;
}

#pagination a:hover {
    color: #e0ac00;
}

#pagination .current {
    color: #e0ac00;
}

/* ------------------------------------------------------------------------------------------------ */
.call_to_action {
    padding: 28px 0 32px;
    border-top: 1px solid #807861;
}

.call_to_action .col_ico {
    float: left;
    width: 11%;
    padding: 9px 0 0 0;
}

.call_to_action .col_ico img {
    width: 30px;
    margin: 0 0 0 36%;
}

.call_to_action .col_content {
    font-size: 14px;
    float: left;
    width: 59%;
    padding: 0 20px 0 0;
}

.call_to_action .col_content p {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
}

.call_to_action .col_content h2 {
    font-size: 24px;
    line-height: 30px;
    margin: 0;
}

.call_to_action .col_btn {
    float: left;
    width: 30%;
    padding: 9px 0 0 0;
}

/* ------------------------------------------------------------------------------------------------ */
#search_info {
    padding: 0 11% 6px;
    border-bottom: 1px solid #807861;
}

#search_info span {
    color: #bdbdbd;
}

.search_result {
    padding: 0 0 25px 0;
}

/* ------------------------------------------------------------------------------------------------ */
footer {
    font-size: 14px;
    line-height: 20px;
}

footer .wrapper {
    padding: 28px 0 26px;
    background-color: #000;
}

footer .wrapper.social {
    padding: 0 0 21px;
}

#social_links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#social_links ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

#social_links ul li a,
#social_links ul li a i {
    transition: all 0.21s ease;
    color: #838383;
}

#social_links ul li a i {
    font-size: 18px;
    margin: 0 7px 0 0;
}

#social_links ul li a:hover,
#social_links ul li a:hover i {
    color: #fff;
}

footer .wrapper section.col {
    float: left;
    width: 16.6666%;
    padding: 0 30px;
    transition: all 0.12s ease;
}

footer .wrapper section.col.logo {
    padding-top: 30px;
    text-align: center;
}

footer .wrapper section.col.logo img {
    max-width: 100%;
    margin-bottom: 7px;
}

footer .wrapper section.col.copyright {
    padding-top: 42px;
}

footer .wrapper section.col.copyright p {
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
    margin: 0 0 9px 0;
    color: #a3a3a3;
}

footer .wrapper section.col.links {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

footer .wrapper section.col.links h1 {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 0 0 21px 0;
    color: #dfab00;
}

footer .wrapper section.col.links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer .wrapper section.col.links ul li {
    margin: 0;
    padding: 0;
}

footer .wrapper section.col.links ul li a {
    transition: all 0.1s ease;
    color: #fff;
}

footer .wrapper section.col.links ul li a:hover {
    color: #dfab00;
}

footer .wrapper section.col.blog {
    font-size: 14px;
    line-height: 20px;
    color: #dfab00;
}

footer .wrapper section.col.blog h1 {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 0 0 21px 0;
    color: #dfab00;
}

footer .wrapper section.col.blog a {
    display: block;
    overflow: hidden;
    width: 100%;
    max-height: 40px;
    text-overflow: ellipsis;
    color: #fff;
}

footer .wrapper section.col.blog.pad {
    padding-top: 40px;
}

footer.int .wrapper section.col.hide {
    display: none;
}

footer.int {
    width: 66.4%;
    max-width: 932px;
    margin: 0 auto;
}

footer.int {
    border-right: 1px solid #807861;
    border-bottom: 1px solid #807861;
    border-left: 1px solid #807861;
}

footer.int .wrapper {
    min-width: auto;
}

footer.int .wrapper section.col {
    width: 25%;
}

/* ------------------------------------------------------------------------------------------------ */
.contact_form {
    padding: 20px 0 0;
}

.contact_form label {
    font-size: 14px;
}

.contact_form input[type=text],
.contact_form input[type=email],
.contact_form textarea {
    width: 405px;
    margin: 5px 0 13px 0;
}

/* ------------------------------------------------------------------------------------------------ */
.post_body > .ssba {
    position: absolute !important;
    left: 3.9%;
    width: 36px !important;
    margin: 3px 0 0 0;
}

.post_body > .ssba a {
    display: block;
    margin: 0 0 9px 0;
}

.post_body > .ssba img {
    display: block;
}

/* ------------------------------------------------------------------------------------------------ */
span.wpcf7-not-valid-tip {
    font-size: 0.8em !important;
    margin: 0 0 20px 0 !important;
}

div.wpcf7-validation-errors {
    border: 1px solid #f7e700 !important;
}

/* ------------------------------------------------------------------------------------------------ */
.mfp-content a {
    color: #fff;
}

a, a:before, a:after, input, select, textarea, button {
    transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), background 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), border 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
    text-decoration: none;
    outline: none !important;
}

li {
    list-style: none;
}

body {
    width: 100%;
    overflow-x: hidden;
}

.wrapp {
    margin: 0 auto;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1250px;
}
.wrapp.-small {
    max-width: 1050px;
}
@media (max-width: 767px) {
    .wrapp {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

input,
textarea {
    -webkit-appearance: none;
}

.grecaptcha-badge {
    display: none !important;
}

.link {
    position: relative;
    z-index: 1;
}
.link:before {
    content: "";
    width: 0;
    height: 1px;
    background-color: #DFAC00;
    position: absolute;
    right: 0;
    bottom: -2px;
    transition: 0.34s;
}
.link:hover:before {
    width: 100%;
    left: 0;
    right: auto;
}

.butt {
    position: relative;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
    border-radius: 20px;
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    padding: 10.5px 24px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 19px;
    text-align: center;
    color: #000;
}
.butt:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: #000;
    transition: 0.6s;
    z-index: -1;
    border-radius: 20px;
}
.butt:hover {
    color: #fff;
}
.butt:hover:before {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.butt.-yell {
    background-color: #DFAC00;
    color: #fff;
}
.butt.-yell:before {
    background-color: #fff;
}
.butt.-yell:hover {
    color: #000;
}

.title36 {
    color: #000000;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
}
@media (max-width: 1024px) {
    .title36 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .title36 {
        font-size: 20px;
    }
}

.title42 {
    color: #000000;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
}
@media (max-width: 1024px) {
    .title42 {
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    .title42 {
        font-size: 20px;
    }
}

.para20 {
    color: #666666;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
}
@media (max-width: 1024px) {
    .para20 {
        font-size: 16px;
        line-height: 1.4;
    }
}
@media (max-width: 767px) {
    .para20 {
        font-size: 14px;
    }
}

.testimonial {
    position: relative;
    width: 100%;
    margin-top: 50px;
}
.testimonial:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    z-index: 1;
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.testimonial-content img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    margin-bottom: -20px !important;
    transform: translateY(-50px) !important;
    z-index: 2 !important;
    filter: grayscale(1) !important;
}
@media (max-width: 1024px) {
    .testimonial-content img {
        width: 70px !important;
        height: 70px !important;
        transform: translateY(-35px) !important;
    }
}
.testimonial-content p {
    position: relative !important;
    width: 100% !important;
    max-width: 630px !important;
    font-size: 16px !important;
    font-weight: normal !important;
    font-stretch: normal !important;
    font-style: italic !important;
    line-height: 1.38 !important;
    letter-spacing: normal !important;
    text-align: center !important;
    color: #000000 !important;
    margin-bottom: 30px !important;
}
@media (max-width: 1024px) {
    .testimonial-content p {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}
@media (max-width: 767px) {
    .testimonial-content p {
        font-size: 14px !important;
    }
}
.testimonial-content p svg {
    position: absolute;
    width: 30px;
    height: 23px;
    max-width: 30px;
    max-height: 23px;
    min-width: 30px;
    min-height: 23px;
}
@media (max-width: 767px) {
    .testimonial-content p svg {
        width: 15px;
        height: 12px;
        max-width: 15px;
        max-height: 12px;
        min-width: 15px;
        min-height: 12px;
    }
}
.testimonial-content p svg:first-of-type {
    left: -65px;
    top: 0;
    transform: rotate(180deg);
}
@media (max-width: 1024px) {
    .testimonial-content p svg:first-of-type {
        left: 0;
    }
}
.testimonial-content p svg:last-of-type {
    right: -65px;
    bottom: -45px;
}
@media (max-width: 1024px) {
    .testimonial-content p svg:last-of-type {
        right: 0;
    }
}
@media (max-width: 767px) {
    .testimonial-content p svg:last-of-type {
        bottom: 0;
    }
}
.testimonial-content .author {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: center;
    color: #000000;
}

@media (max-width: 1024px) {
    ::-webkit-scrollbar {
        display: none;
    }
}
.linknav {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(152, 152, 152, 0.4);
}
@media (max-width: 1149px) {
    .linknav {
        width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
}
@media (max-width: 1024px) {
    .linknav {
        margin-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .linknav {
        justify-content: flex-start;
    }
}
.linknav-items {
    display: flex;
    align-items: center;
}
@media (max-width: 1149px) {
    .linknav-items li {
        min-width: -webkit-fit-content;
        min-width: -moz-fit-content;
        min-width: fit-content;
    }
}
.linknav-items li:not(:last-child) {
    margin-right: 20px;
}
@media (max-width: 767px) {
    .linknav-items li.current_page_item {
        order: -1;
    }
}
.linknav-items li.current_page_item a {
    color: #000;
    font-weight: bold;
}
.linknav-items li.current_page_item a:before {
    width: 100%;
}
.linknav-items li a {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    z-index: 1;
    padding: 0 35px 13px 35px;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #989898;
}
@media (max-width: 1024px) {
    .linknav-items li a {
        padding: 0 20px 13px 20px;
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .linknav-items li a {
        font-size: 14px;
    }
}
.linknav-items li a:before {
    content: "";
    width: 0;
    height: 2px;
    background-color: #DFAC00;
    position: absolute;
    right: 0;
    bottom: -1px;
    transition: 0.34s;
    z-index: 2;
}
.linknav-items li a:hover:before {
    width: 100%;
    left: 0;
    right: auto;
}
@media (max-width: 1024px) {
    .linknav-items li a:hover:before {
        display: none;
    }
}

.sm {
    position: relative;
    display: flex;
    align-items: center;
}
.sm a:not(:last-of-type) {
    margin-right: 10px;
}
.sm svg {
    width: 25px;
    height: 25px;
    max-width: 25px;
    max-height: 25px;
    min-width: 25px;
    min-height: 25px;
}
.sm svg path {
    transition: 0.34s;
}
.sm svg * {
    fill: #DFAC00;
}

.partners-content-brand-lightbox-box p {
    text-align: justify;
}

.about-content p {
    text-align: justify;
}

.about-content ul li {
    text-align: left;
}

.header {
    position: absolute;
    top: 0;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 10000000000000000;
}
@media (max-width: 1024px) {
    .header {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
.header .wrapp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-hamburger {
    display: none;
}
@media (max-width: 1024px) {
    .header-hamburger {
        position: relative;
        display: flex;
        z-index: 16;
    }
    .header-hamburger:before {
        content: "";
        width: calc( 100% + 20px );
        height: calc( 100% + 24px );
        background-color: #000;
        border-radius: 50%;
        position: absolute;
        left: -10px;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }
}
.header-nav {
    position: relative;
    width: 36%;
}
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }
}
.header-nav.-left {
    position: relative;
    margin-right: auto;
}
.header-nav.-left ul {
    justify-content: flex-start;
}
.header-nav.-right {
    position: relative;
    margin-left: auto;
}
.header-nav.-right ul {
    justify-content: flex-end;
}
.header-nav ul {
    display: flex;
    align-items: center;
}
.header-nav li {
    display: flex;
}
.header-nav li:not(:last-child) {
    margin-right: 60px;
}
@media (max-width: 1024px) {
    .header-nav li:not(:last-child) {
        margin-right: 30px;
    }
}
.header-nav li.current-menu-item a {
    color: #000;
    font-weight: 500;
}
.header-nav li.current-menu-item a:before {
    background-color: #000;
}
.header-nav a {
    position: relative;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    z-index: 1;
}
.header-nav a:before {
    content: "";
    width: 0;
    height: 2px;
    background-color: #fff;
    position: absolute;
    right: 0;
    bottom: -2px;
    transition: 0.4s;
}
.header-nav a:hover:before {
    width: 100%;
    right: auto;
    left: 0;
}
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
}
@media (max-width: 1024px) {
    .header-logo {
        width: 100%;
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
        z-index: 17;
    }
    .header-logo.active-logo img {
        filter: brightness(0) !important;
    }
}
@media (max-width: 767px) {
    .header-logo {
        width: 100%;
        max-width: 180px;
    }
}
.header-logo img,
.header-logo svg {
    height: auto;
    width: 250px;
    filter: brightness(0.1);
}
@media (max-width: 1024px) {
    .header-logo img,
.header-logo svg {
        width: 100%;
    }
}
.header-content {
    display: none;
}
@media (max-width: 1024px) {
    .header-content {
        visibility: hidden;
        pointer-events: none;
        width: 100%;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
        position: fixed;
        top: 0;
        right: 0;
        will-change: transform;
        transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        display: block;
        transform: translateY(-100%);
        padding: 100px 20px 150px 20px;
        background-color: #DFAC00;
        z-index: 15;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        height: 100vh;
    }
    .header-content.opened {
        visibility: visible;
        pointer-events: auto;
        right: 0;
        transform: translateY(0);
    }
    .header-content .header-nav {
        display: flex !important;
        width: 100%;
    }
    .header-content .header-nav:first-of-type {
        margin-top: 50px;
    }
    .header-content .header-nav:not(:last-of-type) {
        margin-bottom: 25px;
    }
    .header-content .header-nav ul {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .header-content .header-nav li {
        margin-right: 0;
    }
    .header-content .header-nav li:not(:last-of-type) {
        margin-bottom: 25px;
    }
    .header-content .header-nav li.current-menu-item a {
        font-weight: bold !important;
        color: #000 !important;
    }
    .header-content .header-nav a {
        font-size: 28px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 0.86;
        letter-spacing: normal;
        text-align: center;
        color: #000;
    }
    .header-content .header-nav a:before {
        content: none;
        display: none;
    }
}

.home .header-logo img,
.home .header-logo svg {
    filter: none;
}
.home .header-nav ul li a {
    color: #000;
}
.home .header-nav ul li a:before {
    background-color: #000;
}

.page-template-contact .header,
.error404 .header,
.page-template-simple-page .header,
.blog .header,
.single-post .header {
    position: relative;
}
.page-template-contact .header-logo img,
.page-template-contact .header-logo svg,
.error404 .header-logo img,
.error404 .header-logo svg,
.page-template-simple-page .header-logo img,
.page-template-simple-page .header-logo svg,
.blog .header-logo img,
.blog .header-logo svg,
.single-post .header-logo img,
.single-post .header-logo svg {
    filter: none;
}
.page-template-contact .header-nav ul li.current-menu-item a,
.error404 .header-nav ul li.current-menu-item a,
.page-template-simple-page .header-nav ul li.current-menu-item a,
.blog .header-nav ul li.current-menu-item a,
.single-post .header-nav ul li.current-menu-item a {
    color: #DFAC00;
    font-weight: 500;
}
.page-template-contact .header-nav ul li.current-menu-item a:before,
.error404 .header-nav ul li.current-menu-item a:before,
.page-template-simple-page .header-nav ul li.current-menu-item a:before,
.blog .header-nav ul li.current-menu-item a:before,
.single-post .header-nav ul li.current-menu-item a:before {
    background-color: #DFAC00;
}
.page-template-contact .header-nav ul li a,
.error404 .header-nav ul li a,
.page-template-simple-page .header-nav ul li a,
.blog .header-nav ul li a,
.single-post .header-nav ul li a {
    color: #000;
}
.page-template-contact .header-nav ul li a:before,
.error404 .header-nav ul li a:before,
.page-template-simple-page .header-nav ul li a:before,
.blog .header-nav ul li a:before,
.single-post .header-nav ul li a:before {
    background-color: #000;
}

.footer {
    position: relative;
    background-color: #000;
    padding: 30px 0;
}
@media (max-width: 767px) {
    .footer {
        padding-top: 30px;
        padding-bottom: 55px;
    }
}
.footer .wrapp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .footer .wrapp {
        flex-direction: column;
        justify-content: center;
    }
}
.footer-copy {
    width: 36%;
    color: #989898;
    font-size: 12px;
    line-height: 1.2;
    min-width: inherit;
}
@media (max-width: 767px) {
    .footer-copy {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
}
.footer-copy a {
    position: relative;
    z-index: 1;
    font-size: 12px;
    line-height: 1.2;
    color: #DFAC00;
}
.footer-copy a:before {
    content: "";
    width: 0;
    height: 1px;
    background-color: #DFAC00;
    position: absolute;
    right: 0;
    bottom: -2px;
    transition: 0.34s;
}
.footer-copy a:hover:before {
    width: 100%;
    left: 0;
    right: auto;
}
.footer-logo {
    opacity: 0.5;
}
.footer-contact {
    position: relative;
    width: 36%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 767px) {
    .footer-contact {
        width: 100%;
        justify-content: center;
        margin-top: 25px;
    }
}
@media (max-width: 319px) {
    .footer-contact {
        flex-direction: column;
    }
}
.footer-contact-phone {
    margin-right: 22px;
    color: #989898;
    font-size: 14px;
}
@media (max-width: 319px) {
    .footer-contact-phone {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.footer-contact-phone:hover {
    color: #DFAC00;
}

.newspart {
    position: relative;
    width: 100%;
    padding-bottom: 50px;
}
.newspart .wrapp {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.newspart h2 {
    margin-bottom: 40px;
}
@media (max-width: 899px) {
    .newspart h2 {
        margin-bottom: 20px;
    }
}
.newspart-articles {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-bottom: 50px;
}
@media (max-width: 1024px) {
    .newspart-articles {
        grid-gap: 30px 15px;
    }
}
@media (max-width: 899px) {
    .newspart-articles {
        grid-template-columns: 1fr;
        grid-gap: 20px;
        margin-bottom: 20px;
        width: 100%;
    }
}
.newspart-article {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e6e6e6;
}
.newspart-article .img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .newspart-article .img {
        height: 200px;
    }
}
@media (max-width: 899px) {
    .newspart-article .img {
        height: auto;
    }
}
.newspart-article .img img {
    width: 100%;
    height: 100%;
    max-height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transition: 0.34s;
}
@media (max-width: 1024px) {
    .newspart-article .img img {
        height: 200px;
    }
}
@media (max-width: 899px) {
    .newspart-article .img img {
        height: auto;
        max-height: auto;
    }
}
.newspart-article .img:hover img {
    transform: scale(1.1, 1.1);
}
.newspart-article-content {
    background-color: #fff;
    padding: 20px 20px 30px 20px;
    position: relative;
}
.newspart-article-content.no-img {
    border-top: 1px solid #e6e6e6;
    padding-top: 30px;
}
.newspart-article-content .title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: center;
    color: #000000;
    margin-bottom: 18px;
    min-height: 56px;
}
@media (max-width: 1024px) {
    .newspart-article-content .title {
        font-size: 18px;
        min-height: 50px;
    }
}
.newspart-article-content .title:hover {
    color: #DFAC00;
}
.newspart-article-content .artilcefooter {
    display: flex;
    align-items: center;
    justify-content: center;
}
.newspart-article-content .artilcefooter a,
.newspart-article-content .artilcefooter span {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #DFAC00;
}
@media (max-width: 1024px) {
    .newspart-article-content .artilcefooter a,
.newspart-article-content .artilcefooter span {
        font-size: 13px;
    }
}
.newspart-article-content .artilcefooter span {
    color: #989898;
}
.newspart-article-content .artilcefooter a:hover {
    color: #000;
}
.newspart-article-content .artilcefooter ul li {
    display: none;
    margin-right: 4px;
}
.newspart-article-content .artilcefooter ul li:first-of-type {
    display: flex;
}
.newspart-article-content .artilcefooter .date {
    display: none;
}
.newspart .butt:before {
    background-color: #000;
}
.newspart .butt:hover {
    color: #fff !important;
}

.companiespart {
    position: relative;
    padding-bottom: 30px;
}
.companiespart img {
    width: 200px;
    filter: contrast(0);
    height: 90px;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: contain;
       object-fit: contain;
}
@media (max-width: 1024px) {
    .companiespart img {
        width: 100%;
        height: auto;
    }
}

.hero {
    position: relative;
    width: 100%;
    padding-top: 200px;
    padding-bottom: 100px;
    background-image: linear-gradient(to top, rgba(223, 172, 0, 0), #DFAC00);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .hero {
        padding: 180px 20px 50px 20px !important;
    }
}
@media (max-width: 767px) {
    .hero {
        padding: 120px 20px 50px 20px !important;
    }
}
.hero h1 {
    width: 100%;
    max-width: 730px;
    text-align: center;
    margin-bottom: 13px;
}
@media (max-width: 1024px) {
    .hero h1 {
        max-width: 550px;
    }
}
.hero p {
    width: 100%;
    max-width: 730px;
    text-align: center;
}
@media (max-width: 1024px) {
    .hero p {
        max-width: 550px;
    }
}
.hero p.ud {
    margin-top: 30px;
}
.hero p span {
    color: #DFAC00;
}
.hero p a {
    color: #DFAC00;
}
.hero p a:hover {
    color: #000;
}

.home {
    position: relative;
    width: 100%;
}
.home-hero {
    position: relative;
    width: 100%;
    height: inherit;
    max-height: inherit;
    min-height: inherit;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.home-hero:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(223, 172, 0, 0) 0%, #DFAC00 100%);
    z-index: 0;
    position: absolute;
    left: 0;
    bottom: 0;
}
.home-hero:after {
    content: "";
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%, #FFFFFF 100%);
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.home-hero img {
    position: absolute;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
}
.home-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 300px;
    padding-bottom: 200px;
}
@media (max-width: 899px) {
    .home-hero-content {
        padding-top: 150px;
        padding-bottom: 50px;
    }
}
.home-hero-content h1 {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    text-align: center;
    width: 100%;
    max-width: 730px;
    margin-bottom: 15px;
}
@media (max-width: 899px) {
    .home-hero-content h1 {
        font-size: 28px;
        max-width: 550px;
    }
}
@media (max-width: 449px) {
    .home-hero-content h1 {
        font-size: 20px;
    }
}
.home-hero-content p {
    color: #FFFFFF;
    width: 100%;
    max-width: 730px;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
    text-align: center;
    margin-bottom: 20px;
}
@media (max-width: 899px) {
    .home-hero-content p {
        font-size: 16px;
        max-width: 550px;
        line-height: 1.4;
    }
}
@media (max-width: 449px) {
    .home-hero-content p {
        font-size: 14px;
        line-height: 1.4;
    }
}
.home-intro {
    position: relative;
    z-index: 1;
    width: 100%;
}
.home-intro:before {
    content: "";
    height: 400px;
    width: 100%;
    background: linear-gradient(0deg, rgba(223, 172, 0, 0) 0%, #DFAC00 100%);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
}
.home-intro-video {
    position: relative;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0px 0px 23px 13px rgba(223, 171, 0, 0.4);
    height: 520px;
}
@media (max-width: 1024px) {
    .home-intro-video {
        height: 400px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
@media (max-width: 767px) {
    .home-intro-video {
        height: 300px;
    }
}
@media (max-width: 449px) {
    .home-intro-video {
        height: 250px;
    }
}
.home-intro-video-img {
    position: relative;
    width: 100%;
    height: 100%;
}
.home-intro-video-img:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.65;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.home-intro-video-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.home-intro-video-img svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    cursor: pointer;
    transition: 0.34s;
}
.home-intro-video-img svg:hover {
    transform: scale(1.2, 1.2);
}
.home-intro-video .video {
    display: none;
    width: 100%;
    height: 100%;
    background-color: #000;
}
.home-intro-video .video * {
    width: 100%;
    height: 100%;
}
.home-intro-content {
    position: relative;
    margin-top: 50px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .home-intro-content {
        margin-bottom: 50px;
    }
}
.home-intro-content h2,
.home-intro-content p {
    text-align: center;
    width: 100%;
    max-width: 730px;
}
@media (max-width: 1024px) {
    .home-intro-content h2,
.home-intro-content p {
        max-width: 550px;
    }
}
.home-events {
    position: relative;
    width: 100%;
    height: 650px;
    max-height: 650px;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
@media (max-width: 1024px) {
    .home-events {
        height: inherit;
        max-height: inherit;
        min-height: inherit;
    }
}
.home-events:after {
    content: "";
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 0;
    position: absolute;
    left: 0;
    bottom: 0;
}
@media (max-width: 1024px) {
    .home-events:after {
        height: 100%;
    }
}
.home-events img {
    position: absolute;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
}
.home-events-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 45px;
    z-index: 1;
}
@media (max-width: 1024px) {
    .home-events-content {
        padding: 120px 30px 30px 30px;
    }
}
.home-events-content h2 {
    color: #fff;
    margin-bottom: 20px;
    width: 100%;
    max-width: 730px;
    text-align: center;
}
@media (max-width: 1024px) {
    .home-events-content h2 {
        max-width: 550px;
    }
}
.home-events-content p {
    color: #D8D8D8;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    max-width: 730px;
}
@media (max-width: 1024px) {
    .home-events-content p {
        max-width: 550px;
    }
}
.home-membership {
    position: relative;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .home-membership {
        padding: 50px 0 !important;
    }
}
.home-membership-container {
    position: relative;
    width: 100%;
}
.home-membership-container .line {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
    position: absolute;
    left: 0;
    top: 125px;
    z-index: 1;
}
@media (max-width: 1024px) {
    .home-membership-container .line {
        top: 90px;
    }
}
.home-membership h2 {
    margin-bottom: 30px;
    text-align: center;
    max-width: 730px;
    width: 100%;
}
@media (max-width: 1024px) {
    .home-membership h2 {
        max-width: 550px;
        padding: 0 20px !important;
    }
}
.home-membership p {
    text-align: center;
    max-width: 730px;
    width: 100%;
}
@media (max-width: 1024px) {
    .home-membership p {
        padding: 0 20px !important;
        max-width: 550px;
    }
}
.home-membership a:hover {
    color: #fff !important;
}
.home-membership a:hover:before {
    background-color: #000;
}
.home-membership-slider {
    position: relative;
    margin-top: 75px;
    margin-bottom: 40px;
    width: 100%;
    padding: 0 80px;
}
@media (max-width: 1024px) {
    .home-membership-slider {
        padding: 0 80px !important;
        margin-top: 40px;
        margin-bottom: 20px;
    }
}
@media (max-width: 449px) {
    .home-membership-slider {
        padding: 0 !important;
    }
}
.home-membership-slider .swiper-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.home-membership-slider .swiper-slide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 20px;
}
.home-membership-slider .swiper-slide h3 {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #676767;
    margin-bottom: 6px;
}
.home-membership-slider .swiper-slide span {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #676767;
}
.home-membership-slider .swiper-arrows {
    position: absolute;
    left: 0;
    top: 25px;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}
@media (max-width: 1349px) {
    .home-membership-slider .swiper-arrows {
        padding: 0 15px;
    }
}
.home-membership-slider .swiper-arrows .left,
.home-membership-slider .swiper-arrows .right {
    cursor: pointer;
    transition: 0.34s;
}
.home-membership-slider .swiper-arrows .left svg,
.home-membership-slider .swiper-arrows .right svg {
    transition: 0.34s;
}
.home-membership-slider .swiper-arrows .left svg rect,
.home-membership-slider .swiper-arrows .left svg path,
.home-membership-slider .swiper-arrows .right svg rect,
.home-membership-slider .swiper-arrows .right svg path {
    transition: 0.34s;
}
.home-membership-slider .swiper-arrows .left:hover svg path:first-of-type,
.home-membership-slider .swiper-arrows .right:hover svg path:first-of-type {
    fill: #DFAC00;
}
.home-membership-slider .swiper-arrows .left:hover svg path:nth-child(3),
.home-membership-slider .swiper-arrows .right:hover svg path:nth-child(3) {
    fill: #DFAC00;
}
.home-membership-slider .swiper-arrows .left:hover svg path:nth-child(4),
.home-membership-slider .swiper-arrows .right:hover svg path:nth-child(4) {
    fill: #fff;
}
.home-membership-slider .swiper-arrows .left:hover svg path:nth-child(5),
.home-membership-slider .swiper-arrows .right:hover svg path:nth-child(5) {
    fill: #fff;
}
.home-membership-slider .swiper-arrows .left svg {
    transform: translateY(5px);
}
.home-membership-slider .swiper-arrows .left:hover svg {
    transform: translateY(5px);
}
.home-membership-slider .swiper-arrows .right svg {
    transform: rotate(180deg) translateY(-6px);
}
.home-membership-slider .swiper-arrows .right:hover svg {
    transform: rotate(180deg) translateY(-6px);
}

.about {
    position: relative;
    width: 100%;
}
.about-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-content h2 {
    width: 100%;
    max-width: 730px;
    text-align: center;
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .about-content h2 {
        max-width: 550px;
        margin-bottom: 20px;
    }
}
.about-content p {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: center;
    color: #666666;
    width: 100%;
    max-width: 730px;
}
@media (max-width: 1024px) {
    .about-content p {
        max-width: 550px;
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .about-content p {
        font-size: 14px;
    }
}
.about-content p:not(:last-child) {
    margin-bottom: 35px;
}
@media (max-width: 1024px) {
    .about-content p:not(:last-child) {
        margin-bottom: 20px;
    }
}
.about-content p a {
    color: #DFAC00;
}
.about-content p a:hover {
    color: #000;
}
.about-content img {
    margin: 15px 0 50px 0;
    width: 100%;
    height: auto;
}
@media (max-width: 767px) {
    .about-content img {
        width: calc( 100% + 40px);
    }
}
.about-content ul li {
    list-style-type: disc;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: center;
    color: #666666;
    width: 100%;
    max-width: 730px;
}
@media (max-width: 1024px) {
    .about-content ul li {
        max-width: 550px;
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .about-content ul li {
        font-size: 14px;
    }
}
.about-content ul li:not(:last-child) {
    margin-bottom: 5px;
}
.about-content ul li a {
    color: #DFAC00;
}
.about-content ul li a:hover {
    color: #000;
}
.about-content .testititleab {
    margin-top: 100px;
}
.about-gallery {
    position: relative;
    width: 100%;
    margin-top: 50px;
}
@media (max-width: 1024px) {
    .about-gallery {
        margin-bottom: 70px;
    }
}
@media (max-width: 767px) {
    .about-gallery {
        margin-top: 30px;
    }
}
.about-gallery:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    transform: translateY(-8px);
}
.about-gallery-slider {
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 1149px) {
    .about-gallery-slider {
        max-width: 920px !important;
    }
}
@media (max-width: 1024px) {
    .about-gallery-slider {
        max-width: 100% !important;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .about-gallery-slider {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
.about-gallery-slider .swiper-slide:before {
    content: "";
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 98%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -100px;
    z-index: 2;
}
.about-gallery-slider .swiper-slide span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 3;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
}
.about-gallery-slider img {
    width: 100%;
    height: 520px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 1024px) {
    .about-gallery-slider img {
        height: 360px;
    }
}
@media (max-width: 767px) {
    .about-gallery-slider img {
        height: 220px;
    }
}
.about-gallery .swiper-pagination {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}
@media (max-width: 1024px) {
    .about-gallery .swiper-pagination {
        display: flex;
    }
}
.about-gallery .swiper-pagination span {
    width: 10px;
    height: 10px;
    background-color: #D8D8D8;
    opacity: 1;
}
.about-gallery .swiper-pagination span:not(:last-child) {
    margin-right: 10px !important;
}
.about-gallery .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #616161;
}
.about-gallery .swiper-arrows {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}
@media (max-width: 1149px) {
    .about-gallery .swiper-arrows {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
@media (max-width: 1024px) {
    .about-gallery .swiper-arrows {
        display: none;
    }
}
.about-gallery .swiper-arrows .left,
.about-gallery .swiper-arrows .right {
    cursor: pointer;
    transition: 0.34s;
}
.about-gallery .swiper-arrows .left svg,
.about-gallery .swiper-arrows .right svg {
    transition: 0.34s;
}
.about-gallery .swiper-arrows .left svg rect,
.about-gallery .swiper-arrows .left svg path,
.about-gallery .swiper-arrows .right svg rect,
.about-gallery .swiper-arrows .right svg path {
    transition: 0.34s;
}
.about-gallery .swiper-arrows .left:hover svg path:first-of-type,
.about-gallery .swiper-arrows .right:hover svg path:first-of-type {
    fill: #DFAC00;
}
.about-gallery .swiper-arrows .left:hover svg path:nth-child(3),
.about-gallery .swiper-arrows .right:hover svg path:nth-child(3) {
    fill: #DFAC00;
}
.about-gallery .swiper-arrows .left:hover svg path:nth-child(4),
.about-gallery .swiper-arrows .right:hover svg path:nth-child(4) {
    fill: #fff;
}
.about-gallery .swiper-arrows .left:hover svg path:nth-child(5),
.about-gallery .swiper-arrows .right:hover svg path:nth-child(5) {
    fill: #fff;
}
.about-gallery .swiper-arrows .left svg {
    transform: translateY(-6px);
}
.about-gallery .swiper-arrows .left:hover svg {
    transform: scale(1.1, 1.1) translateY(-6px);
}
.about-gallery .swiper-arrows .right svg {
    transform: rotate(180deg) translateY(5px);
}
.about-gallery .swiper-arrows .right:hover svg {
    transform: scale(1.1, 1.1) rotate(180deg) translateY(5px);
}
.about-communityservice {
    position: relative;
    width: 100%;
    margin-top: 100px;
}
@media (max-width: 1024px) {
    .about-communityservice {
        margin-bottom: 70px;
    }
}
@media (max-width: 767px) {
    .about-communityservice {
        margin-top: 30px;
    }
}
.about-communityservice h2 {
    width: 100%;
    max-width: 730px;
    text-align: center;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}
.about-communityservice:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    transform: translateY(-8px);
}
.about-communityservice-slider {
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 1149px) {
    .about-communityservice-slider {
        max-width: 920px !important;
    }
}
@media (max-width: 1024px) {
    .about-communityservice-slider {
        max-width: 100% !important;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .about-communityservice-slider {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
.about-communityservice-slider .swiper-slide:before {
    content: none;
    display: none;
}
.about-communityservice-slider .swiper-slide span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 3;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
}
.about-communityservice-slider img {
    width: 100%;
    height: 700px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 1024px) {
    .about-communityservice-slider img {
        height: 360px;
    }
}
@media (max-width: 767px) {
    .about-communityservice-slider img {
        height: 220px;
    }
}
.about-communityservice .swiper-pagination {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}
@media (max-width: 1024px) {
    .about-communityservice .swiper-pagination {
        display: flex;
    }
}
.about-communityservice .swiper-pagination span {
    width: 10px;
    height: 10px;
    background-color: #D8D8D8;
    opacity: 1;
}
.about-communityservice .swiper-pagination span:not(:last-child) {
    margin-right: 10px !important;
}
.about-communityservice .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #616161;
}
.about-communityservice .swiper-arrows {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}
@media (max-width: 1149px) {
    .about-communityservice .swiper-arrows {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
@media (max-width: 1024px) {
    .about-communityservice .swiper-arrows {
        display: none;
    }
}
.about-communityservice .swiper-arrows .left,
.about-communityservice .swiper-arrows .right {
    cursor: pointer;
    transition: 0.34s;
}
.about-communityservice .swiper-arrows .left svg,
.about-communityservice .swiper-arrows .right svg {
    transition: 0.34s;
}
.about-communityservice .swiper-arrows .left svg rect,
.about-communityservice .swiper-arrows .left svg path,
.about-communityservice .swiper-arrows .right svg rect,
.about-communityservice .swiper-arrows .right svg path {
    transition: 0.34s;
}
.about-communityservice .swiper-arrows .left:hover svg path:first-of-type,
.about-communityservice .swiper-arrows .right:hover svg path:first-of-type {
    fill: #DFAC00;
}
.about-communityservice .swiper-arrows .left:hover svg path:nth-child(3),
.about-communityservice .swiper-arrows .right:hover svg path:nth-child(3) {
    fill: #DFAC00;
}
.about-communityservice .swiper-arrows .left:hover svg path:nth-child(4),
.about-communityservice .swiper-arrows .right:hover svg path:nth-child(4) {
    fill: #fff;
}
.about-communityservice .swiper-arrows .left:hover svg path:nth-child(5),
.about-communityservice .swiper-arrows .right:hover svg path:nth-child(5) {
    fill: #fff;
}
.about-communityservice .swiper-arrows .left svg {
    transform: translateY(-6px);
}
.about-communityservice .swiper-arrows .left:hover svg {
    transform: scale(1.1, 1.1) translateY(-6px);
}
.about-communityservice .swiper-arrows .right svg {
    transform: rotate(180deg) translateY(5px);
}
.about-communityservice .swiper-arrows .right:hover svg {
    transform: scale(1.1, 1.1) rotate(180deg) translateY(5px);
}
.about-testimonial {
    margin-top: 80px;
}
@media (max-width: 1024px) {
    .about-testimonial {
        margin-top: 60px;
    }
    .about-testimonial .author {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.about-leadership {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-leadership.-second-row {
    margin-top: 80px;
}
@media (max-width: 1024px) {
    .about-leadership.-second-row {
        margin-top: 50px;
    }
}
.about-leadership h2 {
    text-align: center;
    max-width: 730px;
    width: 100%;
    margin-bottom: 80px;
}
@media (max-width: 1024px) {
    .about-leadership h2 {
        margin-bottom: 50px;
        max-width: 550px;
    }
}
.about-leadership-items {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 65px 100px;
}
@media (max-width: 1149px) {
    .about-leadership-items {
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 65px 70px;
    }
}
@media (max-width: 1024px) {
    .about-leadership-items {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
    }
}
@media (max-width: 767px) {
    .about-leadership-items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }
}
@media (max-width: 499px) {
    .about-leadership-items {
        grid-gap: 50px 20px;
    }
}
.about-leadership-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.about-leadership-item img {
    width: 103px;
    height: 103px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 20px;
    filter: grayscale(1);
    border: 3px solid transparent;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
    .about-leadership-item img {
        width: 80px;
        height: 80px;
    }
}
.about-leadership-item img:hover {
    filter: grayscale(0);
    border-color: #DFAC00;
}
.about-leadership-item h3 {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #676767;
    margin-bottom: 6px;
}
@media (max-width: 767px) {
    .about-leadership-item h3 {
        font-size: 16px;
    }
}
.about-leadership-item span {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #676767;
}
.about-leadership-item-content {
    display: none;
}
.about-leadership-item-content.active {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    min-height: -webkit-fill-available;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    z-index: 999999999999;
    align-items: center;
    justify-content: center;
}
.about-leadership-item-content-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 80vh;
    background: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 30px 30px 30px;
}
@media (max-width: 1024px) {
    .about-leadership-item-content-box {
        max-width: inherit;
        width: calc( 100% - 70px );
        height: 70%;
        margin-top: -20px;
    }
}
.about-leadership-item-content-box svg {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.about-leadership-item-content-box svg:hover {
    transform: scale(1.5, 1.5);
}
.about-leadership-item-content-box img {
    margin-top: -50px;
    pointer-events: none;
    margin-bottom: 0;
}
.about-leadership-item-content-box h3 {
    color: #DFAC00;
    margin-top: 19px;
    margin-bottom: 5px;
}
.about-leadership-item-content-box span {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #676767;
}
.about-leadership-item-content-box span.position {
    margin-bottom: 45px;
}
.about-leadership-item-content-box p {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    text-align: center;
    color: #646464;
}
.about-leadership-item-content-box p:not(:last-of-type) {
    margin-bottom: 20px;
}
.about-leadership-item-content-box p:last-of-type {
    margin-bottom: 40px;
}
.about-leadership-item-content-box p * {
    color: #646464;
}
.about-leadership-item-content-box p a {
    color: #000;
}
.about-leadership-item-content-box .con {
    height: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}
.about-leadership-item-content-box .con::-webkit-scrollbar {
    display: none;
}
.about-leadership-item-content-box .con svg {
    position: relative;
    left: inherit;
    top: inherit;
    right: inherit;
    cursor: pointer;
    transition: 0.34s;
}
.about-leadership-item-content-box .con svg:hover {
    transform: none;
}
.about-leadership-item-content-box .con svg:hover * {
    fill: #000;
}
.about-companies {
    position: relative;
}
.about-companies h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
}
.about-companies-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-bottom: 80px;
}
@media (max-width: 1024px) {
    .about-companies-items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
        margin-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .about-companies-items {
        grid-gap: 15px;
    }
}
.about-companies-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6e6e6;
    flex-direction: column;
    cursor: pointer;
    min-height: 130px;
}
@media (max-width: 767px) {
    .about-companies-item {
        min-height: inherit;
        pointer-events: none;
    }
}
.about-companies-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: #000;
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: -1;
}
.about-companies-item img {
    padding: 20px 10px;
    width: auto;
    max-width: 200px;
    height: auto;
    filter: contrast(0);
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
    .about-companies-item img {
        width: 90%;
        max-width: inherit;
        height: auto;
    }
}
.about-companies-item h3 {
    opacity: 0;
    position: absolute;
    top: 30px;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.about-companies-item-links {
    opacity: 0;
    bottom: 30px;
    position: absolute;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-companies-item-links a {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #DFAC00;
}
.about-companies-item-links a svg {
    width: 25px;
    max-width: 25px;
    min-width: 25px;
    height: 25px;
    max-height: 25px;
    min-height: 25px;
    margin-right: 10px;
    transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.about-companies-item-links a svg * {
    fill: #DFAC00;
}
.about-companies-item-links a:not(:last-of-type) {
    margin-right: 40px;
}
.about-companies-item-links a:hover {
    color: #fff;
}
.about-companies-item-links a:hover svg {
    transform: scale(1.3, 1.3);
}
.about-companies-item:hover:before {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.about-companies-item:hover img {
    opacity: 0;
}
.about-companies-item:hover h3 {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.about-companies-item:hover .about-companies-item-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.about-companies-quote {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(223, 172, 0, 0.1);
    padding: 50px 20px 25px 20px;
}
.about-companies-quote img {
    width: 50px;
    height: 50px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 50%;
    margin: 44px auto 15px auto;
}
@media (max-width: 767px) {
    .about-companies-quote img {
        width: 40px;
        height: 40px;
        margin: 20px auto 15px auto;
    }
}
.about-companies-quote p {
    position: relative;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    padding: 0 30px;
}
@media (max-width: 767px) {
    .about-companies-quote p {
        font-size: 12px;
    }
}
.about-companies-quote p svg {
    position: absolute;
    width: 30px;
    height: 23px;
    max-width: 30px;
    max-height: 23px;
    min-width: 30px;
    min-height: 23px;
}
@media (max-width: 767px) {
    .about-companies-quote p svg {
        width: 16px;
        height: 12px;
        max-width: 16px;
        max-height: 12px;
        min-width: 16px;
        min-height: 12px;
    }
}
.about-companies-quote p svg:first-of-type {
    left: 0;
    top: -30px;
    transform: rotate(180deg);
}
.about-companies-quote p svg:last-of-type {
    right: 0;
    bottom: -30px;
}
.about-companies-quote span {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: italic;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000;
}
@media (max-width: 767px) {
    .about-companies-quote span {
        font-size: 10px;
    }
}
.about-companies-quote.-one {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 4;
}
@media (max-width: 1024px) {
    .about-companies-quote.-one {
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-start: 1;
        grid-column-end: 3;
    }
}
.about-companies-quote.-second {
    grid-row-start: 6;
    grid-row-end: 8;
    grid-column-start: 1;
    grid-column-end: 3;
}
@media (max-width: 1024px) {
    .about-companies-quote.-second {
        grid-row-start: 8;
        grid-row-end: 8;
        grid-column-start: 1;
        grid-column-end: 3;
    }
}
.about .newspart {
    margin-top: 80px;
}
@media (max-width: 1024px) {
    .about .newspart {
        margin-top: 50px;
    }
}
.about.-mission .about-communityservice {
    display: none;
}

.events {
    position: relative;
}
.events .hero {
    padding-bottom: 80px;
}
.events-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
}
.events-item-gallery {
    position: relative;
    width: 100%;
}
.events-item-gallery:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    transform: translateY(-8px);
}
.events-item-gallery-slider {
    width: 100%;
    padding: 0;
    max-width: 920px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .events-item-gallery-slider {
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .events-item-gallery-slider {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
.events-item-gallery-slider .swiper-slide:before {
    content: "";
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 98%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -100px;
    z-index: 2;
}
.events-item-gallery-slider .swiper-slide span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 3;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
}
.events-item-gallery-slider img {
    width: 100%;
    height: 520px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 1024px) {
    .events-item-gallery-slider img {
        height: 360px;
    }
}
@media (max-width: 767px) {
    .events-item-gallery-slider img {
        height: 220px;
    }
}
.events-item-gallery .swiper-pagination {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}
@media (max-width: 1024px) {
    .events-item-gallery .swiper-pagination {
        display: flex;
    }
}
.events-item-gallery .swiper-pagination span {
    width: 10px;
    height: 10px;
    background-color: #D8D8D8;
    opacity: 1;
}
.events-item-gallery .swiper-pagination span:not(:last-child) {
    margin-right: 10px !important;
}
.events-item-gallery .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #616161;
}
.events-item-gallery .swiper-arrows {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}
@media (max-width: 1149px) {
    .events-item-gallery .swiper-arrows {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
@media (max-width: 1024px) {
    .events-item-gallery .swiper-arrows {
        display: none;
    }
}
.events-item-gallery .swiper-arrows .left,
.events-item-gallery .swiper-arrows .right {
    cursor: pointer;
    transition: 0.34s;
}
.events-item-gallery .swiper-arrows .left svg,
.events-item-gallery .swiper-arrows .right svg {
    transition: 0.34s;
}
.events-item-gallery .swiper-arrows .left svg rect,
.events-item-gallery .swiper-arrows .left svg path,
.events-item-gallery .swiper-arrows .right svg rect,
.events-item-gallery .swiper-arrows .right svg path {
    transition: 0.34s;
}
.events-item-gallery .swiper-arrows .left:hover svg path:first-of-type,
.events-item-gallery .swiper-arrows .right:hover svg path:first-of-type {
    fill: #DFAC00;
}
.events-item-gallery .swiper-arrows .left:hover svg path:nth-child(3),
.events-item-gallery .swiper-arrows .right:hover svg path:nth-child(3) {
    fill: #DFAC00;
}
.events-item-gallery .swiper-arrows .left:hover svg path:nth-child(4),
.events-item-gallery .swiper-arrows .right:hover svg path:nth-child(4) {
    fill: #fff;
}
.events-item-gallery .swiper-arrows .left:hover svg path:nth-child(5),
.events-item-gallery .swiper-arrows .right:hover svg path:nth-child(5) {
    fill: #fff;
}
.events-item-gallery .swiper-arrows .left svg {
    transform: translateY(-6px);
}
.events-item-gallery .swiper-arrows .left:hover svg {
    transform: scale(1.1, 1.1) translateY(-6px);
}
.events-item-gallery .swiper-arrows .right svg {
    transform: rotate(180deg) translateY(5px);
}
.events-item-gallery .swiper-arrows .right:hover svg {
    transform: scale(1.1, 1.1) rotate(180deg) translateY(5px);
}
.events-item h2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 730px;
    text-align: center;
    margin-top: 60px;
}
@media (max-width: 1024px) {
    .events-item h2 {
        max-width: 550px;
    }
}
.events-item p {
    text-align: center;
    color: #666666;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 730px;
}
@media (max-width: 1024px) {
    .events-item p {
        max-width: 550px;
    }
}
.events-restaurants {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 100px;
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .events-restaurants {
        margin-top: 50px;
    }
}
.events-restaurants-main {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    width: 100%;
    margin-bottom: 0;
}
@media (max-width: 1024px) {
    .events-restaurants-main {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}
@media (max-width: 767px) {
    .events-restaurants-main {
        grid-gap: 15px;
    }
}
.events-restaurants-main .partners-content-brand {
    cursor: inherit !important;
}
.events-restaurants-main .partners-content-brand img {
    cursor: inherit !important;
    filter: inherit !important;
    width: auto !important;
    height: auto !important;
    max-width: 200px !important;
    max-height: 200px !important;
}
.events-restaurants-main .partners-content-brand:before {
    content: none;
}
.events-restaurants h2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 730px;
    text-align: center;
    margin-top: 60px;
}
@media (max-width: 1024px) {
    .events-restaurants h2 {
        max-width: 550px;
    }
}
.events-restaurants p {
    text-align: center;
    color: #666666;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 730px;
}
@media (max-width: 1024px) {
    .events-restaurants p {
        max-width: 550px;
    }
}
.events-features {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-top: 100px;
}
@media (max-width: 1024px) {
    .events-features {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        margin-top: 80px;
    }
}
@media (max-width: 767px) {
    .events-features {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 60px;
    }
}
.events-features-item {
    position: relative;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6e6e6;
}
@media (max-width: 767px) {
    .events-features-item {
        padding: 15px;
    }
}
.events-features-item:last-of-type {
    grid-column-start: 3;
    grid-column-end: 5;
}
@media (max-width: 1024px) {
    .events-features-item:last-of-type {
        grid-column-start: auto;
        grid-column-end: auto;
    }
}
.events-features-item span {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: center;
    color: #000;
}
@media (max-width: 1024px) {
    .events-features-item span {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .events-features-item span {
        font-size: 12px;
    }
}
.events-footer {
    text-align: center;
    color: #666666;
    margin-top: 50px;
    margin-bottom: 80px;
    width: 100%;
    max-width: 730px;
}
@media (max-width: 1024px) {
    .events-footer {
        max-width: 550px;
        margin-bottom: 50px;
    }
}
.events-footer a {
    color: #DFAC00;
}
.events-footer a:hover {
    color: #000;
}

.contact {
    position: relative;
}
.contact-main {
    padding-top: 100px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 1024px) {
    .contact-main {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .contact-main {
        padding-top: 30px;
        padding-bottom: 20px;
    }
}
.contact h1 {
    text-align: center;
    width: 100%;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 13px;
}
.contact p {
    text-align: center;
    width: 100%;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1024px) {
    .contact p {
        max-width: 550px;
    }
}
.contact-form {
    position: relative;
    margin-top: 80px;
    width: 100%;
    max-width: 860px;
}
@media (max-width: 1024px) {
    .contact-form {
        margin-top: 40px;
    }
}
.contact-form-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
@media (max-width: 767px) {
    .contact-form-main {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
}
.contact-form-main div[data-class=wpcf7cf_group] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
@media (max-width: 767px) {
    .contact-form-main div[data-class=wpcf7cf_group] {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
}
.contact-form-main .submit,
.contact-form-main .field-last,
.contact-form-main [data-class=wpcf7cf_group] {
    grid-column-start: 1;
    grid-column-end: 3;
}
@media (max-width: 767px) {
    .contact-form-main .submit,
.contact-form-main .field-last,
.contact-form-main [data-class=wpcf7cf_group] {
        grid-column-start: auto;
        grid-column-end: auto;
    }
}
.contact-form-main label {
    display: none;
}
.contact-form-main br {
    display: none;
}
.contact-form-main input,
.contact-form-main textarea,
.contact-form-main select {
    margin: 0;
    border: solid 1px #d5d5d5;
    background-color: #fff;
    width: 100%;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}
.contact-form-main input::-moz-placeholder, .contact-form-main textarea::-moz-placeholder, .contact-form-main select::-moz-placeholder {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #646464;
    -moz-transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.contact-form-main input:-ms-input-placeholder, .contact-form-main textarea:-ms-input-placeholder, .contact-form-main select:-ms-input-placeholder {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #646464;
    -ms-transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.contact-form-main input::placeholder,
.contact-form-main textarea::placeholder,
.contact-form-main select::placeholder {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #646464;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.contact-form-main input:focus, .contact-form-main input:active,
.contact-form-main textarea:focus,
.contact-form-main textarea:active,
.contact-form-main select:focus,
.contact-form-main select:active {
    border-color: #DFAC00;
    color: #000;
}
.contact-form-main input:focus::-moz-placeholder, .contact-form-main input:active::-moz-placeholder, .contact-form-main textarea:focus::-moz-placeholder, .contact-form-main textarea:active::-moz-placeholder, .contact-form-main select:focus::-moz-placeholder, .contact-form-main select:active::-moz-placeholder {
    opacity: 0;
}
.contact-form-main input:focus:-ms-input-placeholder, .contact-form-main input:active:-ms-input-placeholder, .contact-form-main textarea:focus:-ms-input-placeholder, .contact-form-main textarea:active:-ms-input-placeholder, .contact-form-main select:focus:-ms-input-placeholder, .contact-form-main select:active:-ms-input-placeholder {
    opacity: 0;
}
.contact-form-main input:focus::placeholder, .contact-form-main input:active::placeholder,
.contact-form-main textarea:focus::placeholder,
.contact-form-main textarea:active::placeholder,
.contact-form-main select:focus::placeholder,
.contact-form-main select:active::placeholder {
    opacity: 0;
}
.contact-form-main input[type=submit],
.contact-form-main textarea[type=submit],
.contact-form-main select[type=submit] {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: none;
    background: #DFAC00 !important;
    box-shadow: none;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff !important;
    padding: 10px 70px;
}
.contact-form-main input[type=submit]:hover,
.contact-form-main textarea[type=submit]:hover,
.contact-form-main select[type=submit]:hover {
    background: #000 !important;
}
.contact-form-main select {
    color: #646464;
}

.errorpage {
    position: relative;
}
.errorpage-main {
    position: relative;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 1024px) {
    .errorpage-main {
        padding-top: 50px;
    }
}
.errorpage-main * {
    text-align: center;
}
.errorpage-main h1 {
    font-size: 72px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .errorpage-main h1 {
        font-size: 60px;
    }
}
@media (max-width: 767px) {
    .errorpage-main h1 {
        font-size: 40px;
        margin-bottom: 13px;
    }
}
.errorpage-main h2 {
    margin-bottom: 13px;
    width: 100%;
    max-width: 730px;
}
@media (max-width: 1024px) {
    .errorpage-main h2 {
        max-width: 550px;
    }
}
.errorpage-main p {
    width: 100%;
    max-width: 680px;
}
@media (max-width: 1024px) {
    .errorpage-main p {
        max-width: 520px;
    }
}
.errorpage-main p a {
    color: #DFAC00;
}
.errorpage-main p a:hover {
    color: #000;
}
.errorpage .newspart {
    margin-top: 80px;
}
@media (max-width: 1024px) {
    .errorpage .newspart {
        margin-top: 50px;
    }
}

.simplepage {
    position: relative;
}
.simplepage-content {
    position: relative;
    max-width: 730px;
    padding-top: 100px;
    padding-bottom: 80px;
}
@media (max-width: 1024px) {
    .simplepage-content {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}
.simplepage-content h1,
.simplepage-content h2,
.simplepage-content h3,
.simplepage-content h4,
.simplepage-content h5,
.simplepage-content h6 {
    margin-bottom: 20px;
}
.simplepage-content h2,
.simplepage-content h3,
.simplepage-content h4,
.simplepage-content h5,
.simplepage-content h6 {
    font-weight: bold;
    font-size: 28px;
}
@media (max-width: 1024px) {
    .simplepage-content h2,
.simplepage-content h3,
.simplepage-content h4,
.simplepage-content h5,
.simplepage-content h6 {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    .simplepage-content h2,
.simplepage-content h3,
.simplepage-content h4,
.simplepage-content h5,
.simplepage-content h6 {
        font-size: 20px;
    }
}
.simplepage-content * {
    text-align: center;
}
.simplepage-content p,
.simplepage-content li {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: center;
    color: #000;
}
@media (max-width: 1024px) {
    .simplepage-content p,
.simplepage-content li {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .simplepage-content p,
.simplepage-content li {
        font-size: 16px;
    }
}
.simplepage-content p:not(:last-of-type),
.simplepage-content li:not(:last-of-type) {
    margin-bottom: 30px;
}
.simplepage-content p a,
.simplepage-content li a {
    color: #DFAC00;
}
.simplepage-content p a:hover,
.simplepage-content li a:hover {
    color: #000;
}
.simplepage-content ul {
    margin: 40px 0;
}
.simplepage-content ul li {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 20px;
    margin-left: auto;
    margin-right: auto;
}
.simplepage-content ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: #DFAC00;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
}
.simplepage-content ul li:not(:last-of-type) {
    margin-bottom: 5px;
}

.membership-content h2 {
    color: #000;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1024px) {
    .membership-content h2 {
        max-width: 550px;
    }
}
.membership-content p {
    color: #666666;
    text-align: center;
    width: 100%;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1024px) {
    .membership-content p {
        max-width: 550px;
    }
}
.membership-content-features {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px 100px;
    width: 100%;
    max-width: 760px;
    margin: 75px auto 70px auto;
}
@media (max-width: 1024px) {
    .membership-content-features {
        margin-top: 50px;
        margin-bottom: 50px;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 65px 30px;
        max-width: 450px;
    }
}
@media (max-width: 767px) {
    .membership-content-features {
        margin-bottom: 30px;
    }
}
.membership-content-features li {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.membership-content-features li img {
    width: auto;
    height: 89px;
    margin-bottom: 25px;
}
@media (max-width: 1024px) {
    .membership-content-features li img {
        height: 69px;
        margin-bottom: 10px;
    }
}
.membership-content-features li span {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000;
}
@media (max-width: 1024px) {
    .membership-content-features li span {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .membership-content-features li span {
        font-size: 12px;
    }
}
.membership-content .requestinvt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}
.membership-content .requestinvt:before {
    background-color: #000;
}
.membership-content .requestinvt:hover {
    color: #fff;
}
.membership-content-quote {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767px) {
    .membership-content-quote {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.membership-content-quote svg {
    position: absolute;
    width: 30px;
    max-width: 30px;
    min-width: 30px;
}
@media (max-width: 767px) {
    .membership-content-quote svg {
        width: 16px;
        max-width: 16px;
        min-width: 16px;
    }
}
.membership-content-quote svg:first-of-type {
    left: 0;
    top: 0;
    transform: rotate(180deg);
}
.membership-content-quote svg:last-of-type {
    right: 0;
    bottom: 0;
}
.membership-content-quote p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    width: 100%;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767px) {
    .membership-content-quote p {
        font-size: 14px;
    }
}
.membership-content-quote span {
    display: flex;
    justify-content: center;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    margin-top: 30px;
    width: 100%;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}
.membership-faq {
    position: relative;
}
.membership-faq-header {
    position: relative;
    padding: 15px 0;
    border-bottom: 1px solid rgba(152, 152, 152, 0.2);
    background: #fff;
    transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    cursor: pointer;
    z-index: 1;
}
.membership-faq-header:before {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    background: rgba(243, 243, 242, 0.5);
    z-index: -1;
    opacity: 0;
}
.membership-faq-header span {
    display: flex;
    width: 100%;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    color: #000;
}
@media (max-width: 767px) {
    .membership-faq-header span {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .membership-faq-header span {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 14px;
    }
}
.membership-faq-header.ui-accordion-header-active {
    border-bottom-color: rgba(243, 243, 242, 0.5);
}
.membership-faq-header.ui-accordion-header-active span {
    font-weight: bold;
}
.membership-faq-header.ui-accordion-header-active:before {
    width: 100%;
    height: 100%;
    opacity: 1;
}
.membership-faq-header:hover:before {
    width: 100%;
    height: 100%;
    opacity: 1;
}
.membership-faq-container {
    position: relative;
    background: rgba(243, 243, 242, 0.5);
    padding-top: 20px;
    padding-bottom: 30px;
}
@media (max-width: 767px) {
    .membership-faq-container {
        padding-top: 0px;
        padding-bottom: 15px;
    }
}
.membership-faq-container-answer {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767px) {
    .membership-faq-container-answer {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}
.membership-faq-container-answer p:empty {
    display: none;
}
.membership-faq-container-answer * {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: #000;
}
@media (max-width: 1024px) {
    .membership-faq-container-answer * {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .membership-faq-container-answer * {
        font-size: 14px;
    }
}
.membership-faq-container-answer ul {
    margin-top: 20px;
}
.membership-faq-container-answer li {
    list-style: inside;
}
.membership-faq-container-answer li:not(:last-of-type) {
    margin-bottom: 10px;
}
.membership-testimonials {
    position: relative;
    margin-top: 130px;
}
@media (max-width: 1024px) {
    .membership-testimonials {
        margin-top: 100px;
    }
}
@media (max-width: 767px) {
    .membership-testimonials {
        margin-top: 80px;
    }
}
.membership-testimonials-item:not(:last-of-type) {
    margin-bottom: 120px;
}
@media (max-width: 1024px) {
    .membership-testimonials-item:not(:last-of-type) {
        margin-bottom: 100px;
    }
}
@media (max-width: 1024px) {
    .membership-testimonials-item .testimonial-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.membership-videos {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 55px 30px;
    margin-bottom: 60px;
}
@media (max-width: 1024px) {
    .membership-videos {
        margin-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .membership-videos {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 40px;
    }
}
.membership-videos-item {
    position: relative;
}
.membership-videos-item-video {
    position: relative;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
}
@media (max-width: 1024px) {
    .membership-videos-item-video {
        height: 400px;
    }
}
@media (max-width: 767px) {
    .membership-videos-item-video {
        height: 300px;
    }
}
@media (max-width: 449px) {
    .membership-videos-item-video {
        height: 250px;
    }
}
.membership-videos-item-video-img {
    position: relative;
    width: 100%;
    height: 100%;
}
.membership-videos-item-video-img:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.65;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.membership-videos-item-video-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.membership-videos-item-video-img svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    cursor: pointer;
    transition: 0.34s;
}
.membership-videos-item-video-img svg:hover {
    transform: scale(1.2, 1.2);
}
.membership-videos-item-video .video {
    display: none;
    width: 100%;
    height: 100%;
    background-color: #000;
}
.membership-videos-item-video .video * {
    width: 100%;
    height: 100%;
}
.membership-videos-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}
.membership-videos-item-content h3 {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    margin-bottom: 8px;
}
@media (max-width: 1024px) {
    .membership-videos-item-content h3 {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .membership-videos-item-content h3 {
        font-size: 16px;
    }
}
.membership-videos-item-content span {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #989898;
}
@media (max-width: 1024px) {
    .membership-videos-item-content span {
        font-size: 13px;
    }
}
@media (max-width: 767px) {
    .membership-videos-item-content span {
        font-size: 12px;
    }
}
.membership .requestvideobtn {
    margin: 0 auto 80px auto;
}
@media (max-width: 1024px) {
    .membership .requestvideobtn {
        margin-bottom: 50px;
    }
}
.membership .requestvideobtn:before {
    background-color: #000;
}
.membership .requestvideobtn:hover {
    color: #fff;
}
.membership .newspart {
    margin-top: 80px;
}
@media (max-width: 1024px) {
    .membership .newspart {
        margin-top: 50px;
    }
}

.partners {
    position: relative;
}
@media (max-width: 767px) {
    .partners-nav li.current_page_item {
        order: inherit !important;
    }
}
.partners-nav a {
    cursor: pointer;
}
.partners-content {
    position: relative;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-bottom: 80px;
}
@media (max-width: 1024px) {
    .partners-content {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
        margin-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .partners-content {
        grid-gap: 15px;
    }
}
.partners-content.active-content {
    display: grid;
}
.partners-content-brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6e6e6;
}
.partners-content-brand img {
    padding: 20px 10px;
    cursor: pointer;
    width: 220px;
    height: auto;
    filter: contrast(0);
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
    .partners-content-brand img {
        width: 90%;
    }
}
.partners-content-brand:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: #000;
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: -1;
}
.partners-content-brand:hover:before {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.partners-content-brand:hover img {
    filter: contrast(1);
}
.partners-content-brand.active:hover:before {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.partners-content-brand.active:hover img {
    filter: contrast(0);
}
.partners-content-brand.active .partners-content-brand-lightbox {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    height: 100vh;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    z-index: 999999999999;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .partners-content-brand.active .partners-content-brand-lightbox {
        display: block;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        -webkit-backdrop-filter: blur(0);
        backdrop-filter: blur(0);
    }
}
.partners-content-brand-lightbox {
    display: none;
}
.partners-content-brand-lightbox-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 80vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
}
@media (max-width: 1024px) {
    .partners-content-brand-lightbox-box {
        display: block;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        height: 100vh;
        margin-top: 0;
        width: 100%;
        max-width: inherit;
        padding-bottom: 0;
    }
}
.partners-content-brand-lightbox-box img {
    filter: contrast(0) !important;
    margin-bottom: 10px;
}
@media (max-width: 1024px) {
    .partners-content-brand-lightbox-box img {
        padding-bottom: 0;
        display: block;
        margin-bottom: 20px;
        max-width: 150px;
        margin-left: auto;
        margin-right: auto;
    }
}
.partners-content-brand-lightbox-box svg {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.partners-content-brand-lightbox-box svg:hover {
    transform: scale(1.5, 1.5);
}
.partners-content-brand-lightbox-box p {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    text-align: center;
    color: #646464;
    padding: 0 30px;
}
.partners-content-brand-lightbox-box p:last-of-type {
    margin-bottom: 30px;
}
.partners-content-brand-lightbox-box p a {
    color: #000;
    text-decoration: underline;
}
.partners-content-brand-lightbox-member {
    position: relative;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.partners-content-brand-lightbox-member:first-of-type {
    margin-top: 30px;
}
@media (max-width: 1024px) {
    .partners-content-brand-lightbox-member:first-of-type {
        margin-top: 0;
    }
}
.partners-content-brand-lightbox-member:not(:last-of-type) {
    margin-bottom: 10px;
}
@media (max-width: 1024px) {
    .partners-content-brand-lightbox-member:last-of-type {
        padding-bottom: 70px;
    }
}
.partners-content-brand-lightbox-member h4 {
    font-weight: bold;
    color: #DFAC00;
    margin-bottom: 40px;
}
@media (max-width: 1024px) {
    .partners-content-brand-lightbox-member h4 {
        margin-bottom: 20px;
    }
}
.partners-content-brand-lightbox-member .sm {
    margin-top: 40px;
}
@media (max-width: 1024px) {
    .partners-content-brand-lightbox-member .sm {
        margin-top: 20px;
    }
}
.partners-content-brand-lightbox-member .sm svg {
    position: relative;
    right: inherit;
    top: inherit;
    left: inherit;
    bottom: inherit;
}
.partners-content-brand-lightbox-member .sm svg:hover {
    transform: none;
}
.partners-content-brand-lightbox-member .sm svg:hover * {
    fill: #000;
}
.partners-content-brand-lightbox-member .personimg {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.partners-content-brand-lightbox-member .personimg:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #d3d3d3;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.partners-content-brand-lightbox-member img {
    filter: none !important;
    padding: 0;
    margin: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ada89d;
    padding: 8px;
    z-index: 2;
}
.partners-content-brand-lightbox-member ul,
.partners-content-brand-lightbox-member ol {
    margin: 15px auto;
}
.partners-content-brand-lightbox-member li {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    text-align: center;
    color: #646464;
    padding: 0 30px;
}
.partners-content-brand-lightbox-member li:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #DFAC00;
    border-radius: 50%;
    position: absolute;
    left: 20px;
    top: 9px;
}
.partners-content-brand-lightbox-member li a {
    color: #000;
}
.partners-content-brand-lightbox-member li:not(:last-of-type) {
    margin-bottom: 5px;
}
.partners-content-quote {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(223, 172, 0, 0.1);
    padding: 50px 20px 25px 20px;
}
.partners-content-quote img {
    width: 50px;
    height: 50px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 50%;
    margin: 44px auto 15px auto;
}
@media (max-width: 767px) {
    .partners-content-quote img {
        width: 40px;
        height: 40px;
        margin: 20px auto 15px auto;
    }
}
.partners-content-quote p {
    position: relative;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    padding: 0 30px;
}
@media (max-width: 767px) {
    .partners-content-quote p {
        font-size: 12px;
    }
}
.partners-content-quote p svg {
    position: absolute;
    width: 30px;
    height: 23px;
    max-width: 30px;
    max-height: 23px;
    min-width: 30px;
    min-height: 23px;
}
@media (max-width: 767px) {
    .partners-content-quote p svg {
        width: 16px;
        height: 12px;
        max-width: 16px;
        max-height: 12px;
        min-width: 16px;
        min-height: 12px;
    }
}
.partners-content-quote p svg:first-of-type {
    left: 0;
    top: -30px;
    transform: rotate(180deg);
}
.partners-content-quote p svg:last-of-type {
    right: 0;
    bottom: -30px;
}
.partners-content-quote span {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: italic;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000;
}
@media (max-width: 767px) {
    .partners-content-quote span {
        font-size: 10px;
    }
}
.partners-content-quote.-one {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 4;
}
@media (max-width: 1024px) {
    .partners-content-quote.-one {
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-start: 1;
        grid-column-end: 3;
    }
}
.partners-content-quote.-second {
    grid-row-start: 6;
    grid-row-end: 8;
    grid-column-start: 1;
    grid-column-end: 3;
}
@media (max-width: 1024px) {
    .partners-content-quote.-second {
        grid-row-start: 8;
        grid-row-end: 8;
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

.articles {
    position: relative;
}
.articles-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.articles-header h1 {
    padding-top: 60px;
    text-align: center;
    padding-bottom: 50px;
    width: 100%;
    max-width: 630px;
}
@media (max-width: 1024px) {
    .articles-header h1 {
        padding-top: 50px;
    }
}
@media (max-width: 767px) {
    .articles-header h1 {
        padding-top: 30px;
    }
}
.articles-main {
    position: relative;
    padding-bottom: 50px;
}
.articles-main-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
@media (max-width: 1149px) {
    .articles-main-items {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .articles-main-items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
}
.articles-main .butt {
    margin: 50px auto 0 auto;
    cursor: pointer;
}
@media (max-width: 767px) {
    .articles-main .butt {
        margin-top: 20px;
    }
}
.articles-main .butt:before {
    background: #000 !important;
}
.articles-main .butt:hover {
    color: #fff;
}

.article {
    position: relative;
}
.article-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 50px;
}
@media (max-width: 1024px) {
    .article-hero {
        padding-top: 50px;
    }
}
@media (max-width: 767px) {
    .article-hero {
        padding-top: 30px;
    }
}
.article-hero h1 {
    text-align: center;
    color: #000;
    margin-bottom: 13px;
}
.article-hero-info {
    position: relative;
    display: flex;
    align-items: center;
}
.article-hero-info a,
.article-hero-info span {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #DFAC00;
}
@media (max-width: 1024px) {
    .article-hero-info a,
.article-hero-info span {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .article-hero-info a,
.article-hero-info span {
        font-size: 14px;
    }
}
.article-hero-info span {
    color: #989898;
}
.article-hero-info a:hover {
    color: #000;
}
.article-hero-info ul li {
    display: none;
    margin-right: 4px;
}
.article-hero-info ul li:first-of-type {
    display: flex;
}
.article-hero-info .date {
    display: none;
}
.article-content {
    position: relative;
    padding-bottom: 100px;
}
@media (max-width: 1024px) {
    .article-content {
        padding-bottom: 50px;
    }
}
.article-content-gallery {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}
@media (max-width: 1024px) {
    .article-content-gallery {
        margin-bottom: 70px;
    }
}
.article-content-gallery:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    transform: translateY(-8px);
}
.article-content-gallery-slider {
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
    max-width: 920px;
}
@media (max-width: 1024px) {
    .article-content-gallery-slider {
        max-width: 100%;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .article-content-gallery-slider {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
.article-content-gallery-slider .swiper-slide:before {
    content: "";
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 98%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -100px;
    z-index: 2;
}
.article-content-gallery-slider .swiper-slide span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 3;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
}
.article-content-gallery-slider img {
    width: 100%;
    height: 520px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 1024px) {
    .article-content-gallery-slider img {
        height: 360px;
    }
}
@media (max-width: 767px) {
    .article-content-gallery-slider img {
        height: 220px;
    }
}
.article-content-gallery .swiper-pagination {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}
@media (max-width: 1024px) {
    .article-content-gallery .swiper-pagination {
        display: flex;
    }
}
.article-content-gallery .swiper-pagination span {
    width: 10px;
    height: 10px;
    background-color: #D8D8D8;
    opacity: 1;
}
.article-content-gallery .swiper-pagination span:not(:last-child) {
    margin-right: 10px !important;
}
.article-content-gallery .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #616161;
}
.article-content-gallery .swiper-arrows {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}
@media (max-width: 1149px) {
    .article-content-gallery .swiper-arrows {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
@media (max-width: 1024px) {
    .article-content-gallery .swiper-arrows {
        display: none;
    }
}
.article-content-gallery .swiper-arrows .left,
.article-content-gallery .swiper-arrows .right {
    cursor: pointer;
    transition: 0.34s;
}
.article-content-gallery .swiper-arrows .left svg,
.article-content-gallery .swiper-arrows .right svg {
    transition: 0.34s;
}
.article-content-gallery .swiper-arrows .left svg rect,
.article-content-gallery .swiper-arrows .left svg path,
.article-content-gallery .swiper-arrows .right svg rect,
.article-content-gallery .swiper-arrows .right svg path {
    transition: 0.34s;
}
.article-content-gallery .swiper-arrows .left:hover svg path:first-of-type,
.article-content-gallery .swiper-arrows .right:hover svg path:first-of-type {
    fill: #DFAC00;
}
.article-content-gallery .swiper-arrows .left:hover svg path:nth-child(3),
.article-content-gallery .swiper-arrows .right:hover svg path:nth-child(3) {
    fill: #DFAC00;
}
.article-content-gallery .swiper-arrows .left:hover svg path:nth-child(4),
.article-content-gallery .swiper-arrows .right:hover svg path:nth-child(4) {
    fill: #fff;
}
.article-content-gallery .swiper-arrows .left:hover svg path:nth-child(5),
.article-content-gallery .swiper-arrows .right:hover svg path:nth-child(5) {
    fill: #fff;
}
.article-content-gallery .swiper-arrows .left svg {
    transform: translateY(-6px);
}
.article-content-gallery .swiper-arrows .left:hover svg {
    transform: scale(1.1, 1.1) translateY(-6px);
}
.article-content-gallery .swiper-arrows .right svg {
    transform: rotate(180deg) translateY(5px);
}
.article-content-gallery .swiper-arrows .right:hover svg {
    transform: scale(1.1, 1.1) rotate(180deg) translateY(5px);
}
.article-content-txts, .article-content-oc {
    position: relative;
    max-width: 730px;
}
.article-content-txts *, .article-content-oc * {
    text-align: center;
}
.article-content-txts img, .article-content-oc img {
    width: 100%;
    height: auto;
    margin: 50px auto;
}
@media (max-width: 1024px) {
    .article-content-txts img, .article-content-oc img {
        margin: 35px auto;
    }
}
@media (max-width: 767px) {
    .article-content-txts img, .article-content-oc img {
        margin: 20px auto;
    }
}
.article-content-txts h2, .article-content-oc h2 {
    color: #000000;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .article-content-txts h2, .article-content-oc h2 {
        font-size: 24px;
        margin-top: 15px;
        margin-bottom: 25px;
    }
}
@media (max-width: 767px) {
    .article-content-txts h2, .article-content-oc h2 {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
}
.article-content-txts h3,
.article-content-txts h4,
.article-content-txts h5,
.article-content-txts h6, .article-content-oc h3,
.article-content-oc h4,
.article-content-oc h5,
.article-content-oc h6 {
    color: #000000;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .article-content-txts h3,
.article-content-txts h4,
.article-content-txts h5,
.article-content-txts h6, .article-content-oc h3,
.article-content-oc h4,
.article-content-oc h5,
.article-content-oc h6 {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .article-content-txts h3,
.article-content-txts h4,
.article-content-txts h5,
.article-content-txts h6, .article-content-oc h3,
.article-content-oc h4,
.article-content-oc h5,
.article-content-oc h6 {
        font-size: 18px;
    }
}
.article-content-txts ul, .article-content-oc ul {
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .article-content-txts ul, .article-content-oc ul {
        margin-bottom: 20px;
    }
}
.article-content-txts ul li, .article-content-oc ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    list-style-type: disc;
    color: #666666;
}
.article-content-txts ul li:not(:last-child), .article-content-oc ul li:not(:last-child) {
    margin-bottom: 5px;
}
.article-content-txts ul li a, .article-content-oc ul li a {
    color: #DFAC00;
}
.article-content-txts ul li a:hover, .article-content-oc ul li a:hover {
    color: #000;
}
.article-content-txts p,
.article-content-txts a,
.article-content-txts li, .article-content-oc p,
.article-content-oc a,
.article-content-oc li {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: center;
    color: #666666;
}
@media (max-width: 1024px) {
    .article-content-txts p,
.article-content-txts a,
.article-content-txts li, .article-content-oc p,
.article-content-oc a,
.article-content-oc li {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .article-content-txts p,
.article-content-txts a,
.article-content-txts li, .article-content-oc p,
.article-content-oc a,
.article-content-oc li {
        font-size: 15px;
    }
}
.article-content-txts p:not(:last-of-type),
.article-content-txts a:not(:last-of-type),
.article-content-txts li:not(:last-of-type), .article-content-oc p:not(:last-of-type),
.article-content-oc a:not(:last-of-type),
.article-content-oc li:not(:last-of-type) {
    margin-bottom: 30px;
}
.article-content-txts a, .article-content-oc a {
    color: #DFAC00;
}
.article-content-txts a:hover, .article-content-oc a:hover {
    color: #000;
}
.article-content-fwi {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin-bottom: 60px;
}
@media (max-width: 1024px) {
    .article-content-fwi {
        margin-bottom: 50px;
    }
}
.article-content-fwi:not(:first-child) {
    margin-top: 60px;
}
@media (max-width: 1024px) {
    .article-content-fwi:not(:first-child) {
        margin-top: 50px;
    }
}
.article-content-fwi img {
    width: 100%;
    height: auto;
}
.article-content-oc * {
    width: 100%;
    max-width: 730px !important;
}
.article-content-oc table {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: center;
    color: #666666;
}
.article-content-oc table img {
    width: 100%;
}
.article-content-oc #templateFooter {
    display: none;
}
.article .newspart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.article .newspart h2 {
    font-weight: 500;
    color: #000;
    text-align: center;
}
.article .newspart .butt {
    margin-left: auto;
    margin-right: auto;
}
