@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&amp;
 subset=latin-ext);
@import url(https://fonts.googleapis.com/css?family=Merriweather:300,400,700,900&amp;subset=latin-ext);

/**
 * Swiper 4.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 14, 2018
 */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}

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

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

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

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

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

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

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

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

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
    -webkit-perspective: 1200px;
    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 {
    -webkit-transform-style: preserve-3d;
    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: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    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: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    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: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    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: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal>.swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical>.swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    -o-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: 200ms top, 200ms -webkit-transform;
    transition: 200ms top, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms left, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms right, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-vertical>.swiper-pagination-progressbar,
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000000;
}

.swiper-pagination-lock {
    display: none;
}

/* Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container>img,
.swiper-zoom-container>svg,
.swiper-zoom-container>canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

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

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

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

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

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

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

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

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

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
}

.tippy-iOS {
    cursor: pointer !important
}

.tippy-notransition {
    transition: none !important
}

.tippy-popper {
    -webkit-perspective: 700px;
    perspective: 700px;
    z-index: 9999;
    outline: 0;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    pointer-events: none;
    line-height: 1.4
}

.tippy-popper[x-placement^=top] .tippy-backdrop {
    border-radius: 40% 40% 0 0
}

.tippy-popper[x-placement^=top] .tippy-roundarrow {
    bottom: -8px;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0
}

.tippy-popper[x-placement^=top] .tippy-roundarrow svg {
    position: absolute;
    left: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.tippy-popper[x-placement^=top] .tippy-arrow {
    border-top: 8px solid #333;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    bottom: -7px;
    margin: 0 6px;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0
}

.tippy-popper[x-placement^=top] .tippy-backdrop {
    -webkit-transform-origin: 0 25%;
    transform-origin: 0 25%
}

.tippy-popper[x-placement^=top] .tippy-backdrop[data-state=visible] {
    -webkit-transform: scale(1) translate(-50%, -55%);
    transform: scale(1) translate(-50%, -55%);
    opacity: 1
}

.tippy-popper[x-placement^=top] .tippy-backdrop[data-state=hidden] {
    -webkit-transform: scale(.2) translate(-50%, -45%);
    transform: scale(.2) translate(-50%, -45%);
    opacity: 0
}

.tippy-popper[x-placement^=top] [data-animation=shift-toward][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
}

.tippy-popper[x-placement^=top] [data-animation=shift-toward][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px)
}

.tippy-popper[x-placement^=top] [data-animation=perspective] {
    -webkit-transform-origin: bottom;
    transform-origin: bottom
}

.tippy-popper[x-placement^=top] [data-animation=perspective][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateY(-10px) rotateX(0);
    transform: translateY(-10px) rotateX(0)
}

.tippy-popper[x-placement^=top] [data-animation=perspective][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateY(0) rotateX(60deg);
    transform: translateY(0) rotateX(60deg)
}

.tippy-popper[x-placement^=top] [data-animation=fade][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
}

.tippy-popper[x-placement^=top] [data-animation=fade][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
}

.tippy-popper[x-placement^=top] [data-animation=shift-away][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
}

.tippy-popper[x-placement^=top] [data-animation=shift-away][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.tippy-popper[x-placement^=top] [data-animation=scale][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateY(-10px) scale(1);
    transform: translateY(-10px) scale(1)
}

.tippy-popper[x-placement^=top] [data-animation=scale][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateY(0) scale(.5);
    transform: translateY(0) scale(.5)
}

.tippy-popper[x-placement^=bottom] .tippy-backdrop {
    border-radius: 0 0 30% 30%
}

.tippy-popper[x-placement^=bottom] .tippy-roundarrow {
    top: -8px;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%
}

.tippy-popper[x-placement^=bottom] .tippy-roundarrow svg {
    position: absolute;
    left: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.tippy-popper[x-placement^=bottom] .tippy-arrow {
    border-bottom: 8px solid #333;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    top: -7px;
    margin: 0 6px;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%
}

.tippy-popper[x-placement^=bottom] .tippy-backdrop {
    -webkit-transform-origin: 0 -50%;
    transform-origin: 0 -50%
}

.tippy-popper[x-placement^=bottom] .tippy-backdrop[data-state=visible] {
    -webkit-transform: scale(1) translate(-50%, -45%);
    transform: scale(1) translate(-50%, -45%);
    opacity: 1
}

.tippy-popper[x-placement^=bottom] .tippy-backdrop[data-state=hidden] {
    -webkit-transform: scale(.2) translate(-50%);
    transform: scale(.2) translate(-50%);
    opacity: 0
}

.tippy-popper[x-placement^=bottom] [data-animation=shift-toward][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateY(10px);
    transform: translateY(10px)
}

.tippy-popper[x-placement^=bottom] [data-animation=shift-toward][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px)
}

.tippy-popper[x-placement^=bottom] [data-animation=perspective] {
    -webkit-transform-origin: top;
    transform-origin: top
}

.tippy-popper[x-placement^=bottom] [data-animation=perspective][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateY(10px) rotateX(0);
    transform: translateY(10px) rotateX(0)
}

.tippy-popper[x-placement^=bottom] [data-animation=perspective][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateY(0) rotateX(-60deg);
    transform: translateY(0) rotateX(-60deg)
}

.tippy-popper[x-placement^=bottom] [data-animation=fade][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateY(10px);
    transform: translateY(10px)
}

.tippy-popper[x-placement^=bottom] [data-animation=fade][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px)
}

.tippy-popper[x-placement^=bottom] [data-animation=shift-away][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateY(10px);
    transform: translateY(10px)
}

.tippy-popper[x-placement^=bottom] [data-animation=shift-away][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.tippy-popper[x-placement^=bottom] [data-animation=scale][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateY(10px) scale(1);
    transform: translateY(10px) scale(1)
}

.tippy-popper[x-placement^=bottom] [data-animation=scale][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateY(0) scale(.5);
    transform: translateY(0) scale(.5)
}

.tippy-popper[x-placement^=left] .tippy-backdrop {
    border-radius: 50% 0 0 50%
}

.tippy-popper[x-placement^=left] .tippy-roundarrow {
    right: -16px;
    -webkit-transform-origin: 33.33333333% 50%;
    transform-origin: 33.33333333% 50%
}

.tippy-popper[x-placement^=left] .tippy-roundarrow svg {
    position: absolute;
    left: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.tippy-popper[x-placement^=left] .tippy-arrow {
    border-left: 8px solid #333;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    right: -7px;
    margin: 3px 0;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%
}

.tippy-popper[x-placement^=left] .tippy-backdrop {
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0
}

.tippy-popper[x-placement^=left] .tippy-backdrop[data-state=visible] {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    opacity: 1
}

.tippy-popper[x-placement^=left] .tippy-backdrop[data-state=hidden] {
    -webkit-transform: scale(.2) translate(-75%, -50%);
    transform: scale(.2) translate(-75%, -50%);
    opacity: 0
}

.tippy-popper[x-placement^=left] [data-animation=shift-toward][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px)
}

.tippy-popper[x-placement^=left] [data-animation=shift-toward][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px)
}

.tippy-popper[x-placement^=left] [data-animation=perspective] {
    -webkit-transform-origin: right;
    transform-origin: right
}

.tippy-popper[x-placement^=left] [data-animation=perspective][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateX(-10px) rotateY(0);
    transform: translateX(-10px) rotateY(0)
}

.tippy-popper[x-placement^=left] [data-animation=perspective][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateX(0) rotateY(-60deg);
    transform: translateX(0) rotateY(-60deg)
}

.tippy-popper[x-placement^=left] [data-animation=fade][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px)
}

.tippy-popper[x-placement^=left] [data-animation=fade][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px)
}

.tippy-popper[x-placement^=left] [data-animation=shift-away][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px)
}

.tippy-popper[x-placement^=left] [data-animation=shift-away][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.tippy-popper[x-placement^=left] [data-animation=scale][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateX(-10px) scale(1);
    transform: translateX(-10px) scale(1)
}

.tippy-popper[x-placement^=left] [data-animation=scale][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateX(0) scale(.5);
    transform: translateX(0) scale(.5)
}

.tippy-popper[x-placement^=right] .tippy-backdrop {
    border-radius: 0 50% 50% 0
}

.tippy-popper[x-placement^=right] .tippy-roundarrow {
    left: -16px;
    -webkit-transform-origin: 66.66666666% 50%;
    transform-origin: 66.66666666% 50%
}

.tippy-popper[x-placement^=right] .tippy-roundarrow svg {
    position: absolute;
    left: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.tippy-popper[x-placement^=right] .tippy-arrow {
    border-right: 8px solid #333;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    left: -7px;
    margin: 3px 0;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%
}

.tippy-popper[x-placement^=right] .tippy-backdrop {
    -webkit-transform-origin: -50% 0;
    transform-origin: -50% 0
}

.tippy-popper[x-placement^=right] .tippy-backdrop[data-state=visible] {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    opacity: 1
}

.tippy-popper[x-placement^=right] .tippy-backdrop[data-state=hidden] {
    -webkit-transform: scale(.2) translate(-25%, -50%);
    transform: scale(.2) translate(-25%, -50%);
    opacity: 0
}

.tippy-popper[x-placement^=right] [data-animation=shift-toward][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateX(10px);
    transform: translateX(10px)
}

.tippy-popper[x-placement^=right] [data-animation=shift-toward][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px)
}

.tippy-popper[x-placement^=right] [data-animation=perspective] {
    -webkit-transform-origin: left;
    transform-origin: left
}

.tippy-popper[x-placement^=right] [data-animation=perspective][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateX(10px) rotateY(0);
    transform: translateX(10px) rotateY(0)
}

.tippy-popper[x-placement^=right] [data-animation=perspective][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateX(0) rotateY(60deg);
    transform: translateX(0) rotateY(60deg)
}

.tippy-popper[x-placement^=right] [data-animation=fade][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateX(10px);
    transform: translateX(10px)
}

.tippy-popper[x-placement^=right] [data-animation=fade][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px)
}

.tippy-popper[x-placement^=right] [data-animation=shift-away][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateX(10px);
    transform: translateX(10px)
}

.tippy-popper[x-placement^=right] [data-animation=shift-away][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.tippy-popper[x-placement^=right] [data-animation=scale][data-state=visible] {
    opacity: 1;
    -webkit-transform: translateX(10px) scale(1);
    transform: translateX(10px) scale(1)
}

.tippy-popper[x-placement^=right] [data-animation=scale][data-state=hidden] {
    opacity: 0;
    -webkit-transform: translateX(0) scale(.5);
    transform: translateX(0) scale(.5)
}

.tippy-tooltip {
    position: relative;
    color: #fff;
    border-radius: 4px;
    font-size: .9rem;
    padding: .3rem .6rem;
    max-width: 350px;
    text-align: center;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #333
}

.tippy-tooltip[data-size=small] {
    padding: .2rem .4rem;
    font-size: .75rem
}

.tippy-tooltip[data-size=large] {
    padding: .4rem .8rem;
    font-size: 1rem
}

.tippy-tooltip[data-animatefill] {
    overflow: hidden;
    background-color: transparent
}

.tippy-tooltip[data-interactive],
.tippy-tooltip[data-interactive] path {
    pointer-events: auto
}

.tippy-tooltip[data-inertia][data-state=visible] {
    transition-timing-function: cubic-bezier(.53, 2, .36, .85)
}

.tippy-tooltip[data-inertia][data-state=hidden] {
    transition-timing-function: ease
}

.tippy-arrow,
.tippy-roundarrow {
    position: absolute;
    width: 0;
    height: 0
}

.tippy-roundarrow {
    width: 24px;
    height: 8px;
    fill: #333;
    pointer-events: none
}

.tippy-backdrop {
    position: absolute;
    will-change: transform;
    background-color: #333;
    border-radius: 50%;
    width: calc(110% + 2rem);
    left: 50%;
    top: 50%;
    z-index: -1;
    transition: all cubic-bezier(.46, .1, .52, .98);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.tippy-backdrop:after {
    content: "";
    float: left;
    padding-top: 100%
}

.tippy-backdrop+.tippy-content {
    transition-property: opacity
}

.tippy-backdrop+.tippy-content[data-state=visible] {
    opacity: 1
}

.tippy-backdrop+.tippy-content[data-state=hidden] {
    opacity: 0
}

@media (max-width:360px) {
    .tippy-popper {
        max-width: 96%;
        max-width: calc(100% - 20px)
    }
}

@charset "UTF-8";
/*
 * blueimp Gallery CSS
 * https://github.com/blueimp/Gallery
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * https://opensource.org/licenses/MIT
 */

.blueimp-gallery,
.blueimp-gallery>.slides>.slide>.slide-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Prevent artifacts in Mozilla Firefox: */
    -moz-backface-visibility: hidden;
}

.blueimp-gallery>.slides>.slide>.slide-content {
    margin: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    opacity: 1;
}

.blueimp-gallery {
    position: fixed;
    z-index: 999999;
    overflow: hidden;
    background: #000;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    display: none;
    direction: ltr;
    -ms-touch-action: none;
    touch-action: none;
}

.blueimp-gallery-carousel {
    position: relative;
    z-index: auto;
    margin: 1em auto;
    /* Set the carousel width/height ratio to 16/9: */
    padding-bottom: 56.25%;
    -webkit-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.blueimp-gallery-display {
    display: block;
    opacity: 1;
}

.blueimp-gallery>.slides {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.blueimp-gallery-carousel>.slides {
    position: absolute;
}

.blueimp-gallery>.slides>.slide {
    position: relative;
    float: left;
    height: 100%;
    text-align: center;
    -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.blueimp-gallery,
.blueimp-gallery>.slides>.slide>.slide-content {
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.blueimp-gallery>.slides>.slide-loading {
    background: url(/images/vendor/blueimp-gallery/loading.gif?05992d3434d3589b38a3a5431842d38f) center no-repeat;
    background-size: 64px 64px;
}

.blueimp-gallery>.slides>.slide-loading>.slide-content {
    opacity: 0;
}

.blueimp-gallery>.slides>.slide-error {
    background: url(/images/vendor/blueimp-gallery/error.png?90901890fbf9b379405f47a23313e63b) center no-repeat;
}

.blueimp-gallery>.slides>.slide-error>.slide-content {
    display: none;
}

.blueimp-gallery>.prev,
.blueimp-gallery>.next {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 40px;
    height: 40px;
    margin-top: -23px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 60px;
    font-weight: 100;
    line-height: 30px;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 2px #000;
    text-align: center;
    background: #222;
    background: rgba(0, 0, 0, 0.5);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    border: 3px solid #fff;
    border-radius: 23px;
    opacity: 0.5;
    cursor: pointer;
    display: none;
}

.blueimp-gallery>.next {
    left: auto;
    right: 15px;
}

.blueimp-gallery>.close,
.blueimp-gallery>.title {
    position: absolute;
    top: 15px;
    left: 15px;
    margin: 0 40px 0 0;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    text-shadow: 0 0 2px #000;
    opacity: 0.8;
    display: none;
}

.blueimp-gallery>.close {
    padding: 15px;
    right: 15px;
    left: auto;
    margin: -15px;
    font-size: 30px;
    text-decoration: none;
    cursor: pointer;
}

.blueimp-gallery>.play-pause {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 15px;
    height: 15px;
    background: url(/images/vendor/blueimp-gallery/play-pause.png?a012413b54276e2eefd145c7aec60f93) 0 0 no-repeat;
    cursor: pointer;
    opacity: 0.5;
    display: none;
}

.blueimp-gallery-playing>.play-pause {
    background-position: -15px 0;
}

.blueimp-gallery>.prev:hover,
.blueimp-gallery>.next:hover,
.blueimp-gallery>.close:hover,
.blueimp-gallery>.title:hover,
.blueimp-gallery>.play-pause:hover {
    color: #fff;
    opacity: 1;
}

.blueimp-gallery-controls>.prev,
.blueimp-gallery-controls>.next,
.blueimp-gallery-controls>.close,
.blueimp-gallery-controls>.title,
.blueimp-gallery-controls>.play-pause {
    display: block;
    /* Fix z-index issues (controls behind slide element) on Android: */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.blueimp-gallery-single>.prev,
.blueimp-gallery-left>.prev,
.blueimp-gallery-single>.next,
.blueimp-gallery-right>.next,
.blueimp-gallery-single>.play-pause {
    display: none;
}

.blueimp-gallery>.slides>.slide>.slide-content,
.blueimp-gallery>.prev,
.blueimp-gallery>.next,
.blueimp-gallery>.close,
.blueimp-gallery>.play-pause {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Replace PNGs with SVGs for capable browsers (excluding IE<9) */
body:last-child .blueimp-gallery>.slides>.slide-error {
    background-image: url(/images/vendor/blueimp-gallery/error.svg?19ee6b7e6642d75d6144b0c8209c93d6);
}

body:last-child .blueimp-gallery>.play-pause {
    width: 20px;
    height: 20px;
    background-size: 40px 20px;
    background-image: url(/images/vendor/blueimp-gallery/play-pause.svg?21dfa3149b274acb9c1819d342a6a169);
}

body:last-child .blueimp-gallery-playing>.play-pause {
    background-position: -20px 0;
}

/* IE7 fixes */
*+html .blueimp-gallery>.slides>.slide {
    min-height: 300px;
}

*+html .blueimp-gallery>.slides>.slide>.slide-content {
    position: relative;
}

@font-face {
    font-family: 'draughts';
    src: url("../storage/fonts/draughts.2fd5b3f85f45.eot?c420f1");
    src: url("../storage/fonts/draughts.2fd5b3f85f45.eot?c420f1#iefix") format("embedded-opentype"), url("../storage/fonts/draughts.efd512fc9529.ttf?c420f1") format("truetype"), url("../storage/fonts/draughts.5bd1751704a3.woff?c420f1") format("woff"), url("../storage/fonts/draughts.6a89ab029d8f.svg?c420f1#draughts") format("svg");
    font-weight: normal;
    font-style: normal;
}

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

.icon-crossroad:before {
    content: "\E906";
}

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

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

.icon-clock:before {
    content: "\E900";
}

.icon-pin:before {
    content: "\E901";
}

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

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

.nav__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.nav__item {
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.nav__item-link {
    color: #886557;
    margin: 0.3em 1.5em;
    display: inline-block;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.nav__item-link:link,
.nav__item-link:visited {
    color: #381000;
}

.nav__item-link--active,
.nav__item-link:hover {
    color: #6b1f00;
}

.nav__logo {
    display: block;
    position: relative;
    top: -14px;
}

.nav__logo-image {
    height: 60px;
}

body.body-nav--expanded {
    overflow: hidden;
}

@media (max-width: 1000px) {
    .nav__item-link {
        margin: 0.3em 1em;
    }
}

.lang__container {
    position: absolute;
    top: 20px;
    right: 30px;
}

.lang__button {
    font-size: 18px;
    border: none;
    background-color: transparent;
    color: #efc79c;
    font-weight: 600;
    position: absolute;
    top: 1px;
    right: 0;
}

.lang__button:hover {
    color: #f6e0c8;
}

.lang__button .icon {
    position: relative;
    top: 3px;
    margin-right: 2px;
}

.lang__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.lang__item--selected .lang__item-link {
    color: #ffffff !important;
    background-color: #efc79c;
    border-radius: 50% !important;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    width: 26px;
    height: 26px;
    display: inline-block;
}

.lang__item-link:link,
.lang__item-link:visited {
    font-size: 16px;
    color: #381000;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 29px;
    font-weight: 600;
    border-radius: 4px;
    margin: 2px 5px;
}

.lang__item-link:hover {
    color: #6b1f00;
}

@media (max-width: 767px) {
    .lang__container {
        position: relative;
        left: 0;
        top: 0;
        padding-bottom: 50px;
    }

    .lang__items {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .lang__button {
        position: relative !important;
        right: initial !important;
        top: initial !important;
        display: block !important;
        margin: 0.5em auto !important;
        color: #f8f6f0 !important;
    }
}

.gallery {
    font-size: 1.6rem;
    background-size: 60%;
}

.gallery__container {
    max-width: 1200px;
    margin: 0 auto 50px;
}

.gallery__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: left;
    width: 91%;
    margin: 0px 4%;
}

.gallery__link {
    margin: 0;
}

.gallery__item {
    width: 29.33%;
    margin: 0 2% 3em;
    border-radius: 4px;
    position: relative;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    background-color: #ffffff;
}

.gallery__item:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.gallery__item:hover .gallery__item-image:after {
    height: 160px;
}

.gallery__item-title {
    font-size: 2rem;
    font-family: "Merriweather", arial, serif;
    margin: 0;
    font-weight: 500;
}

.gallery__item-subtitle {
    margin: 0;
}

.gallery__item-image {
    width: 100%;
    height: 0;
    padding-top: 67.25%;
    margin: 0;
    background-position: center center;
    background-image: url("../storage/i/no-media.11f67edfef1b.png");
    background-size: cover;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.gallery__item-image:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 80px;
    bottom: 0;
    left: 0;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#4d000000', GradientType=0);
}

.gallery__item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #ffffff;
    padding: 20px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.gallery__item-count {
    border-radius: 50%;
    background-color: #efc79c;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.25);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.25);
    color: #ffffff;
    margin-left: 10px;
    display: inline-block;
    width: 56px;
    height: 56px;
    vertical-align: middle;
    font-size: 18px;
    line-height: 56px;
    text-align: center;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: absolute;
    top: -28px;
    right: 20px;
    font-family: "Merriweather", arial, serif;
    font-style: normal;
}

.gallery__item-time {
    font-size: 12px;
    color: #ffffff;
    font-weight: 400;
}

.gallery__item-time .icon {
    position: relative;
    top: 1px;
    margin-right: 3px;
}

.gallery__item-link:link,
.gallery__item-link:visited {
    color: #efc79c;
}

.gallery__item-link:hover {
    color: #ebbb86;
}

.gallery__item-link:hover .icon {
    background-color: #ebbb86;
}

.gallery__item-link .icon {
    border-radius: 50%;
    background-color: #efc79c;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    color: #ffffff;
    margin-left: 10px;
    display: inline-block;
    width: 56px;
    height: 56px;
    vertical-align: middle;
    font-size: 30px;
    line-height: 56px;
    text-align: center;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.gallery__categories-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
}

.gallery__categories-items--small .gallery__categories-item {
    width: 24%;
}

.gallery__categories-item {
    width: 29.33%;
    margin: 0 2% 50px;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 4px;
    position: relative;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.gallery__categories-item:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.gallery__categories-item:hover:before {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    height: 11px;
}

.gallery__categories-item:hover:after {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    height: 11px;
}

.gallery__categories-item:before,
.gallery__categories-item:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 2%;
    width: 96%;
    height: 6px;
    background-color: #f5f5f5;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: 2;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.gallery__categories-item:after {
    bottom: -12px;
    width: 92%;
    left: 4%;
    background-color: #efeeee;
    z-index: 1;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.gallery__categories-item-image {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    margin: 0;
    background-image: url("../storage/i/no-media.11f67edfef1b.png");
    background-position: center center;
    background-size: cover;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.gallery__categories-item-info {
    padding: 25px;
    position: relative;
}

.gallery__categories-item-info .gallery__item-time {
    color: #381000;
}

.gallery__categories-item-title {
    color: #381000;
    margin: 0 0 10px;
}

.gallery__single {
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.gallery__single-media {
    position: relative;
}

.gallery__single-back {
    border-radius: 50%;
    background-color: #efc79c;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    color: #ffffff;
    margin-left: 10px;
    display: inline-block;
    width: 56px;
    height: 56px;
    vertical-align: middle;
    font-size: 30px;
    line-height: 56px;
    text-align: center;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: absolute;
    top: 20px;
    left: 20px;
}

.gallery__single-image {
    width: 100%;
    height: auto;
}

.gallery__single-info {
    display: block;
    padding: 25px;
    font-family: "Merriweather", arial, serif;
}

.gallery__single-frame,
.gallery__single-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background-color: #000000;
}

.gallery__button {
    display: inline-block;
    border: 2px solid #efc79c;
    color: #efc79c;
    background-color: transparent;
}

.gallery__button:hover {
    background-color: #efc79c;
    color: #f8f6f0;
}

.gallery-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 15px 50px;
}

.gallery-widget__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-widget__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.gallery-widget__item {
    width: 100%;
    border-radius: 4px;
    position: relative;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gallery-widget__item:last-child {
    margin-bottom: 0;
}

.gallery-widget__item-info {
    padding: 25px;
    width: 55%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.gallery-widget__item-image {
    min-height: 300px;
    width: 45%;
    background-size: cover;
    margin: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-position: center center;
}

.gallery-widget__item-title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 400;
    margin: 10px 0;
}

.gallery-widget__item-text {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    margin: 0 0 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.gallery-widget__item-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gallery-widget__item-link:link,
.gallery-widget__item-link:visited {
    color: #efc79c;
}

.gallery-widget__item-link:hover {
    color: #ebbb86;
}

.gallery-widget__item-link:hover .icon {
    background-color: #ebbb86;
}

.gallery-widget__item-link .icon {
    border-radius: 50%;
    background-color: #efc79c;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    color: #ffffff;
    margin-left: 10px;
    display: inline-block;
    width: 56px;
    height: 56px;
    vertical-align: middle;
    font-size: 30px;
    line-height: 56px;
    text-align: center;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.gallery-widget__item-date {
    font-size: 14px;
    color: #efc79c;
    font-weight: 400;
}

.gallery-widget__item-date .icon {
    position: relative;
    top: 1px;
}

@media (max-width: 1200px) {
    .gallery {
        padding: 0 15px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media (max-width: 1000px) {
    .gallery__item {
        width: 46%;
    }
}

@media (max-width: 560px) {
    .gallery__item {
        width: 96%;
        margin-bottom: 20px;
    }
}

.header {
    padding: 0 15px;
    position: relative;
    z-index: 10;
}

.header__container {
    max-width: 1200px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    padding: 10px 0 40px;
}

.header__logo-link {
    width: 310px;
    display: block;
    margin: 0 auto;
}

.header__logo-image {
    height: 80px;
}

.header__nav {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.header__nav .nav__items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header__nav .nav__item-link {
    position: relative;
}

.header__nav .nav__item-link:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(0);
    transform: translateX(-50%) scaleX(0);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    width: 100%;
    height: 1px;
    background-color: #381000;
}

.header__nav .nav__item-link:after {
    content: '';
    position: absolute;
    right: -1.7em;
    top: 50%;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    background-color: #381000;
}

.header__nav .nav__item-link:hover:before {
    -webkit-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
}

.header__nav .nav__item--active .nav__item-link:before {
    -webkit-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
}

.header__nav .nav__item:last-child .nav__item-link:after {
    display: none;
}

.header__nav .nav__item--highlighted {
    background: #efc79c;
    border-radius: 2em;
}

.header__nav .nav__item--highlighted:hover {
    background-color: #f6e0c8;
}

.header__nav .nav__item--highlighted .nav__item-link:before {
    display: none;
}

.header__nav .nav__item--highlighted .nav__item-link:hover {
    color: #f8f6f0 !important;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0);
}

.header__hamburger {
    display: none;
    position: absolute;
    right: 10px;
    width: 40px;
    top: 15px;
    height: 28px;
    border: none;
    background: transparent;
}

.header__hamburger i {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 20px;
    height: 2px;
    background-color: #381000;
    border-radius: 2px;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.header__hamburger i:nth-child(2) {
    top: 13px;
    width: 30px;
}

.header__hamburger i:nth-child(3) {
    top: 21px;
    width: 25px;
}

body.body-nav--expanded .header__nav {
    max-height: 100vh;
}

body.body-nav--expanded .header__hamburger i:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 25px;
    left: 8px;
    top: 13px;
}

body.body-nav--expanded .header__hamburger i:nth-child(2) {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

body.body-nav--expanded .header__hamburger i:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 13px;
    left: 8px;
}

@media (max-width: 767px) {
    .header__container {
        height: 60px;
        padding: 0 0 20px;
    }

    .header__logo-link {
        height: 60px;
        position: relative;
        z-index: 3;
        width: initial;
    }

    .header__logo-image {
        height: 60px;
    }

    .header__hamburger {
        display: block;
    }

    .header__nav {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        height: 100vh;
        background-color: #f8f6f0;
        -webkit-transition: all 300ms cubic-bezier(0.62, -0.01, 0.39, 0.99);
        transition: all 300ms cubic-bezier(0.62, -0.01, 0.39, 0.99);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .header__nav .nav {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .header__nav .nav__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        font-size: 1.5em;
        margin: 90px 15px 0 15px;
    }

    .header__nav .nav__item-link:before,
    .header__nav .nav__item-link:after {
        display: none;
    }

    .header__nav .nav__item-link:hover {
        color: #381000;
    }
}

.footer {
    background-color: #381000;
    padding: 70px 15px 10px;
    position: relative;
    color: #efc79c;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../storage/i/pattern.e756a00a1ec2.png") #efc79c;
    opacity: 0.1;
}

.footer:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../storage/i/figure_2.f80ad6e2a035.svg") no-repeat center right;
    background-size: 33% 80%;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer__logo-image {
    width: 300px;
    opacity: 0.4;
}

.footer__text {
    font-size: 14px;
    color: rgba(239, 199, 156, 0.4);
    font-weight: 600;
    padding: 10px 0;
    display: block;
    text-align: right;
    margin: 0;
}

.footer__middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer__center {
    padding-left: 50px;
}

.footer__left {
    text-align: left;
    min-width: 300px;
    max-width: 300px;
}

.footer__right {
    min-width: 300px;
    max-width: 300px;
    text-align: right;
}

.footer .nav__items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer .nav__item {
    width: 100%;
}

.footer .nav__item-link {
    font-weight: 600;
    margin: 0.3em 1em;
    padding: 0;
    text-transform: uppercase;
    position: relative;
    color: #efc79c;
}

.footer .nav__item-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(0);
    transform: translateX(-50%) scaleX(0);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    width: 100%;
    height: 1px;
    background-color: #efc79c;
}

.footer .nav__item-link:after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    background-color: #efc79c;
}

.footer .nav__item-link:hover {
    color: #efc79c;
}

.footer .nav__item-link:hover:before {
    -webkit-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
}

.footer .social {
    margin-top: 30px;
}

.footer .social__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer .social__item-link {
    font-size: 30px;
    margin-left: 30px;
    line-height: 53px;
    color: #efc79c;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    background: rgba(239, 199, 156, 0.4);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    display: block;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
}

.footer .social__item-link:hover {
    color: #6b1f00;
    background-color: #ebbb86;
}

@media (max-width: 1000px) {
    .footer {
        padding: 30px 15px 10px;
    }

    .footer__middle {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer .nav__item {
        width: initial;
    }

    .footer .nav__item-link:after {
        left: -17px;
        margin-top: -2px;
    }

    .footer .nav__item:first-child .nav__item-link:after {
        display: none;
    }

    .footer__left {
        text-align: center;
        max-width: 500px;
    }

    .footer__right {
        text-align: center;
    }

    .footer__center {
        padding: 0;
    }

    .footer__text {
        text-align: center;
    }

    .footer .social {
        margin: 30px 0 20px;
    }

    .footer .social__items {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footer .social__item-link {
        margin: 0 15px;
    }
}

.intro {
    padding: 0 15px 70px;
    position: relative;
}

.intro:before {
    content: '';
    background: url("../storage/i/intro_bg_1.bda5b8359405.gif") no-repeat bottom left;
    background-size: contain;
    width: 50vw;
    position: absolute;
    height: 50vw;
    left: 0;
    top: 260px;
}

.intro:after {
    content: '';
    background: url("../storage/i/intro_bg_2.0993fc57b1a7.gif") no-repeat top right;
    width: 40vw;
    background-size: contain;
    background-position: top right;
    position: absolute;
    height: 50vw;
    right: 0;
    top: -100px;
}

.intro__container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro__left {
    max-width: 560px;
    margin-left: 140px;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.intro__title {
    font-size: 9.2rem;
    line-height: 1em;
    font-weight: 600;
    margin: 0 0 20px;
}

.intro__subtitle {
    font-size: 4.8rem;
    line-height: 1em;
    margin: 0;
}

.intro__stars {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

.intro__stars li {
    margin: 0 5px;
}

.intro__info {
    margin-top: 15px;
    font-size: 25px;
    font-family: "Merriweather", arial, serif;
}

.intro__button {
    margin: 20px 0 0 0 !important;
}

.intro__text {
    font-size: 1.2em;
    line-height: 1.4em;
    color: #886557;
    font-weight: 600;
    max-width: 400px;
}

.intro__text strong {
    font-weight: 600;
    color: #efc79c;
}

@media (max-width: 1000px) {
    .intro:after {
        display: none;
    }
}

@media (max-width: 767px) {
    .intro__subtitle {
        font-size: 2.8rem;
    }

    .intro__title {
        font-size: 3em;
    }

    .intro__left {
        max-width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-left: 0;
    }

    .intro__info {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .intro__title {
        font-size: 3em;
        line-height: 1.2em;
        max-width: 70%;
    }

    .intro__left {
        max-width: 100%;
    }
}

.news {
    font-size: 1.6rem;
    background-size: 60%;
    padding: 0 15px 70px 0;
}

.news__container {
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.news__title {
    font-size: 7.2rem;
    line-height: 1em;
    text-align: right;
    margin-top: 0;
}

.news__breadcrumbs {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
    font-weight: 400;
    z-index: 2;
    color: #f8f6f0;
}

.news__breadcrumbs-link:link,
.news__breadcrumbs-link:visited {
    color: #f8f6f0;
}

.news__breadcrumbs .icon {
    position: relative;
    top: 2px;
}

.news__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news__left {
    width: 300px;
    float: left;
}

.news__left-container {
    position: -webkit-sticky;
    position: sticky;
    top: 1em;
    max-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    overflow: auto;
}

.news__right {
    width: calc(100% - 300px);
    float: right;
    padding-top: 30px;
}

.news__item {
    width: 100%;
    margin-bottom: 3em;
    background-color: #f8f6f0;
    border-radius: 4px;
    position: relative;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
}

.news__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.news__item-title {
    font-size: 2.2em;
    font-family: "Merriweather", arial, serif;
    margin: 0.5em 0 0.5em;
    font-weight: 500;
}

.news__item-text {
    font-size: 1.2em;
    line-height: 1.6em;
    margin-bottom: 1em;
    font-weight: 400;
}

.news__item-text a {
    color: #efc79c;
}

.news__item-text a:hover {
    text-decoration: underline;
}

.news__item-text img {
    width: 100%;
    height: auto;
}

.news__item-text-full {
    font-size: 1.1em;
}

.news__item-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news__item-image {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    margin: 0;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.news__item-image:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 80px;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.5)));
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#4d000000', GradientType=0);
}

.news__item-description {
    padding: 2em;
    position: relative;
}

.news__item-categories {
    list-style: none;
    padding: 0;
    margin: 0 0 1em 0;
    width: 100%;
}

.news__item-category {
    display: inline-block;
    margin: 0 0.5em 0.5em 0;
}

.news__item-category-link {
    border: 1px solid #381000;
    padding: 0.5em 1em;
    border-radius: 3em;
    display: block;
    opacity: 0.7;
    font-size: 0.8em;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    font-weight: 400;
}

.news__item-category-link:hover {
    opacity: 1;
    border-color: #f6e0c8;
}

.news__item-time {
    font-size: 0.9em;
    color: #e8ae70;
    font-weight: 400;
}

.news__item-time .icon {
    position: relative;
    top: 1px;
    margin-right: 3px;
}

.news__item-link:link,
.news__item-link:visited {
    color: #efc79c;
}

.news__item-link:hover {
    color: #ebbb86;
}

.news__item-link:hover .icon {
    background-color: #ebbb86;
}

.news__item-link .icon {
    border-radius: 50%;
    background-color: #efc79c;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    color: #ffffff;
    margin-left: 10px;
    display: inline-block;
    width: 56px;
    height: 56px;
    vertical-align: middle;
    font-size: 30px;
    line-height: 56px;
    text-align: center;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.news__single-link {
    display: block;
    width: 250px;
    text-align: center;
    margin: 0 auto;
    font-size: 2em;
    font-family: "Merriweather", arial, serif;
}

.news__button {
    display: inline-block;
    border: 2px solid #efc79c;
    color: #efc79c;
    background-color: transparent;
}

.news__button:hover {
    background-color: #efc79c;
    color: #f8f6f0;
}

.news-nav {
    margin-right: 2em;
    max-height: 100vh;
    padding: 1em;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.news-nav__categories {
    padding-left: 1em;
    list-style: none;
    margin: 0 0 2em 0;
}

.news-nav__category-link {
    font-size: 1.2em;
    margin: 0.8em 0;
    display: block;
    font-weight: 400;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.news-nav__category-link:hover {
    color: #6b1f00;
}

.news-nav__category-badge {
    float: right;
    font-size: 0.6em;
    border-radius: 2em;
    padding: 0.3em;
    border: 1px solid;
    text-align: center;
    min-width: 1.2em;
}

.news-nav__category--active .news-nav__category-link {
    font-size: 19px;
    margin-left: -10px;
    margin-right: -2px;
    font-weight: 600;
}

.news-nav__title {
    margin: 0 0 0.5em 0;
    font-family: "Merriweather", arial, serif;
    font-weight: 100;
    font-size: 2.5em;
}

.news .social-share {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 20vh;
}

.news .social-share li {
    display: block;
    float: right;
}

.news .social-share-container {
    right: 100%;
    position: absolute;
    top: 0;
    height: 100%;
}

.news .social-share-link {
    display: block;
    width: 5em;
    height: 5em;
    line-height: 5em;
    font-size: 0.7em;
    color: #f8f6f0;
    position: relative;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.news .social-share-link:hover {
    width: 6em;
}

.news .social-share .icon {
    position: absolute;
    top: 1.6em;
    left: 1.6em;
    width: 2em;
    height: 2em;
    fill: #f8f6f0;
}

.news .social-share-facebook {
    background-color: #3a589e;
}

.news .social-share-twitter {
    background-color: #50a2e1;
}

.news .social-share-linkedin {
    background-color: #0077B5;
}

.news .social-share-googleplus {
    background-color: #dd4b39;
}

.news .social-share-gmail {
    background-color: #b23121;
}

.news-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 15px 50px;
}

.news-widget .powr-poll {
    position: relative;
    width: 104%;
    left: -1%;
    bottom: -10px;
}

.news-widget__container {
    width: 100%;
    max-width: 1200px;
}

.news-widget__title {
    font-size: 7.2rem;
    line-height: 1em;
    text-align: center;
    margin-top: 0;
}

.news-widget__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.news-widget__item {
    width: 33%;
    border-radius: 4px;
    padding: 25px;
    position: relative;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    margin-right: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.news-widget__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.news-widget__item:last-child {
    margin-right: 0;
}

.news-widget__item-image {
    height: 0;
    padding-top: 70%;
    background-size: cover;
    margin: -25px -25px 25px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.news-widget__item-title {
    font-size: 21px;
    line-height: 28px;
    font-weight: 400;
    margin: 20px 0 10px;
}

.news-widget__item-text {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    margin: 0 0 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.news-widget__item-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news-widget__item-link:link,
.news-widget__item-link:visited {
    color: #efc79c;
}

.news-widget__item-link:hover {
    color: #ebbb86;
}

.news-widget__item-link:hover .icon {
    background-color: #ebbb86;
}

.news-widget__item-link .icon {
    border-radius: 50%;
    background-color: #efc79c;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    color: #ffffff;
    margin-left: 10px;
    display: inline-block;
    width: 56px;
    height: 56px;
    vertical-align: middle;
    font-size: 30px;
    line-height: 56px;
    text-align: center;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.news-widget__item-date {
    font-size: 14px;
    color: #efc79c;
    font-weight: 400;
}

.news-widget__item-date .icon {
    position: relative;
    top: 1px;
}

@media (max-width: 1200px) {
    .news-single .breadcrumbs {
        padding: 0 1em;
    }
}

@media (max-width: 1312px) {
    .news-single .news-item-description {
        padding-left: 5em;
    }

    .news .social-share-container {
        right: initial;
        left: 0;
        width: 56px;
    }
}

@media (max-width: 1000px) {
    .news-widget__item {
        margin-right: 20px;
    }
}

@media (max-width: 880px) {
    .news-widget {
        padding: 50px 0 0;
    }

    .news-widget__items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .news-widget__item {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .news__items .news-item-description {
        padding: 1.5em;
    }

    .news__item-title {
        font-size: 1.5em;
    }

    .news__item:last-child {
        margin-bottom: 0;
    }

    .news__item-text {
        font-size: 1em;
    }

    .news-widget__title {
        font-size: 3em;
        padding-left: 0;
        text-align: center;
    }

    .news-container {
        display: block;
    }

    .news-search {
        margin-right: 1em;
    }

    .news-nav {
        margin-right: 0em;
    }

    .news-nav-item {
        width: 42%;
        display: inline-block;
        padding: 0 1em;
    }

    .news-right,
    .news-left {
        width: 100%;
        float: initial;
    }

    .news-right-container,
    .news-left-container {
        position: relative;
        height: initial;
    }

    .news-right {
        width: 90%;
        margin: 2em auto;
    }
}

@media (max-width: 660px) {
    .news {
        padding: 0 15px 50px;
    }

    .news-nav__title {
        text-align: center;
    }

    .news-nav__categories {
        margin: 0;
    }

    .news__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .news__left {
        width: 100%;
        float: initial;
    }

    .news__right {
        width: 100%;
        float: initial;
    }
}

@media (max-width: 500px) {
    .news-nav-items {
        padding-right: 01em;
    }

    .news-nav-item {
        width: 100%;
        display: inline-block;
        padding: 0;
    }

    .news-single .news-item-description {
        padding-left: 1.5em;
    }

    .news .social-share {
        top: 0;
        margin-top: -56px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .news .social-share-container {
        right: initial;
        left: 0;
        top: initial;
        bottom: 0;
        width: 100%;
    }

    .news .social-share li {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .news .social-share-link {
        width: 100%;
    }

    .news .social-share-link .icon {
        padding-top: 1.5em;
        position: initial;
    }
}

.contact {
    position: relative;
    padding: 50px 15px 100px;
    overflow: hidden;
}

.contact:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200%;
    background: url(/i/spot-06.svg) no-repeat bottom right;
    background-size: 70%;
    right: -100px;
    bottom: -100px;
    z-index: -1;
}

.contact__container {
    text-align: center;
}

.contact__title {
    font-size: 6rem;
    line-height: 7rem;
    font-weight: 600;
    margin: 0 0 0.4em;
}

.contact__text {
    font-size: 2.1rem;
    line-height: 2.6rem;
    color: #886557;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto 1.3em;
}

.contact__text strong {
    font-weight: 600;
    color: #efc79c;
}

.contact__splitter {
    margin: 30px 0;
    display: inline-block;
    position: relative;
    color: #886557;
}

.contact__splitter:after,
.contact__splitter:before {
    content: '';
    margin-top: 1px;
    position: absolute;
    top: 50%;
    left: -140px;
    width: 130px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.contact__splitter:after {
    left: initial;
    right: -140px;
}

.contact__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contact__item {
    color: #efc79c;
    font-size: 18px;
    margin: 0 20px;
    position: relative;
    text-align: center;
}

.contact__item:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #efc79c;
    right: -22px;
    top: 50%;
    margin-top: -2px;
    border-radius: 50%;
}

.contact__item:last-child:after {
    display: none;
}

.contact__item .icon {
    margin-right: 5px;
    position: relative;
    top: 2px;
}

.contact__item-link:link,
.contact__item-link:visited {
    color: #efc79c;
}

.contact__form {
    max-width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact__form-title {
    font-size: 3.6rem;
    line-height: 4rem;
    margin-top: 0;
    font-weight: 600;
}

.contact__form-input {
    background-color: #f8f6f0;
    border-radius: 4px;
    border: none;
    -webkit-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.09);
    width: 100%;
    padding: 0.3em 0.8em;
    margin-bottom: 1.5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.6rem;
}

.contact__form-submit {
    border: none;
    background-color: #efc79c;
    padding: 0.5em 1.5em;
    -webkit-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.09);
    border-radius: 4px;
    color: #f8f6f0;
    font-weight: 600;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.contact__form-submit:hover {
    background-color: #f6e0c8;
}

@media (max-width: 500px) {
    .contact__item:after {
        display: none;
    }
}

.participants {
    padding: 0 15px;
}

.participants__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.participants__title {
    text-align: center;
    font-size: 4em;
    margin: 0;
}

.participants__body {
    margin-bottom: 70px;
}

.participants__body-title {
    text-align: center;
}

.participants__bio {
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.8em;
}

.participants__subtitle {
    text-align: center;
    font-size: 2em;
    margin: 0;
}

.participants__teams {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.participants__team {
    margin-bottom: 30px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.participants__team-title {
    font-size: 1.5em;
    margin: 0;
}

.participants__team-subtitle {
    color: #6b1f00;
    font-size: 1em;
    margin: 10px 0;
}

.participants__team-text {
    border: 2px solid #852600;
    color: #852600;
    border-radius: 2em;
    padding: 1px 10px;
    text-transform: uppercase;
    font-size: 13px;
    margin: 10px 0;
    display: inline-block;
}

.participants__count {
    background: #381000;
    padding: 10px 20px;
    border-radius: 3em;
    color: #fff;
    display: inline-block;
    margin: 30px 0;
}

.participants__player {
    margin-bottom: 5px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .participants-widget__title {
        font-size: 2.5em;
        padding-left: 0;
    }

    .participants-widget__item:nth-child(odd) .participants-widget__item-image {
        margin-right: 20px;
    }

    .participants-widget__item:nth-child(even) .participants-widget__item-image {
        margin-left: 20px;
    }
}

@media (max-width: 660px) {
    .participants-widget__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .participants-widget__item-image {
        -webkit-transform: skew(0) !important;
        transform: skew(0) !important;
        width: 100%;
        -webkit-box-ordinal-group: initial !important;
        -ms-flex-order: initial !important;
        order: initial !important;
        margin: 0 !important;
    }

    .participants-widget__item-info {
        width: 100%;
        max-width: 100%;
        text-align: center !important;
    }

    .participants-widget__item-name {
        font-size: 30px;
        line-height: 45px;
    }
}

.supporters-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background: url("../storage/i/draughts_pieces.773f457cda94.jpg") #f8f6f0 no-repeat -10% 100%;
    min-height: 330px;
    overflow: hidden;
    padding: 0 15px;
}

.supporters-widget__container {
    width: 100%;
    margin: 0 auto;
}

.supporters-widget__title {
    font-size: 36px;
    text-align: center;
}

.supporters-widget__items {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.supporters-widget__items-wrapper {
    overflow: hidden;
    margin-left: 100px;
    margin-right: 200px;
    max-width: calc(100% - 200px);
}

.supporters-widget__item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 33.33%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.supporters-widget__item-image {
    width: 100%;
}

.supporters-widget__pagination {
    height: 250px;
    width: 300px;
    position: absolute;
    background: url("../storage/i/figure_1.3ca62c400564.svg") no-repeat top left;
    background-size: contain;
    right: -80px;
    top: 50%;
    padding-left: 30px;
    padding-top: 80px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translate(0, -85px);
    transform: translate(0, -85px);
}

.supporters-widget__pagination-pages {
    display: block;
    font-size: 24px;
    font-weight: 400;
    font-family: "Merriweather", arial, serif;
    line-height: 32px;
    padding-left: 20px;
}

.supporters-widget__pagination-pages strong {
    font-size: 48px;
    padding-bottom: 10px;
    position: relative;
    bottom: 12px;
    display: inline-block;
    font-weight: 300;
}

.supporters-widget__pagination-prev,
.supporters-widget__pagination-next {
    font-size: 30px;
    background-color: transparent;
    border: none;
}

@media (max-width: 767px) {
    .supporters-widget {
        min-height: 270px;
        background: none;
    }

    .supporters-widget__pagination {
        width: 100%;
        right: 0;
        bottom: 0;
        padding: 0;
        text-align: center;
        position: relative;
        height: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .supporters-widget__pagination-pages {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .supporters-widget__pagination-prev {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .supporters-widget__pagination-next {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-left: 15px;
    }

    .supporters-widget__title {
        text-align: center;
    }

    .supporters-widget__container {
        padding-bottom: 60px;
    }

    .supporters-widget__pagination {
        top: 100px;
    }

    .supporters-widget__items-wrapper {
        margin: 0;
        max-width: 100%;
        overflow: initial;
    }
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Merriweather", arial, serif;
    font-size: 16px;
}

.pagination .page-item {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    line-height: 28px;
    border-radius: 50%;
    text-align: center;
    color: #381000;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.pagination .page-item:hover .page-link {
    color: #9e2d00;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'draughts' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0;
}

.pagination .page-item:first-child .page-link:before,
.pagination .page-item:last-child .page-link:before {
    content: "\E902";
    font-size: 16px;
}

.pagination .page-item:last-child .page-link:before {
    content: "\E903";
}

.pagination .page-item.active {
    background: #f6c697;
    border: none;
    color: #f8f6f0;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
}

.pagination .page-item.active:hover .page-link {
    color: #f8f6f0;
}

.pagination .page-item.disabled {
    opacity: 0.4;
}

.pagination .page-item.disabled:hover .page-link {
    color: #381000;
}

.about-match {
    padding: 0 15px 50px;
}

.about-match__container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-match__title {
    text-align: center;
    font-size: 2em;
    max-width: 800px;
    margin: 0 auto 0.8em;
}

.about-match__text {
    text-align: center;
    max-width: 800px;
    margin: 1em auto;
}

.about-match__subtitle {
    text-align: center;
    font-size: 1.3em;
    line-height: 1.6em;
    margin: 0;
    opacity: 0.5;
}

.about-match__schedule {
    margin-bottom: 70px;
}

.about-match__schedule-title {
    font-size: 2em;
    text-align: center;
}

.about-match__schedule-items {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #f8f6f0;
    border-radius: 4px;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-match__schedule-items:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: inset 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: inset 0 0 0 5px rgba(239, 199, 156, 0.18);
}

.about-match__schedule-item {
    -ms-flex-preferred-size: 310px;
    flex-basis: 310px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-right: 1px solid rgba(239, 199, 156, 0.5);
    border-bottom: 1px solid rgba(239, 199, 156, 0.5);
    padding: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    margin-right: -1px;
    margin-bottom: -1px;
}

.about-match__schedule-item span {
    border: 1px solid #3e0c00;
    border-radius: 2em;
    padding: 3px 11px;
    font-weight: 400;
    opacity: 0.5;
    font-size: 14px;
}

.about-match__schedule-item time {
    font-size: 14px;
    font-weight: 400;
    color: #a28178;
    margin-bottom: 5px;
    display: block;
}

.about-match__schedule-item time .icon {
    margin-right: 5px;
    position: relative;
    top: 1px;
}

.about-match__schedule-item h3 {
    line-height: 1.8em;
    margin-bottom: 0.2em;
}

.about-match__schedule-item p {
    font-weight: 400;
    margin: 0 0 10px;
}

.about-match__rules {
    font-size: 16px;
    line-height: 1.8em;
    font-weight: 400;
}

.about-match__rules-title {
    font-size: 2em;
    text-align: center;
}

.about-match__rules a:link,
.about-match__rules a:visited {
    text-decoration: underline;
}

.about-match__rules a:hover {
    color: #6b1f00;
}

.about-match__rules h3 {
    margin: 3em 0 0 0;
}

.about-match__rules ul {
    padding: 1em 0 0 25px;
}

.about-match__rules ul li {
    margin-bottom: 1em;
}

.about-match__rules ul li i {
    position: relative;
    left: -10px;
    font-style: normal;
    color: rgba(56, 16, 0, 0.5);
}

.results {
    font-size: 1.6rem;
    padding: 0 15px 70px;
}

.results__container {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
}

.results__frame {
    width: 100%;
    height: 100vh;
}

.results__title {
    font-size: 3.2rem;
    line-height: 1em;
    text-align: center;
    margin-top: 0;
}

.results__nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    max-width: 780px;
    margin: 0 auto 50px;
}

.results__nav-item {
    padding: 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    background: #381000;
    position: relative;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.results__nav-item:first-child {
    border-bottom-left-radius: 3em;
    border-top-left-radius: 3em;
}

.results__nav-item:last-child {
    border-bottom-right-radius: 3em;
    border-top-right-radius: 3em;
}

.results__nav-item a:link,
.results__nav-item a:visited {
    color: #f8f6f0;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.results__nav-item:hover .results__nav-subitems {
    max-height: 200px;
}

.results__nav-item:hover,
.results__nav-item--active {
    background-color: #efc79c;
}

.results__nav-item:hover a:link,
.results__nav-item:hover a:visited,
.results__nav-item--active a:link,
.results__nav-item--active a:visited {
    color: #381000;
}

.results__nav-subitems {
    position: absolute;
    max-width: 100%;
    background: #f6e0c8;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    max-height: 0;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.results__nav-subitem {
    padding: 10px;
}

.results__table {
    width: 100%;
    max-width: 1000px;
    min-width: 800px;
    margin: 0 auto;
}

.results__table>tbody>tr {
    background-color: transparent !important;
}

.results__table table {
    width: 100%;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.results__table tr {
    width: initial;
}

.results__table tr:nth-child(odd) {
    background-color: #f8f6f0;
}

.results__table tr:nth-child(even) {
    background-color: #f0ecdf;
}

.results__table td {
    width: initial;
    padding: 10px;
    font-weight: 400;
}

.results__table td a:hover {
    color: #6b1f00;
    text-decoration: underline;
}

.results__table th {
    background: #381000;
    color: #fff;
    padding: 15px;
    font-family: "Merriweather", arial, serif;
    font-size: 21px;
    font-weight: 400;
}

.results__table th:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.results__table th:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.results__table th p {
    margin: 0;
    font-size: 16px;
}

.results__table h3 {
    font-size: 2em;
    margin: 0;
}

.results__table hr {
    display: none;
}

.results__table .nturn {
    text-align: center;
}

.results__table--standings {
    width: 100%;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    background-color: #f8f6f0;
}

.results__table--standings th {
    font-size: 16px;
}

.results__table--standings tr:nth-child(odd) {
    background-color: #f8f6f0 !important;
}

.results__table--standings tr:nth-child(even) {
    background-color: #f0ecdf !important;
}

.live {
    padding: 0 15px;
}

.live__frame {
    width: 100%;
    height: 100vh;
    height: calc(100vh - 160px);
    border: 0;
    background: transparent;
}

.live__tabs {
    text-align: center;
    margin-bottom: 30px;
}

.map {
    position: relative;
}

.map__title {
    position: absolute;
    z-index: 2;
    top: 50px;
    left: 50%;
    font-size: 7.2rem;
    line-height: 1em;
    margin-top: 0;
    max-width: 1200px;
    width: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: left;
}

.map__object {
    height: 80vh;
    min-height: 300px;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Open sans", tahoma, sans-serif;
    font-size: 1.6rem;
    padding: 0;
    margin: 0;
    position: relative;
    background-color: #f8f6f0;
    color: #381000;
    font-weight: 600;
}

body:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../storage/i/pattern.e756a00a1ec2.png") center center;
    opacity: 0.2;
    z-index: -1;
}

button,
select,
input,
textarea {
    font-family: 'Open sans', tahoma, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Merriweather", arial, serif;
}

button,
select {
    font-size: 1.6rem;
    outline: none;
    cursor: pointer;
}

input {
    font-size: 1.6rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

a:link,
a:visited {
    color: #381000;
    text-decoration: none;
}

a:hover {
    color: #6b1f00;
}

.alert {
    background-color: #381000;
    width: 100%;
    border-radius: 4px;
    margin-bottom: 1em;
    color: #fff;
    padding: 10px 15px;
    line-height: 1.2em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.alert--danger {
    background-color: #ff3a3a;
}

a.btn,
.btn {
    white-space: nowrap;
    border-radius: 4px;
    padding: 0.7em 1.5em;
    margin: 1%;
    text-decoration: none;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    font-weight: 600;
    line-height: 1.2em;
    display: inline-block;
    border: none;
}

a.btn--primary,
.btn--primary {
    background-color: #efc79c;
    color: #ffffff !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
}

a.btn--primary:hover,
.btn--primary:hover {
    background-color: #ebbb86;
}

a.btn--primary.btn--empty,
.btn--primary.btn--empty {
    border: 1px solid #efc79c;
    color: #efc79c !important;
    background: rgba(239, 199, 156, 0.18);
    -webkit-box-shadow: none;
    box-shadow: none;
}

a.btn--primary.btn--empty:hover,
.btn--primary.btn--empty:hover {
    background-color: #efc79c;
    color: #ffffff !important;
}

a.btn--secondary,
.btn--secondary {
    background-color: #381000;
    color: #f8f6f0 !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 0 5px rgba(56, 16, 0, 0.1);
    box-shadow: 0 0 0 5px rgba(56, 16, 0, 0.1);
}

a.btn--secondary:hover,
.btn--secondary:hover {
    background-color: #521700;
}

a.btn--secondary.btn--empty,
.btn--secondary.btn--empty {
    border: 1px solid #381000;
    color: #381000 !important;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

a.btn--secondary.btn--empty:hover,
.btn--secondary.btn--empty:hover {
    background-color: #381000;
    color: #f8f6f0 !important;
}

a.btn--round,
.btn--round {
    border-radius: 3em;
}

a.btn--inactive,
.btn--inactive {
    background: #f8f6f0;
    border: 1px solid rgba(56, 16, 0, 0.1);
}

a.btn--full,
.btn--full {
    width: 98%;
}

a.btn--large,
.btn--large {
    font-size: 1.2em;
    padding: 0.8em 1.5em;
    border-width: 2px;
}

a.btn--small,
.btn--small {
    font-size: 0.8em;
    padding: 0.5em 1em;
}

.tippy-tooltip {
    background-color: #f8f6f0;
}

.tippy-popper[x-placement^=top] .tippy-arrow {
    border-top: 7px solid #ffffff;
}

.tippy-popper[x-placement^=bottom] .tippy-arrow {
    border-bottom: 7px solid #ffffff;
}

.table {
    background-color: #f8f6f0;
    font-size: 14px;
    border-spacing: 0;
    width: 100%;
    font-weight: 400;
}

.table__container {
    overflow: auto;
    position: relative;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
    box-shadow: 0 0 0 5px rgba(239, 199, 156, 0.18);
}

.table thead tr {
    background-color: #381000 !important;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: #f8f6f0;
    height: 80px;
    font-size: 18px;
}

.table th {
    font-weight: 400;
}

.table tr:nth-child(odd) {
    background-color: #f3f0e6;
}

.table td {
    padding: 20px;
}

.table tbody {
    opacity: 0.6;
}

@media (max-width: 500px) {
    html {
        font-size: 50%;
    }
}

@media (max-width: 1000px) {
    .table thead tr {
        height: 60px;
    }

    .table td {
        padding: 10px;
    }
}