@keyframes Rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes Expose {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        opacity: 0;
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }
}

.expose {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
    -webkit-transition: opacity 1s ease 1s, clip-path 1s ease 1s;
    transition: opacity 1s ease 1s, clip-path 1s ease 1s;
    -webkit-transform: translateZ(0);
}

.expose--shown {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
}

@keyframes Levitate {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -6%, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes SphereLevitation {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -15%, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes LevitateShadow {
    0% {
        transform: scaleX(1);
        opacity: 1;
    }
    50% {
        transform: scaleX(1.1);
        opacity: .8;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}


/***** CONTAINERS *****/

.wrapper {
    display: table;
    width: 100%;
    height: 100%;
}

.wrapper>div {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}

.container,
.horizontal-window-gallery__container,
.section-with-decorated-side__container,
.pictured-section__container,
.tables-group__container {
    position: relative;
}

.container:after,
.horizontal-window-gallery__container:after,
.section-with-decorated-side__container:after,
.pictured-section__container:after,
.tables-group__container:after {
    content: '';
    display: block;
    clear: both;
}

@media (min-width: 768px) {
    .container--reverse .column {
        float: right;
    }
}

.container--same-height-columns {
    position: relative;
}

.container--same-height-columns .column {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.container--same-height-columns .column--highest {
    position: static;
}

.column {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 1px;
    padding: 40px 0 0 0;
}

@media (min-width: 480px) {
    .column {
        padding-top: 64px;
    }
}

@media (min-width: 768px) {
    .column {
        float: left;
        padding-top: 0;
    }
}

.column:first-child {
    padding-top: 0;
}

@media (min-width: 768px) {
    .col-9 {
        width: 75%;
    }
}

@media (min-width: 768px) {
    .col-8 {
        width: 66.6666666667%;
    }
}

@media (min-width: 768px) {
    .col-6 {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .col-5 {
        width: 41.6666666667%;
    }
}

@media (min-width: 768px) {
    .col-4 {
        width: 33.3333333333%;
    }
}

@media (min-width: 768px) {
    .col-3 {
        width: 25%;
    }
}

@media (min-width: 768px) {
    .col-2 {
        width: 16.6666666667%;
    }
}


/***** DECORATIONS *****/

.frame-decoration,
.slide-menu__decoration-container:before,
.slide-menu__decoration-container:after,
.slide-menu__decoration,
.side-info-header:before,
.side-info-header:after,
.grid-section__wrapper:before,
.grid-section__container:before,
.grid-section__container:after,
.grid-section__row:before,
.grid-section--reverse .grid-section__dependent-column:before,
.shorter-container:before,
.shorter-container:after,
.diagonal-cell__wrapper:before,
.diagonal-cell__wrapper:after,
.horizontal-window-gallery__inner:before,
.horizontal-window-gallery__inner:after,
.horizontal-window-gallery__item-inner--with-space:before,
.extended-icon-item__icon-container:before,
.extended-carousel__wrapper:before,
.presentation-table__row:before,
.presentation-table__content:after,
.grid-items__wrapper:before,
.grid-items__row:before,
.grid-items__cell:before,
.vertical-cell__wrapper:before,
.grid__row:before,
.grid__row:after {
    position: absolute;
    width: 1px;
    height: 100%;
    background: #E5E5E5;
    opacity: .7;
    display: none;
}

.frame-decoration--horizontal,
.slide-menu__decoration-container:before,
.slide-menu__decoration-container:after,
.slide-menu__decoration--north,
.side-info-header:before,
.grid-section__wrapper:before,
.grid-section__row:before,
.shorter-container:before,
.shorter-container:after,
.diagonal-cell__wrapper:before,
.diagonal-cell__wrapper:after,
.horizontal-window-gallery__inner:before,
.horizontal-window-gallery__inner:after,
.extended-icon-item__icon-container:before,
.extended-carousel__wrapper:before,
.presentation-table__row:before,
.grid-items__row:before,
.grid-items__cell:before,
.grid__row:before,
.grid__row:after {
    width: 100%;
    height: 1px;
}

.frame-decoration--darker,
.slide-menu__decoration-container:before,
.slide-menu__decoration-container:after,
.slide-menu__decoration,
.diagonal-cell--darker .diagonal-cell__wrapper:before,
.diagonal-cell--darker .diagonal-cell__wrapper:after,
.horizontal-window-gallery__inner:before,
.horizontal-window-gallery__inner:after,
.horizontal-window-gallery__item-inner--with-space:before {
    background: #545454;
}


/***** MODULES *****/

.dropdown {
    position: relative;
    display: block;
}

.dropdown__header {
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}

.dropdown__list-container {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    z-index: 100;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.dropdown__list>li {
    display: block;
}

.dropdown__list a {
    display: block;
}

.dropdown--expanding .dropdown__list-container {
    position: relative;
    top: 0;
}

.bookmarks-manager {
    margin: 0 auto;
}

.bookmarks-manager .bookmarks-manager__bookmarks {
    text-align: center;
}

.bookmarks-manager .bookmarks-manager__bookmark-container {
    display: block;
}

.bookmarks-manager .bookmarks-manager__bookmark {
    cursor: pointer;
}

.bookmarks-manager .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
    display: none;
}

.bookmarks-manager .bookmarks-manager__content-container {
    display: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    min-height: 3px;
}

@media (min-width: 768px) {
    .bookmarks-manager .bookmarks-manager__content-container {
        display: block;
    }
}

.bookmarks-manager .bookmarks-manager__content-wrapper {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.bookmarks-manager .bookmarks-manager__next {
    display: none;
    cursor: pointer;
}

.ajax-bookmarks-manager {
    max-width: 900px;
    margin: 0 auto;
}

.ajax-bookmarks-manager .ajax-bookmarks-manager__bookmarks {
    text-align: center;
}

.ajax-bookmarks-manager .ajax-bookmarks-manager__bookmark-container {
    display: block;
}

.ajax-bookmarks-manager .ajax-bookmarks-manager__bookmark {
    cursor: pointer;
}

.ajax-bookmarks-manager .ajax-bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
    display: none;
}

.ajax-bookmarks-manager .ajax-bookmarks-manager__content-container {
    display: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media (min-width: 768px) {
    .ajax-bookmarks-manager .ajax-bookmarks-manager__content-container {
        display: block;
    }
}

.ajax-bookmarks-manager .ajax-bookmarks-manager__content-wrapper {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.bookmarks-manager-00 {
    margin: 0 auto;
}

.bookmarks-manager-00 .bookmarks-manager__wrapper {
    position: relative;
}

.bookmarks-manager-00 .bookmarks-manager__inner {
    position: relative;
}

.bookmarks-manager-00 .bookmarks-manager__bookmarks-container {
    padding: 0 0 20px 0;
}

@media (min-width: 768px) {
    .bookmarks-manager-00 .bookmarks-manager__bookmarks-container {
        padding: 0;
    }
}

.bookmarks-manager-00 .bookmarks-manager__bookmarks {
    text-align: center;
}

@media (min-width: 768px) {
    .bookmarks-manager-00 .bookmarks-manager__bookmarks {
        text-align: left;
    }
}

.bookmarks-manager-00 .bookmarks-manager__bookmark-container {
    display: block;
    padding: 20px 10px 30px 10px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .bookmarks-manager-00 .bookmarks-manager__bookmark-container {
        display: block;
        padding: 0 0 30px 0;
    }
}

@media (min-width: 900px) {
    .bookmarks-manager-00 .bookmarks-manager__bookmark-container {
        padding-bottom: 32px;
    }
}

.bookmarks-manager-00 .bookmarks-manager__bookmark-container:last-child {
    padding: 0;
}

.bookmarks-manager-00 .bookmarks-manager__bookmark-container.active {
    background: #F8F8F8;
}

@media (min-width: 768px) {
    .bookmarks-manager-00 .bookmarks-manager__bookmark-container.active {
        background: none;
    }
}

.bookmarks-manager-00 .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
    display: none;
    padding: 32px 0 0 0;
}

@media (min-width: 768px) {
    .bookmarks-manager-00 .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
        padding: 0;
    }
}

.bookmarks-manager-00 .bookmarks-manager__bookmark {
    cursor: pointer;
}

.bookmarks-manager-00 .bookmarks-manager__content-container {
    display: none;
}

@media (min-width: 768px) {
    .bookmarks-manager-00 .bookmarks-manager__content-container {
        display: block;
    }
}

.bookmarks-manager-00 .bookmarks-manager__content-wrapper {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.bookmarks-manager-00 .bookmarks-manager__next {
    display: block;
}

.spectacular-numered-bookmarks {
    counter-reset: spectacularNumeredBookmarks;
}

.spectacular-numered-bookmarks .spectacular-numered-bookmark__number:before {
    content: counters(spectacularNumeredBookmarks, ".", decimal-leading-zero);
    counter-increment: spectacularNumeredBookmarks;
}

@media (min-width: 768px) {
    .std-bookmarks {
        padding: 0 0 0 24px;
    }
}

.std-bookmark {
    font-family: serif;
    font-size: 20px;
}

@media (min-width: 420px) {
    .std-bookmark {
        font-size: 22px;
    }
}

@media (min-width: 768px) {
    .std-bookmark {
        font-size: 20px;
    }
}

@media (min-width: 1300px) {
    .std-bookmark {
        font-size: 22px;
    }
}

@media (min-width: 1500px) {
    .std-bookmark {
        font-size: 24px;
    }
}

.std-bookmark__wrapper {
    position: relative;
    display: inline-block;
    padding: 0 0 4px 0;
}

.std-bookmark__wrapper:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #D6C0B3;
    bottom: 0;
    left: -50%;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.std-bookmark.active .std-bookmark__wrapper:before {
    opacity: 1;
    left: 0;
}

.spectacular-numered-bookmark {
    font-size: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .spectacular-numered-bookmark {
        text-align: left;
    }
}

.spectacular-numered-bookmark__container {
    position: relative;
}

@media (min-width: 768px) {
    .spectacular-numered-bookmark__container {
        padding: 0 0 0 64px;
    }
}

.spectacular-numered-bookmark__container:before {
    content: '';
    display: none;
    width: 60px;
    height: 1px;
    background: #D6C0B3;
    position: absolute;
    top: 50%;
    left: -140px;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin: -2px 0 0 0;
}

@media (min-width: 992px) {
    .spectacular-numered-bookmark__container:before {
        display: block;
    }
}

@media (min-width: 1300px) {
    .spectacular-numered-bookmark__container:before {
        width: 80px;
        left: -200px;
    }
}

.spectacular-numered-bookmark__number-container {
    position: relative;
}

@media (min-width: 768px) {
    .spectacular-numered-bookmark__number-container {
        position: absolute;
        top: 0;
        left: 0;
    }
}

.spectacular-numered-bookmark__number-container:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #D6C0B3;
    width: 34px;
    height: 34px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.spectacular-numered-bookmark__number {
    position: relative;
    z-index: 5;
    font-weight: 700;
    font-size: 14px;
}

.spectacular-numered-bookmark__content {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 300;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    padding: 20px 0 0 0;
}

@media (min-width: 768px) {
    .spectacular-numered-bookmark__content {
        padding: 0;
    }
}

.spectacular-numered-bookmark:hover .spectacular-numered-bookmark__content {
    color: #000;
}

.spectacular-numered-bookmark.active .spectacular-numered-bookmark__container:before {
    left: -84px;
    opacity: 1;
}

@media (min-width: 1300px) {
    .spectacular-numered-bookmark.active .spectacular-numered-bookmark__container:before {
        left: -114px;
    }
}

.spectacular-numered-bookmark.active .spectacular-numered-bookmark__number-container:before {
    opacity: 1;
}

.spectacular-numered-bookmark.active .spectacular-numered-bookmark__content {
    font-weight: 400;
    color: #000;
}

.simple-bookmark {
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    padding: 0;
    cursor: pointer;
    color: #333333;
    padding: 0 0 10px 0;
}

@media (min-width: 650px) {
    .simple-bookmark {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .simple-bookmark {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .simple-bookmark {
        font-size: 18px;
    }
}

@media (min-width: 1700px) {
    .simple-bookmark {
        font-size: 20px;
    }
}

.simple-bookmark__wrapper {
    display: inline-block;
    position: relative;
    padding: 0 0 8px 0;
}

.simple-bookmark__wrapper:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: -100%;
    opacity: 0;
    width: 100%;
    height: 2px;
    background: #FF931E;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.simple-bookmark.active {
    color: #000;
}

.simple-bookmark.active .simple-bookmark__wrapper:before {
    left: 0;
    opacity: 1;
}

.picture-bookmark {
    width: 120px;
}

@media (min-width: 480px) {
    .picture-bookmark {
        width: 140px;
    }
}

@media (min-width: 900px) {
    .picture-bookmark {
        width: 180px;
    }
}

@media (min-width: 1300px) {
    .picture-bookmark {
        width: 220px;
    }
}

.picture-bookmark__wrapper {
    position: relative;
}

.picture-bookmark__picture {
    padding: 0 0 100% 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.picture-bookmark__picture:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #D91E9D;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media (min-width: 1300px) {
    .picture-bookmark__picture:before {
        height: 6px;
    }
}

.picture-bookmark__picture:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: .3;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.picture-bookmark.active .picture-bookmark__picture:before {
    opacity: 1;
}

.picture-bookmark.active .picture-bookmark__picture:after {
    opacity: 0;
}

.picture-bookmark--large {
    width: 160px;
}

@media (min-width: 480px) {
    .picture-bookmark--large {
        width: 200px;
    }
}

@media (min-width: 1300px) {
    .picture-bookmark--large {
        width: 240px;
    }
}

@media (min-width: 768px) {
    .extended-picture-bookmark {
        text-align: left;
    }
}

.extended-picture-bookmark__picture {
    width: 100px;
    margin: 0;
    display: block;
}

@media (min-width: 1300px) {
    .extended-picture-bookmark__picture {
        width: 120px;
    }
}

.extended-picture-bookmark__picture-container {
    padding: 0 0 20px 0;
}

.extended-picture-bookmark__title {
    font-size: 20px;
    font-weight: 400;
}

.extended-picture-bookmark__subtitle {
    font-size: 13px;
    font-weight: 400;
    padding: 4px 0 0 0;
}

.small-simple-bookmark {
    font-weight: 400;
    font-family: Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    padding: 0 10px 15px 10px;
    cursor: pointer;
}

@media (min-width: 992px) {
    .small-simple-bookmark {
        padding: 5px 0;
    }
}

.small-simple-bookmark__wrapper {
    position: relative;
    padding: 0 10px 10px 10px;
    display: inline-block;
}

@media (min-width: 992px) {
    .small-simple-bookmark__wrapper {
        display: block;
        padding: 4px 0 10px 0;
    }
}

@media (min-width: 1500px) {
    .small-simple-bookmark__wrapper {
        padding: 10px 0;
    }
}

.small-simple-bookmark__wrapper:before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #8010A7;
    position: absolute;
    bottom: 0;
    left: -50%;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media (min-width: 992px) {
    .small-simple-bookmark__wrapper:before {
        bottom: 2px;
    }
}

@media (min-width: 1300px) {
    .small-simple-bookmark__wrapper:before {
        bottom: 2px;
    }
}

.small-simple-bookmark:hover {
    color: #8010A7;
}

.small-simple-bookmark.active {
    font-weight: 700;
}

.small-simple-bookmark.active .small-simple-bookmark__wrapper:before {
    opacity: 1;
    left: 0;
}

.details-list {
    list-style-type: none;
}

.details-list .details-list__item {
    display: block;
}

.details-list .details-list__title {
    cursor: pointer;
}

.categorized-items__categories {
    text-align: center;
    list-style-type: none;
}

.categorized-items__categories>li {
    display: block;
    cursor: pointer;
}

.categorized-items__no-items {
    float: none;
    display: none;
}

.categorized-items__content-container {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.categorized-items-00 .categorized-items__categories-container {
    padding: 0 0 30px 0;
}

@media (min-width: 480px) {
    .categorized-items-00 .categorized-items__categories-container {
        padding: 0 0 50px 0;
    }
}

@media (min-width: 992px) {
    .categorized-items-00 .categorized-items__categories-container {
        padding: 0 0 70px 0;
    }
}

.ajax-categorized-items__categories-container {
    padding: 0 0 50px 0;
}

@media (min-width: 992px) {
    .ajax-categorized-items__categories-container {
        padding: 0 0 80px 40px;
    }
}

@media (min-width: 1500px) {
    .ajax-categorized-items__categories-container {
        padding: 0 0 80px 0;
    }
}

.ajax-categorized-items__no-items {
    float: none;
    display: block;
}

.ajax-categorized-items__contents-container {
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.ajax-categorized-items__content {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.ajax-categorized-items__pager-container {
    position: relative;
    padding: 80px 0 0 0;
}

@media (min-width: 650px) {
    .ajax-categorized-items__pager-container {
        padding: 100px 0 0 0;
    }
}

@media (min-width: 1800px) {
    .ajax-categorized-items__pager-container {
        padding: 120px 0 0 0;
    }
}

.ajax-categorized-items__pager-container .decorated-section__decoration-container {
    top: 40px;
    left: 0;
    display: block;
}

@media (min-width: 650px) {
    .ajax-categorized-items__pager-container .decorated-section__decoration-container {
        top: 60px;
    }
}

@media (min-width: 1800px) {
    .ajax-categorized-items__pager-container .decorated-section__decoration-container {
        top: 80px;
    }
}


/***** MENU *****/

.slide-menu {
    position: fixed;
    z-index: 8900;
    height: 100%;
    display: block;
    text-align: center;
    width: 100%;
    background: #333333;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}

@media (min-width: 1300px) {
    .slide-menu {
        display: none;
    }
}

.slide-menu .slide-menu__wrapper {
    min-height: 100%;
    position: relative;
    padding: 0 70px 0 0;
}

.slide-menu__header {
    color: #009C3A;
    text-align: left;
    padding: 24px 32px;
}

@media (min-width: 650px) {
    .slide-menu__header {
        padding: 32px 48px;
    }
}

.slide-menu__inner {
    padding: 0 20px;
    text-align: right;
}

@media (min-width: 420px) {
    .slide-menu__inner {
        padding: 0 40px;
    }
}

@media (min-width: 650px) {
    .slide-menu__inner {
        padding: 0 52px;
    }
}

.slide-menu__menu-container {
    padding: 28px 0;
}

@media (min-height: 650px) {
    .slide-menu__menu-container {
        padding: 48px 0;
    }
}

@media (min-height: 720px) {
    .slide-menu__menu-container {
        padding: 80px 0;
    }
}

.slide-menu__footer {
    padding: 20px 0;
}

@media (min-width: 650px) {
    .slide-menu__footer {
        padding: 32px 0;
    }
}

.slide-menu__decoration-container {
    position: relative;
}

.slide-menu__decoration-container:before,
.slide-menu__decoration-container:after {
    content: '';
    display: block;
    width: 200%;
}

.slide-menu__decoration-container:after {
    bottom: 0;
    top: auto;
}

.slide-menu__decoration {
    display: block;
}

.slide-menu__decoration--north {
    top: 70px;
    left: 0;
}

@media (min-width: 650px) {
    .slide-menu__decoration--north {
        top: 84px;
    }
}

.slide-menu__decoration--east {
    right: 70px;
}

@media (min-width: 650px) {
    .slide-menu__decoration--east {
        right: 84px;
    }
}


/** fade **/

.slide-menu--fade {
    display: none;
}

.slide-menu--fade.slide-menu--top {
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
}

.slide-menu--fade.slide-menu--right {
    top: 0;
    left: auto;
    right: 0;
    bottom: auto;
}

.slide-menu--fade.slide-menu--bottom {
    top: auto;
    left: 0;
    right: auto;
    bottom: 0;
}

.slide-menu--fade.slide-menu--left {
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
}


/** slide **/

.slide-menu--slide {
    display: block;
    opacity: 1;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.slide-menu--slide.slide-menu--top {
    top: -100%;
    left: 0;
    right: auto;
    bottom: auto;
}

.slide-menu--slide.slide-menu--top.slide-menu--open {
    top: 0;
}

.slide-menu--slide.slide-menu--right {
    top: 0;
    left: auto;
    right: -100%;
    bottom: auto;
}

.slide-menu--slide.slide-menu--right.slide-menu--open {
    right: 0;
}

.slide-menu--slide.slide-menu--bottom {
    top: auto;
    left: 0;
    right: auto;
    bottom: -100%;
}

.slide-menu--slide.slide-menu--bottom.slide-menu--open {
    bottom: 0;
}

.slide-menu--slide.slide-menu--left {
    top: 0;
    left: -100%;
    right: auto;
    bottom: auto;
}

.slide-menu--slide.slide-menu--left.slide-menu--open {
    left: 0;
}


/** slide-fade **/

.slide-menu--slide-fade {
    display: block;
    opacity: 1;
    -webkit-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
    -moz-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
    -o-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
    transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
}

.slide-menu--slide-fade .slide-menu__inner {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.slide-menu--slide-fade.slide-menu--open {
    -webkit-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
    -moz-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
    -o-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
    transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
    -webkit-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
}

.slide-menu--slide-fade.slide-menu--open .slide-menu__inner {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in 0.4s;
    -moz-transition: opacity 0.3s ease-in 0.4s;
    -o-transition: opacity 0.3s ease-in 0.4s;
    transition: opacity 0.3s ease-in 0.4s;
}

.slide-menu--slide-fade.slide-menu--top {
    top: -100%;
    left: 0;
    right: auto;
    bottom: auto;
}

.slide-menu--slide-fade.slide-menu--top.slide-menu--open {
    top: 0;
}

.slide-menu--slide-fade.slide-menu--right {
    top: 0;
    left: auto;
    right: -100%;
    bottom: auto;
}

@media (min-width: 480px) {
    .slide-menu--slide-fade.slide-menu--right {
        max-width: 420px;
        right: -420px;
    }
}

.slide-menu--slide-fade.slide-menu--right.slide-menu--open {
    right: 0;
}

.slide-menu--slide-fade.slide-menu--bottom {
    top: auto;
    left: 0;
    right: auto;
    bottom: -100%;
}

.slide-menu--slide-fade.slide-menu--bottom.slide-menu--open {
    bottom: 0;
}

.slide-menu--slide-fade.slide-menu--left {
    top: 0;
    left: -100%;
    right: auto;
    bottom: auto;
}

.slide-menu--slide-fade.slide-menu--left.slide-menu--open {
    left: 0;
}


/***** OVERLAYERS *****/

.overlayer-content {
    display: none !important;
}

.ajax-overlayer-button {
    cursor: pointer;
}

.ajax-overlayer-close {
    cursor: pointer;
}

.overlayer {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.5);
    color: #000;
    overflow-y: auto;
    padding: 0;
}

.overlayer .overlayer__loading-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6900;
    display: none;
    font-size: 40px;
    color: #fff;
}

.overlayer .overlayer__inner {
    margin: 0 auto;
    position: relative;
    padding: 50px 20px;
    max-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
}

@media (min-width: 480px) {
    .overlayer .overlayer__inner {
        padding: 70px 40px;
    }
}

@media (min-width: 768px) {
    .overlayer .overlayer__inner {
        margin: 40px auto;
    }
}

@media (min-width: 992px) {
    .overlayer .overlayer__inner {
        padding: 60px 60px;
        max-width: 900px;
    }
}

@media (min-width: 1300px) {
    .overlayer .overlayer__inner {
        padding: 80px 60px;
    }
}

.overlayer .overlayer__close {
    position: absolute;
    top: 20px;
    right: 20px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: 7000;
    display: block;
    cursor: pointer;
}

@media (min-width: 480px) {
    .overlayer .overlayer__close {
        top: 20px;
    }
}

@media (min-width: 768px) {
    .overlayer .overlayer__close {
        right: 20px;
    }
}

@media (min-width: 1300px) {
    .overlayer .overlayer__close {
        top: 30px;
        right: 30px;
    }
}

.overlayer .overlayer__content {
    display: none;
    width: 100%;
}

.overlayer-00 {
    color: #222222;
}

.overlayer-02 {
    background: #009C3A;
    color: #fff;
}

.overlayer-02 .overlayer__inner {
    height: 100%;
    padding: 0;
    max-width: 100%;
}

.overlayer-02 .overlayer__content-wrapper {
    height: 100%;
    padding: 0;
}

.overlayer-02 .overlayer__content {
    height: 100%;
    padding: 0;
}

.popup-01 {
    background: rgba(0, 0, 0, 0.7);
}

.popup-01>.wrapper>div {
    vertical-align: middle;
}

.popup-01 .overlayer__inner {
    padding: 20px;
    margin: 0 auto;
    background: none;
}

.overlayer-02 .overlayer__decoration-container-01 {
    content: '';
    display: block;
    position: fixed;
    width: 70%;
    left: -10%;
    bottom: -8%;
}

@media (min-width: 650px) {
    .overlayer-02 .overlayer__decoration-container-01 {
        width: 60%;
    }
}

@media (min-width: 768px) {
    .overlayer-02 .overlayer__decoration-container-01 {
        width: 50%;
    }
}

@media (min-width: 900px) {
    .overlayer-02 .overlayer__decoration-container-01 {
        width: 40%;
        bottom: -12%;
        left: -5%;
    }
}

@media (min-width: 992px) {
    .overlayer-02 .overlayer__decoration-container-01 {
        width: 36%;
        bottom: -16%;
        left: -8%;
    }
}

@media (min-width: 1300px) {
    .overlayer-02 .overlayer__decoration-container-01 {
        bottom: -10%;
        left: -5%;
        width: 30%;
    }
}

.overlayer-02 .overlayer__decoration-01 {
    padding: 0 0 100% 0;
    background: url("../img/drafts/racket.png") no-repeat center;
    background-size: contain;
}

@media (min-width: 992px) {
    .overlayer-02 .overlayer__decoration-container-02 {
        content: '';
        display: block;
        position: fixed;
        width: 24%;
        bottom: 2%;
        right: -2%;
    }
}

@media (min-width: 1300px) {
    .overlayer-02 .overlayer__decoration-container-02 {
        bottom: 30%;
        right: -6%;
    }
}

@media (min-width: 1700px) {
    .overlayer-02 .overlayer__decoration-container-02 {
        bottom: 25%;
        right: -6%;
    }
}

.overlayer-02 .overlayer__decoration-02 {
    padding: 0 0 100% 0;
    background: url("../img/drafts/racket-01.png") no-repeat center;
    background-size: contain;
}

.page-loading-layer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
}


/***** ICONS *****/

.icon-download {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: url("../img/icons/icon-download.svg") no-repeat center;
    background-size: contain;
    margin: 0 0 0 4px;
}

@media (min-width: 1700px) {
    .icon-download {
        width: 11px;
        height: 11px;
        margin: 0 0 -2px 6px;
    }
}


/* icon hamburger */

.icon-hamburger {
    display: block;
    width: 28px;
    position: relative;
}

@media (min-width: 992px) {
    .icon-hamburger {
        width: 24px;
    }
}

.icon-hamburger__inner {
    height: 17px;
    position: relative;
    overflow: hidden;
}

.icon-hamburger__inner>div {
    position: absolute;
    left: 0;
    height: 2px;
    background: #009C3A;
    width: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.icon-hamburger__inner>div:nth-child(1),
.icon-hamburger__inner>div:nth-child(4) {
    top: 0;
}

.icon-hamburger__inner>div:nth-child(2),
.icon-hamburger__inner>div:nth-child(5) {
    top: 7px;
}

.icon-hamburger__inner>div:nth-child(3),
.icon-hamburger__inner>div:nth-child(6) {
    top: 14px;
}

.icon-hamburger__inner>div:nth-child(4) {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.icon-hamburger__inner>div:nth-child(5) {
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.icon-hamburger__inner>div:nth-child(6) {
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.icon-hamburger__inner>.icon-hamburger__hover-item {
    background: #009C3A;
    left: -100%;
}

.icon-hamburger__inner>.icon-hamburger__hover-item:nth-child(4) {
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.icon-hamburger__inner>.icon-hamburger__hover-item:nth-child(5) {
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.icon-hamburger__inner>.icon-hamburger__hover-item:nth-child(6) {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.icon-hamburger:hover .icon-hamburger__inner>.icon-hamburger__hover-item,
.icon-hamburger:focus .icon-hamburger__inner>.icon-hamburger__hover-item {
    left: 0;
}

.icon-hamburger.open .icon-hamburger__inner {
    overflow: visible;
}

.icon-hamburger.open .icon-hamburger__inner>div:nth-child(1),
.icon-hamburger.open .icon-hamburger__inner>div:nth-child(4) {
    top: 7px;
    left: auto;
    right: 0;
    width: 24px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
}

.icon-hamburger.open .icon-hamburger__inner>div:nth-child(2),
.icon-hamburger.open .icon-hamburger__inner>div:nth-child(5) {
    opacity: 0;
    left: -100%;
}

.icon-hamburger.open .icon-hamburger__inner>div:nth-child(3),
.icon-hamburger.open .icon-hamburger__inner>div:nth-child(6) {
    top: 7px;
    left: auto;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    right: 0;
    width: 24px;
}

.icon-hamburger--medium .icon-hamburger__inner>div {
    background: #8010A7;
}

.icon-hamburger--light .icon-hamburger__inner>div {
    background: #fff;
}

.icon-hamburger--large {
    width: 32px;
}

.icon-hamburger--large .icon-hamburger__inner {
    height: 20px;
}

.icon-hamburger--large .icon-hamburger__inner>div {
    height: 4px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.icon-hamburger--large .icon-hamburger__inner>div:nth-child(1),
.icon-hamburger--large .icon-hamburger__inner>div:nth-child(4) {
    top: 0;
}

.icon-hamburger--large .icon-hamburger__inner>div:nth-child(2),
.icon-hamburger--large .icon-hamburger__inner>div:nth-child(5) {
    top: 8px;
}

.icon-hamburger--large .icon-hamburger__inner>div:nth-child(3),
.icon-hamburger--large .icon-hamburger__inner>div:nth-child(6) {
    top: 16px;
}

.icon-hamburger--small {
    width: 20px;
    height: 12px;
}

.icon-hamburger--small .icon-hamburger__inner>div {
    height: 2px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.icon-hamburger--small .icon-hamburger__inner>div:nth-child(1),
.icon-hamburger--small .icon-hamburger__inner>div:nth-child(4) {
    top: 0;
}

.icon-hamburger--small .icon-hamburger__inner>div:nth-child(2),
.icon-hamburger--small .icon-hamburger__inner>div:nth-child(5) {
    top: 5px;
}

.icon-hamburger--small .icon-hamburger__inner>div:nth-child(3),
.icon-hamburger--small .icon-hamburger__inner>div:nth-child(6) {
    top: 10px;
}

.icon-half-hamburger {
    display: block;
    width: 36px;
    position: relative;
}

.icon-half-hamburger__inner {
    height: 36px;
    position: relative;
    overflow: hidden;
}

.icon-half-hamburger__bar {
    position: absolute;
    left: 0;
    height: 2px;
    background: #000;
    width: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.icon-half-hamburger__bar:nth-child(1) {
    top: 0;
}

.icon-half-hamburger__bar:nth-child(2) {
    top: 7px;
    width: 50%;
}

.icon-half-hamburger__bar:nth-child(3) {
    top: 14px;
    width: 0;
}

.icon-half-hamburger:hover .icon-half-hamburger__bar:nth-child(2),
.icon-half-hamburger:hover .icon-half-hamburger__bar:nth-child(3),
.icon-half-hamburger:focus .icon-half-hamburger__bar:nth-child(2),
.icon-half-hamburger:focus .icon-half-hamburger__bar:nth-child(3) {
    width: 100%;
}

.icon-half-hamburger.open .icon-half-hamburger__inner {
    overflow: visible;
}

.icon-half-hamburger.open .icon-half-hamburger__bar {
    background: #fff;
}

.icon-half-hamburger.open .icon-half-hamburger__bar:nth-child(1) {
    top: 7px;
    left: auto;
    right: 0;
    width: 24px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
}

.icon-half-hamburger.open .icon-half-hamburger__bar:nth-child(2) {
    opacity: 0;
    left: -100%;
}

.icon-half-hamburger.open .icon-half-hamburger__bar:nth-child(3) {
    top: 7px;
    left: auto;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    right: 0;
    width: 24px;
}

.icon-half-hamburger--light .icon-half-hamburger__bar {
    background: #fff;
}

.icon-spectacular-hamburger {
    display: block;
    width: 28px;
    position: relative;
}

@media (min-width: 992px) {
    .icon-spectacular-hamburger {
        width: 24px;
    }
}

.icon-spectacular-hamburger__inner {
    height: 15px;
    position: relative;
    overflow: hidden;
}

.icon-spectacular-hamburger__inner>div {
    position: absolute;
    left: 0;
    height: 2px;
    background: #C4C4C4;
    width: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

@media (min-width: 992px) {
    .icon-spectacular-hamburger__inner>div {
        background: #f3ddc3;
    }
}

.icon-spectacular-hamburger__inner>div:nth-child(1),
.icon-spectacular-hamburger__inner>div:nth-child(4) {
    top: 0;
}

.icon-spectacular-hamburger__inner>div:nth-child(2),
.icon-spectacular-hamburger__inner>div:nth-child(5) {
    top: 6px;
}

.icon-spectacular-hamburger__inner>div:nth-child(3),
.icon-spectacular-hamburger__inner>div:nth-child(6) {
    top: 12px;
    width: 50%;
}

.icon-spectacular-hamburger__inner>div:nth-child(4) {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.icon-spectacular-hamburger__inner>div:nth-child(5) {
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.icon-spectacular-hamburger__inner>div:nth-child(6) {
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.icon-spectacular-hamburger__inner>.icon-spectacular-hamburger__hover-item {
    background: #8010A7;
    left: -100%;
}

.icon-spectacular-hamburger__inner>.icon-spectacular-hamburger__hover-item:nth-child(4) {
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.icon-spectacular-hamburger__inner>.icon-spectacular-hamburger__hover-item:nth-child(5) {
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.icon-spectacular-hamburger__inner>.icon-spectacular-hamburger__hover-item:nth-child(6) {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.icon-spectacular-hamburger:hover .icon-spectacular-hamburger__inner>.icon-spectacular-hamburger__hover-item,
.icon-spectacular-hamburger:focus .icon-spectacular-hamburger__inner>.icon-spectacular-hamburger__hover-item {
    left: 0;
}

.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner {
    overflow: visible;
}

.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner>div:nth-child(1),
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner>div:nth-child(4) {
    top: 7px;
    left: auto;
    right: 0;
    width: 100%;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
}

.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner>div:nth-child(2),
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner>div:nth-child(5) {
    opacity: 0;
    left: -100%;
}

.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner>div:nth-child(3),
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner>div:nth-child(6) {
    top: 7px;
    left: auto;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    right: 0;
    width: 100%;
}

.icon-spectacular-hamburger--medium .icon-spectacular-hamburger__inner>div {
    background: #FF931E;
}


/* icon arrow */

.icon-simple-arrow {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    background: url("../img/icons/arrows/icon-simple-arrow-right.svg") no-repeat center;
    background-size: contain;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media (min-width: 1700px) {
    .icon-simple-arrow {
        width: 28px;
        height: 28px;
    }
}

.icon-simple-arrow--light {
    background-image: url("../img/icons/arrows/icon-simple-arrow-right-light.svg");
}

.icon-simple-arrow--up {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.icon-simple-arrow--left {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.icon-simple-arrow--down {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
}

.icon-simple-arrow--secondary {
    background-image: url("../img/icons/arrows/icon-simple-arrow-right-secondary.svg");
}

.icon-arrow-with-belt {
    width: 48px;
    height: 48px;
}

@media (min-width: 1100px) {
    .icon-arrow-with-belt {
        width: 56px;
        height: 56px;
    }
}

@media (min-width: 1300px) {
    .icon-arrow-with-belt {
        width: 64px;
        height: 64px;
    }
}

.icon-arrow-with-belt:before {
    background-image: url("/img/icons/arrows/icon-arrow-right.svg");
}

.icon-arrow-with-belt:after {
    background-image: url("/img/icons/arrows/icon-arrow-right-secondary.svg");
}

.icon-arrow-with-belt--left {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.icon-arrow-with-belt--light:before {
    background-image: url("/img/icons/arrows/icon-arrow-right-light.svg");
}

.icon-arrow-with-belt--light:after {
    background-image: url("/img/icons/arrows/icon-arrow-right-secondary.svg");
}

.icon-arrow {
    position: relative;
    width: 12px;
    height: 12px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.icon-arrow--left {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
    left: 3px;
}

.icon-arrow--up {
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
    top: 3px;
}

.icon-arrow--right {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    left: -3px;
}

.icon-arrow--down {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -3px;
}

.icon-arrow--small {
    width: 8px;
    height: 8px;
    border-width: 2px;
}

.icon-arrow--very-small {
    width: 8px;
    height: 8px;
    border-width: 1px;
}

.icon-arrow--left.icon-arrow--small {
    left: 2px;
}

.icon-arrow--up.icon-arrow--small {
    top: 2px;
}

.icon-arrow--right.icon-arrow--small {
    left: -2px;
}

.icon-arrow--down.icon-arrow--small {
    top: -2px;
}

.icon-arrow--large {
    width: 18px;
    height: 18px;
    border-width: 3px;
}

.icon-arrow--dark {
    border-color: #C4C4C4;
}

.icon-arrow--dark-grey {
    border-color: #C4C4C4;
}

.icon-arrow--dark-grey-02 {
    border-color: #333333;
}

.icon-arrow--medium {
    border-color: #8010A7;
}

.icon-arrow--light {
    border-color: #fff;
}

.icon-arrow--primary {
    border-color: #009C3A;
}


/* icon spectacular arrow */

.icon-spectacular-arrow {
    display: block;
    width: 42px;
    height: 42px;
    position: relative;
}

@media (min-width: 1300px) {
    .icon-spectacular-arrow {
        width: 48px;
        height: 48px;
    }
}

.icon-spectacular-arrow:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/icons/arrow-right.svg") no-repeat center right;
    background-size: contain;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.disabled .icon-spectacular-arrow:hover:before {
    padding: 0;
}

.icon-spectacular-arrow.icon-spectacular-arrow--left {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.icon-spectacular-arrow--large {
    width: 28px;
    height: 24px;
}

@media (min-width: 1700px) {
    .icon-spectacular-arrow--large {
        width: 32px;
        height: 28px;
    }
}


/* icon nice arrow */

.icon-nice-arrow {
    position: relative;
    width: 16px;
    height: 16px;
    margin: 0 auto;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    position: relative;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.icon-nice-arrow:before,
.icon-nice-arrow:after {
    content: '';
    display: block;
    position: absolute;
    background: #000;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.icon-nice-arrow:before {
    width: 3px;
    height: 100%;
    top: 0;
    right: 0;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
}

.icon-nice-arrow:after {
    height: 3px;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-border-radius: 8px 0 0 8px;
    -moz-border-radius: 8px 0 0 8px;
    border-radius: 8px 0 0 8px;
}

.icon-nice-arrow--down {
    top: -3px;
}

.icon-nice-arrow--left {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
    left: 3px;
    top: 0;
}

.icon-nice-arrow--right {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    left: -3px;
    top: 0;
}

.icon-nice-arrow--medium-10:before,
.icon-nice-arrow--medium-10:after {
    background: #f3ddc3;
}

.icon-nice-arrow--light:before,
.icon-nice-arrow--light:after {
    background: #fff;
}

.icon-nice-arrow--small {
    width: 12px;
    height: 12px;
}

.icon-nice-arrow--small.icon-nice-arrow--left {
    left: 2px;
}

.icon-nice-arrow--small.icon-nice-arrow--right {
    left: -2px;
}

.icon-nice-arrow--large {
    width: 20px;
    height: 20px;
}

@media (min-width: 1300px) {
    .icon-nice-arrow--large {
        width: 24px;
        height: 24px;
    }
}


/* icon triangular icon */

.icon-triangular-arrow-left {
    border-right: 12px solid #000;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    width: 0;
}

.icon-triangular-arrow-left--small {
    border-right-width: 10px;
    border-top-width: 6px;
    border-bottom-width: 6px;
}

.icon-triangular-arrow-left--large {
    border-right-width: 14px;
    border-top-width: 8px;
    border-bottom-width: 8px;
}

.icon-triangular-arrow-left--medium {
    border-right-color: #8010A7;
}

.icon-triangular-arrow-left--light {
    border-right-color: #fff;
}

.icon-triangular-arrow-up {
    border-bottom: 12px solid #000;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    width: 0;
}

.icon-triangular-arrow-up--small {
    border-bottom-width: 10px;
    border-right-width: 6px;
    border-left-width: 6px;
}

.icon-triangular-arrow-up--large {
    border-bottom-width: 14px;
    border-right-width: 8px;
    border-left-width: 8px;
}

.icon-triangular-arrow-up--medium {
    border-bottom-color: #8010A7;
}

.icon-triangular-arrow-up--light {
    border-bottom-color: #fff;
}

.icon-triangular-arrow-right {
    border-left: 12px solid #000;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    width: 0;
}

.icon-triangular-arrow-right--small {
    border-left-width: 10px;
    border-top-width: 6px;
    border-bottom-width: 6px;
}

.icon-triangular-arrow-right--large {
    border-left-width: 14px;
    border-top-width: 8px;
    border-bottom-width: 8px;
}

.icon-triangular-arrow-right--medium {
    border-left-color: #8010A7;
}

.icon-triangular-arrow-right--light {
    border-left-color: #fff;
}

.icon-triangular-arrow-down {
    border-top: 12px solid #000;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    width: 0;
}

.icon-triangular-arrow-down--small {
    border-top-width: 10px;
    border-right-width: 6px;
    border-left-width: 6px;
}

.icon-triangular-arrow-down--large {
    border-top-width: 14px;
    border-right-width: 8px;
    border-left-width: 8px;
}

.icon-triangular-arrow-down--medium {
    border-top-color: #8010A7;
}

.icon-triangular-arrow-down--light {
    border-top-color: #fff;
}


/* icon cross */

.icon-plus {
    width: 22px;
    height: 22px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.icon-plus:before,
.icon-plus:after {
    content: '';
    position: absolute;
    background: #000;
    display: block;
}

.icon-plus:before {
    width: 100%;
    left: 0;
    top: 50%;
    height: 2px;
    margin: -1px 0 0 0;
}

.icon-plus:after {
    width: 2px;
    top: 0;
    left: 50%;
    margin: 0 0 0 -1px;
    height: 100%;
}

.icon-plus--large {
    width: 26px;
    height: 26px;
}

.icon-plus--large:before {
    height: 4px;
    margin: -2px 0 0 0;
}

.icon-plus--large:after {
    width: 4px;
    margin: 0 0 0 -2px;
}

.icon-plus--large-thin {
    width: 26px;
    height: 26px;
}

.icon-plus--small {
    width: 15px;
    height: 15px;
}

.icon-plus--very-small {
    width: 12px;
    height: 12px;
}

.icon-plus--light:before,
.icon-plus--light:after {
    background: #fff;
}

.icon-plus--medium:before,
.icon-plus--medium:after {
    background: #8010A7;
}

.icon-plus--primary:before,
.icon-plus--primary:after {
    background: #009C3A;
}

.icon-plus--grey:before,
.icon-plus--grey:after {
    background: #ACACAC;
}

.icon-plus--rotated {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.icon-minus {
    width: 21px;
    height: 21px;
    position: relative;
    overflow: hidden;
}

.icon-minus:before {
    content: '';
    position: absolute;
    background: #000;
    display: block;
    width: 100%;
    left: 0;
    top: 50%;
    height: 3px;
    margin: -1.5px 0 0 0;
}

.icon-minus--small {
    width: 16px;
    height: 16px;
}

.icon-minus--small:before {
    height: 2px;
    margin: -1px 0 0 0;
}

.icon-minus--very-small {
    width: 12px;
    height: 12px;
}

.icon-minus--very-small:before {
    height: 2px;
    margin: -1px 0 0 0;
}

.icon-minus--light:before {
    background: #fff;
}


/* extended icon */

.extended-icon,
.icon-arrow-with-belt,
.icon-facebook,
.icon-instagram {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: left;
    text-indent: -10000px;
}

.extended-icon:before,
.icon-arrow-with-belt:before,
.icon-facebook:before,
.icon-instagram:before,
.extended-icon:after,
.icon-arrow-with-belt:after,
.icon-facebook:after,
.icon-instagram:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.extended-icon:after,
.icon-arrow-with-belt:after,
.icon-facebook:after,
.icon-instagram:after {
    opacity: 0;
}

.extended-icon:hover:after,
.icon-arrow-with-belt:hover:after,
.icon-facebook:hover:after,
.icon-instagram:hover:after {
    opacity: 1;
}

.simple-extended-icon {
    display: block;
    position: relative;
}

.simple-extended-icon__base-layer {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.simple-extended-icon__above-layer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0;
}

.simple-extended-icon img {
    display: block;
}

@media (min-width: 992px) {
    .simple-extended-icon--later-changing .simple-extended-icon__base-layer {
        opacity: 0;
    }
}

@media (min-width: 992px) {
    .simple-extended-icon--later-changing .simple-extended-icon__above-layer {
        opacity: 1;
    }
}

.icon-facebook {
    width: 20px;
    height: 20px;
}

@media (min-width: 650px) {
    .icon-facebook {
        width: 24px;
        height: 24px;
    }
}

.icon-facebook:before {
    background-image: url("../img/icons/social-media/icon-facebook.svg");
}

.icon-facebook:after {
    background-image: url("../img/icons/social-media/icon-facebook-light.svg");
}

.icon-facebook--secondary:before {
    background-image: url("../img/icons/social-media/icon-facebook-secondary.svg");
}

.icon-facebook--secondary:after {
    background-image: url("../img/icons/social-media/icon-facebook-light.svg");
}

.icon-instagram {
    width: 20px;
    height: 20px;
}

@media (min-width: 650px) {
    .icon-instagram {
        width: 24px;
        height: 24px;
    }
}

.icon-instagram:before {
    background-image: url("../img/icons/social-media/icon-instagram.svg");
}

.icon-instagram:after {
    background-image: url("../img/icons/social-media/icon-instagram-light.svg");
}

.icon-instagram--secondary:before {
    background-image: url("../img/icons/social-media/icon-instagram-secondary.svg");
}

.icon-instagram--secondary:after {
    background-image: url("../img/icons/social-media/icon-instagram-light.svg");
}


/* player */

.icon-play {
    border-left: 10px solid #000;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    width: 0;
    position: relative;
    left: 1px;
}

@media (min-width: 420px) {
    .icon-play {
        border-left: 16px solid #000;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
}

@media (min-width: 768px) {
    .icon-play {
        border-left: 20px solid #000;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        left: 2px;
    }
}

@media (min-width: 1500px) {
    .icon-play {
        border-left: 26px solid #000;
        border-top: 17px solid transparent;
        border-bottom: 17px solid transparent;
        left: 3px;
    }
}

.icon-play--light {
    border-left-color: #fff;
}

.icon-pause {
    position: relative;
    width: 12px;
    height: 12px;
}

@media (min-width: 420px) {
    .icon-pause {
        height: 16px;
    }
}

@media (min-width: 768px) {
    .icon-pause {
        width: 18px;
        height: 24px;
    }
}

@media (min-width: 1500px) {
    .icon-pause {
        width: 20px;
        height: 28px;
    }
}

.icon-pause:before,
.icon-pause:after {
    content: '';
    display: block;
    width: 4px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
}

@media (min-width: 768px) {
    .icon-pause:before,
    .icon-pause:after {
        width: 6px;
    }
}

@media (min-width: 1500px) {
    .icon-pause:before,
    .icon-pause:after {
        width: 7px;
    }
}

.icon-pause:before {
    left: 0;
}

.icon-pause:after {
    right: 0;
}

.icon-pause--light:before,
.icon-pause--light:after {
    background: #fff;
}

.icon-bullet {
    position: relative;
    width: 24px;
    height: 24px;
}

.icon-bullet:before {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FF931E;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -3px;
}

@media (min-width: 1300px) {
    .icon-bullet:before {
        width: 8px;
        height: 8px;
        margin: -4px 0 0 -4px;
    }
}


/** icons-end **/

* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

*:focus {
    outline: none;
}

.hidden {
    opacity: 0;
}

.visible {
    opacity: 1;
}

html {
    font-family: "work-sans", sans-serif;
    font-size: 14px;
    color: #000;
}

body {
    font-family: "work-sans", sans-serif;
}

img {
    display: inline-block;
    max-width: 100%;
}

button {
    background: none;
    border: 0;
    cursor: pointer;
}

.nowrap {
    white-space: nowrap;
}


/** DECORATIONS **/

.decorated-section {
    position: relative;
}

.decorated-section__inner {
    position: relative;
    z-index: 20;
}

.decoration {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    z-index: 2;
    -webkit-transition: all 0.6s cubic-bezier(0.42, 0.86, 0.75, 1);
    -moz-transition: all 0.6s cubic-bezier(0.42, 0.86, 0.75, 1);
    -o-transition: all 0.6s cubic-bezier(0.42, 0.86, 0.75, 1);
    transition: all 0.6s cubic-bezier(0.42, 0.86, 0.75, 1);
    display: none;
}

.decoration--layer-01 {
    z-index: 40;
}

.decoration--layer-02 {
    z-index: 30;
}


/* decorations */


/***** LINKS *****/

a {
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

a:hover {
    color: #009C3A;
}

a img {
    border: 0;
}

.image-link {
    display: inline-block;
}

.plain-link {
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    cursor: pointer;
}

.plain-link:hover,
.plain-link:focus {
    color: #D6C0B3;
}

.plain-link--light {
    color: #fff;
}

.simple-link {
    color: #FF931E;
    font-size: 12px;
}

@media (min-width: 420px) {
    .simple-link {
        font-size: 14px;
    }
}

.inline-link {
    color: #000;
    font-weight: 400;
}

.std-link {
    color: #000;
    font-weight: 400;
    display: inline-block;
    position: relative;
}

.std-link:before {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #D6C0B3;
}

.std-link--light {
    color: #fff;
}

.std-link--light-weight {
    font-weight: 300;
}

.downwards {
    display: block;
    margin: 0 auto;
    width: 10px;
    height: 60px;
    position: relative;
    overflow: hidden;
    text-indent: -10000px;
    text-align: left;
}

@media (min-width: 1300px) {
    .downwards {
        height: 64px;
    }
}

.downwards:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/icons/arrows/icon-arrow-down-secondary.svg") no-repeat center bottom;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.downwards:hover:before {
    bottom: 0;
}


/***** TEXT *****/

.line {
    display: block;
}

.text {
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
}

@media (min-width: 650px) {
    .text {
        font-size: 16px;
        line-height: 21px;
    }
}

@media (min-width: 768px) {
    .text {
        text-align: left;
        margin: 0;
    }
}

@media (min-width: 1300px) {
    .text {
        max-width: 480px;
    }
}

@media (min-width: 1700px) {
    .text {
        font-size: 18px;
        line-height: 23px;
    }
}

.text p {
    padding: 5px 0;
}

.text p:first-child {
    padding-top: 0;
}

.text p:last-child {
    padding-bottom: 0;
}

.text ul {
    list-style-type: disc;
    padding: 0 0 0 32px;
}

.text ul li {
    padding: 1px 0;
}

.text--large {
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 650px) {
    .text--large {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (min-width: 1700px) {
    .text--large {
        font-size: 20px;
        line-height: 30px;
    }
}

.text--small {
    font-size: 14px;
    line-height: 20px;
    max-width: 320px;
    font-weight: 300;
}

@media (min-width: 1700px) {
    .text--small {
        font-size: 16px;
        line-height: 22px;
        max-width: 350px;
    }
}

.text--very-small {
    font-size: 12px;
    line-height: 18px;
    max-width: 320px;
    font-weight: 300;
}

@media (min-width: 1700px) {
    .text--very-small {
        font-size: 14px;
        line-height: 20px;
        max-width: 350px;
    }
}

.text--type-01 {
    text-align: left;
}

.text--independent {
    text-align: center;
    margin: 0 auto;
}

.text--full-width {
    max-width: 100%;
}

.text--narrow {
    max-width: 360px;
}

@media (min-width: 1700px) {
    .text--narrow {
        max-width: 400px;
    }
}

.address {
    font-style: normal;
    display: block;
    font-weight: 400;
    /*font-size: $main-font-size;
    line-height: $main-font-size + 8px;
    
        @media (min-width: $rwd-1300) {
        font-size: $main-font-size-01;
        line-height: $main-font-size-01 + 8px;
        }*/
}

.address__row {
    padding: 10px 0 0 0;
}

.address__distinguished {
    font-weight: 700;
}

.simple-note {
    text-align: center;
}

@media (min-width: 768px) {
    .simple-note {
        text-align: left;
    }
}

.simple-note__header {
    padding: 0 0 16px 0;
}


/* text-end */


/***** PICTURES *****/

.logo-jwg {
    background: url("../img/logo-jwg.svg") no-repeat top left;
    background-size: contain;
    width: 120px;
    height: 28px;
    display: block;
    text-indent: -10000px;
    overflow: hidden;
    text-align: left;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.logo-jwg--grey {
    opacity: .6;
}

.logo-jwg--grey:hover {
    opacity: 1;
}

.logo-jwg--light {
    background-image: url("../img/logo-jwg-light.svg");
}

.logo-qstalyo {
    background: url("../img/logo-qstalyo.svg") no-repeat top left;
    background-size: contain;
    width: 110px;
    height: 26px;
    display: block;
    text-indent: -10000px;
    overflow: hidden;
    text-align: left;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media (min-width: 480px) {
    .logo-qstalyo {
        width: 130px;
        height: 32px;
    }
}

@media (min-width: 1700px) {
    .logo-qstalyo {
        width: 148px;
        height: 36px;
    }
}

.logo-qstalyo--small {
    width: 94px;
    height: 20px;
}

@media (min-width: 1700px) {
    .logo-qstalyo--small {
        width: 110px;
        height: 26px;
    }
}

.logo-qstalyo--light {
    background-image: url("../img/logo-qstalyo-light.svg");
}

.logo {
    display: block;
    margin: 0 auto;
    width: 200px;
}

.single-picture {
    width: 400px;
    margin: 0 auto;
    display: block;
}

@media (min-width: 1700px) {
    .single-picture {
        width: 500px;
    }
}

.vertical-picture {
    max-width: 100%;
    width: 180px;
    margin: 0 auto;
    display: block;
}

@media (min-width: 992px) {
    .vertical-picture {
        width: 220px;
    }
}

@media (min-width: 1500px) {
    .vertical-picture {
        width: 250px;
    }
}

@media (min-width: 1700px) {
    .vertical-picture {
        width: 320px;
    }
}


/***** MENU *****/

.menu-toggler-container {
    position: fixed;
    z-index: 9000;
    top: 28px;
    right: 20px;
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media (min-width: 650px) {
    .menu-toggler-container {
        top: 32px;
        right: 32px;
    }
}

@media (min-width: 1100px) {
    .menu-toggler-container {
        display: none;
    }
}

@media (min-width: 1700px) {
    .menu-toggler-container {
        top: 48px;
        right: 40px;
    }
}

@media (min-width: 1300px) {
    .menu-toggler-container--deep {
        right: 58px;
    }
}

@media (min-width: 1700px) {
    .menu-toggler-container--deep {
        right: 96px;
    }
}

.menu__item-container {
    padding: 5px 0;
    display: block;
}

@media (min-width: 1700px) {
    .menu__item-container {
        padding: 8px 0;
    }
}

.menu__item-container:first-child {
    padding-top: 0;
}

.menu__item-container:last-child {
    padding-bottom: 0;
}

.horizontal-menu__core>li {
    display: block;
}

@media (min-width: 768px) {
    .horizontal-menu__core>li {
        display: inline-block;
        vertical-align: middle;
    }
}

@media (min-width: 768px) {
    .horizontal-menu__core>li:first-child .menu-item {
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .horizontal-menu__core>li:last-child .menu-item {
        padding-right: 0;
    }
}

.horizontal-menu__core .horizontal-menu__distinguished-item {
    padding: 32px 0 0 0;
    display: block;
}

@media (min-width: 768px) {
    .horizontal-menu__core .horizontal-menu__distinguished-item {
        padding: 20px 0 0 0;
    }
}

@media (min-width: 992px) {
    .horizontal-menu__core .horizontal-menu__distinguished-item {
        display: inline-block;
        padding: 0 0 0 24px;
    }
}

@media (min-width: 1300px) {
    .horizontal-menu__core .horizontal-menu__distinguished-item {
        padding-left: 32px;
    }
}

.menu-item {
    font-size: 16px;
    font-weight: 400;
    display: block;
    position: relative;
    padding: 0 20px;
    font-family: kanit, Arial, sans-serif;
}

@media (min-width: 1300px) {
    .menu-item {
        padding: 0 24px;
    }
}

@media (min-width: 1700px) {
    .menu-item {
        padding: 0 40px;
        font-size: 18px;
    }
}

.menu-item:before {
    content: '';
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    left: -12px;
    padding: 0 12px;
    height: 100%;
    background: #fff;
}

.menu-item__inner {
    padding: 8px 0;
    position: relative;
    display: inline-block;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.menu-item__inner:before {
    content: '';
    display: block;
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #009C3A;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0;
    z-index: 1000;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

.menu-item:hover,
.menu-item:focus {
    color: #009C3A;
}

.menu-item:hover .menu-item__inner,
.menu-item:focus .menu-item__inner {
    color: #009C3A;
}

.menu-item:hover .menu-item__inner:before,
.menu-item:focus .menu-item__inner:before {
    bottom: 0;
    opacity: 1;
}

.menu-item:hover .menu-item__submenu,
.menu-item:focus .menu-item__submenu {
    display: block;
}

.menu-item__submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: -12px;
    width: 100%;
    background: #fff;
    padding: 8px 12px;
}

.menu-item--with-submenu:hover:before,
.menu-item--with-submenu:focus:before {
    display: block;
}

.menu-item--static .menu-item__submenu {
    position: static;
    display: block;
    width: auto;
    background: none;
    text-align: right;
    padding: 0 0 16px 0;
    left: 0;
}

.menu-item--light {
    color: #fff;
}

.menu-item--light .menu-item__inner {
    color: #fff;
}

.menu-item--light .menu-item__inner:before {
    background: #fff;
}

.menu-item--light:hover,
.menu-item--light:focus {
    color: #fff;
}

.menu-item--light:hover .menu-item__inner,
.menu-item--light:focus .menu-item__inner {
    color: #fff;
}

.menu-item--narrow {
    padding: 0;
}

.submenu-item {
    font-size: 14px;
}

@media (min-width: 1700px) {
    .submenu-item {
        font-size: 16px;
    }
}

.submenu-item--light {
    color: #fff;
}

.submenu-item--light:hover,
.submenu-item--light:focus {
    color: #fff;
}

.submenu {
    text-align: left;
}

.submenu>li {
    display: block;
    padding: 6px 0;
}

.submenu--reverse {
    text-align: right;
}


/***** LISTS *****/

ul {
    list-style-type: none;
}

.plain-list {
    list-style-type: none;
}

.plain-list>li {
    display: block;
    padding: 2px 0;
}

@media (min-width: 1300px) {
    .plain-list>li {
        padding: 4px 0;
    }
}

.horizontal-list>li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 -5px;
    padding: 0 35px;
}

.horizontal-list>li:first-child {
    padding-left: 0;
}

.horizontal-list>li:last-child {
    padding-right: 0;
}

.horizontal-links>li {
    padding: 5px 0;
}

@media (min-width: 768px) {
    .horizontal-links>li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 0 0 -5px;
        padding: 0 25px;
    }
}

.horizontal-links>li:first-child {
    padding-left: 0;
}

.horizontal-links>li:last-child {
    padding-right: 0;
}

.horizontal-items {
    font-size: 12px;
    font-family: kanit, Arial, sans-serif;
    font-weight: 300;
}

@media (min-width: 1700px) {
    .horizontal-items {
        font-size: 14px;
    }
}

.horizontal-items>li {
    display: block;
    padding: 10px 0;
}

@media (min-width: 992px) {
    .horizontal-items>li {
        display: inline-block;
        padding: 0 16px;
        vertical-align: middle;
    }
}

@media (min-width: 1700px) {
    .horizontal-items>li {
        padding: 0 20px;
    }
}

.horizontal-items>li:first-child {
    padding-left: 0;
}

.horizontal-items>li:last-child {
    padding-right: 0;
}

.horizontal-items__distinguished {
    font-weight: 500;
}

.horizontal-items__link {
    font-weight: 300;
}

.horizontal-items--light .horizontal-items__link {
    color: #fff;
}

.social-media {
    padding: 0 0 3px 0;
}

.social-media>li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px;
}

.social-media>li:first-child {
    padding-left: 0;
}

.social-media>li:last-child {
    padding-right: 0;
}

.social-media--small>li {
    padding: 0 4px;
}

.files-icons>li {
    display: inline-block;
    padding: 0 7px;
}

.files-icons>li:first-child {
    padding-left: 0;
}

.files-icons>li:last-child {
    padding-right: 0;
}

.subsections>li {
    display: block;
    padding: 20px 0;
}

@media (min-width: 1800px) {
    .subsections>li {
        padding: 30px 0;
    }
}

.subsections>li:first-child {
    padding-top: 0;
}

.subsections>li:last-child {
    padding-bottom: 0;
}

.simple-list>li {
    display: block;
    padding: 4px 0;
}

.icon-labels-list>li {
    display: block;
    padding: 6px 0;
}

.bullet-list {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
}

@media (min-width: 1700px) {
    .bullet-list {
        font-size: 16px;
        line-height: 24px;
    }
}

.bullet-list>li {
    display: inline-block;
    padding: 0 12px;
    position: relative;
}

.bullet-list>li:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: -4px;
    width: 4px;
    height: 4px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #D6C0B3;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.bullet-list>li:first-child {
    padding-left: 0;
}

.bullet-list>li:first-child:before {
    display: none;
}

.bullet-list>li:last-child {
    padding-right: 0;
}

.bullet-list--light>li:before {
    background: #fff;
}

.bullet-list--larger {
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 1100px) {
    .bullet-list--larger {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (min-width: 1700px) {
    .bullet-list--larger {
        font-size: 20px;
        line-height: 28px;
    }
}

.bullet-list--first-distinguished {
    position: relative;
}

.bullet-list--first-distinguished>li:first-child {
    font-weight: 700;
}

@media (min-width: 768px) {
    .bullet-list--first-distinguished>li:first-child {
        position: absolute;
        top: 0;
        right: 100%;
    }
}

.bullet-list--hard-lines>li {
    white-space: nowrap;
}

@media (min-width: 768px) {
    .scrollable-section {
        height: 500px;
        padding: 0 40px 0 0;
        position: relative;
        overflow: hidden;
    }
}

@media (min-width: 1300px) {
    .scrollable-section {
        padding-right: 64px;
    }
}

@media (min-width: 1700px) {
    .scrollable-section {
        height: 632px;
    }
}

.slashes-list>li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 16px;
    margin: 0 0 0 -4px;
}

.slashes-list>li:before {
    content: '/';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.slashes-list>li:first-child:before {
    display: none;
}

.bookmarks>li {
    display: block;
    padding: 4px 0;
}

.bookmark {
    font-size: 16px;
    font-family: kanit, Arial, sans-serif;
    display: inline-block;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media (min-width: 768px) {
    .bookmark {
        text-align: left;
    }
}

@media (min-width: 1700px) {
    .bookmark {
        font-size: 18px;
    }
}

.bookmark__wrapper {
    position: relative;
    padding: 0 0 16px 0;
}

@media (min-width: 768px) {
    .bookmark__wrapper {
        padding: 0 16px 0 0;
    }
}

.bookmark__wrapper:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 24px;
    height: 2px;
    margin: 0 0 0 -12px;
    background: #009C3A;
    opacity: 0;
    left: 0;
}

@media (min-width: 768px) {
    .bookmark__wrapper:before {
        left: 50%;
        bottom: 50%;
        margin: 0 0 -2px 0;
    }
}

@media (min-width: 1700px) {
    .bookmark__wrapper:before {
        width: 32px;
    }
}

.bookmark:hover,
.bookmark:focus {
    color: #009C3A;
}

.bookmark.active .bookmark__wrapper:before {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 1;
    left: 50%;
}

@media (min-width: 768px) {
    .bookmark.active .bookmark__wrapper:before {
        left: 100%;
    }
}

@media (min-width: 1700px) {
    .bookmark.active .bookmark__wrapper:before {
        margin: 0 0 -2px 8px;
    }
}

.numered-list {
    list-style-type: none;
    counter-reset: numeredList;
}

.numered-list>li {
    padding: 12px 0;
}

.numered-list>li:first-child {
    padding-top: 0;
}

.numered-list>li:last-child {
    padding-bottom: 0;
}

.numered-list__order:before {
    content: counters(numeredList, ".", decimal-leading-zero) "";
    counter-increment: numeredList;
}


/*** lists-end ***/


/***** ICONS *****/

.icon-descriptive {
    display: block;
    margin: 0 auto;
}

@media (min-width: 1700px) {
    .icon-descriptive {
        width: 100%;
    }
}

.small-icon {
    display: block;
    height: 48px;
}

@media (min-width: 1500px) {
    .small-icon {
        height: 56px;
    }
}

@media (min-width: 1700px) {
    .small-icon {
        height: 64px;
    }
}


/* icons-end */


/***** HEADER *****/

.site-header {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
}

.site-header__wrapper {
    padding: 60px 0 40px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 420px) {
    .site-header__wrapper {
        padding: 80px 0 60px 0;
    }
}

@media (min-width: 480px) {
    .site-header__wrapper {
        padding: 120px 0 60px 0;
    }
}

@media (min-width: 768px) {
    .site-header__wrapper {
        padding: 100px 0 80px 0;
    }
}

.site-header__layer {
    padding: 0;
    background-color: #009C3A;
}

.site-header__inner {
    position: relative;
    z-index: 4;
}

@media (min-width: 768px) {
    .site-header__inner {
        margin: 0 6%;
    }
}

@media (min-width: 992px) {
    .site-header__inner {
        margin: 0 10%;
    }
}

@media (min-width: 1100px) {
    .site-header__inner {
        margin: 0 14%;
    }
}

@media (min-width: 1100px) {
    .site-header__inner--wide {
        margin: 0 8%;
    }
}

.site-header__content {
    position: relative;
    z-index: 10;
}

.site-header__footer {
    padding: 40px 0 20px 0;
    display: none;
}

@media (min-width: 480px) {
    .site-header__footer {
        padding-top: 60px;
        display: block;
    }
}

@media (min-width: 768px) {
    .site-header__footer {
        text-align: left;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 0 60px 40px 60px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.site-header__bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

.simple-site-header {
    color: #000;
}

.site-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 8000;
}

@media (min-width: 1100px) {
    .site-bar {
        background: rgba(255, 255, 255, 0.6);
        border-bottom: 1px solid #E5E5E5;
    }
}

.site-bar__wrapper {
    padding: 20px 0;
}

@media (min-width: 480px) {
    .site-bar__wrapper {
        padding: 28px 0;
    }
}

@media (min-width: 1300px) {
    .site-bar__wrapper {
        padding: 20px 0;
    }
}

@media (min-width: 1700px) {
    .site-bar__wrapper {
        padding: 28px 0;
    }
}

.site-bar__inner {
    padding: 0 20px;
}

@media (min-width: 650px) {
    .site-bar__inner {
        padding: 0 32px;
    }
}

@media (min-width: 1300px) {
    .site-bar__inner {
        padding: 0 64px;
    }
}

@media (min-width: 1500px) {
    .site-bar__inner {
        padding: 0 100px;
    }
}

@media (min-width: 1700px) {
    .site-bar__inner {
        padding: 0 120px;
    }
}

.site-bar .site-bar__menu-column {
    display: none;
}

@media (min-width: 1100px) {
    .site-bar .site-bar__menu-column {
        display: block;
        text-align: right;
        width: 85%;
    }
}

@media (min-width: 1100px) {
    .site-bar .site-bar__logo-column {
        width: 15%;
    }
}


/***** HEADERS *****/

.section-header {
    padding: 0 0 70px 0;
    text-align: center;
    position: relative;
}

@media (min-width: 480px) {
    .section-header {
        padding-bottom: 90px;
    }
}

@media (min-width: 768px) {
    .section-header {
        padding-bottom: 100px;
    }
}

.section-pretitle {
    font-family: kanit, Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    color: #009C3A;
    letter-spacing: 1px;
}

.page-title {
    font-weight: 400;
    font-size: 28px;
}

@media (min-width: 420px) {
    .page-title {
        font-size: 36px;
    }
}

@media (min-width: 480px) {
    .page-title {
        font-size: 42px;
    }
}

@media (min-width: 650px) {
    .page-title {
        font-size: 46px;
    }
}

@media (min-width: 900px) {
    .page-title {
        font-size: 50px;
    }
}

@media (min-width: 1100px) {
    .page-title {
        font-size: 58px;
    }
}

@media (min-width: 1300px) {
    .page-title {
        font-size: 64px;
    }
}

@media (min-width: 1500px) {
    .page-title {
        font-size: 70px;
    }
}

@media (min-width: 1700px) {
    .page-title {
        font-size: 78px;
    }
}

.section-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    font-family: kanit, Arial, sans-serif;
}

@media (min-width: 480px) {
    .section-title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (min-width: 650px) {
    .section-title {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (min-width: 1300px) {
    .section-title {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (min-width: 1500px) {
    .section-title {
        font-size: 42px;
        line-height: 50px;
    }
}

.section-title__distinguished {
    color: #009C3A;
}

.section-subheader {
    text-align: center;
    padding: 0 0 32px 0;
}

.section-subtitle {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    font-family: kanit, Arial, sans-serif;
}

@media (min-width: 1100px) {
    .section-subtitle {
        font-size: 22px;
        line-height: 28px;
    }
}

@media (min-width: 1500px) {
    .section-subtitle {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (min-width: 1700px) {
    .section-subtitle {
        font-size: 28px;
        line-height: 34px;
    }
}

.decorated-header {
    position: relative;
    padding: 0 0 40px 0;
    text-align: center;
}

@media (min-width: 480px) {
    .decorated-header {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .decorated-header {
        text-align: left;
        margin: 0;
    }
}

@media (min-width: 900px) {
    .decorated-header {
        max-width: 60%;
        padding-bottom: 48px;
    }
}

.decorated-header:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 24px;
    height: 3px;
    background: #009C3A;
    margin: 0 0 0 -12px;
}

@media (min-width: 768px) {
    .decorated-header:before {
        left: 0;
        margin: 0;
    }
}

@media (min-width: 900px) {
    .decorated-header:before {
        bottom: 24px;
    }
}

@media (min-width: 1500px) {
    .decorated-header:before {
        width: 32px;
        height: 4px;
    }
}

.decorated-header--flat {
    padding-bottom: 24px;
}

@media (min-width: 900px) {
    .decorated-header--flat {
        padding-bottom: 32px;
    }
}

.decorated-header--flat:before {
    bottom: 0;
}

.decorated-header--light:before {
    background: #fff;
}

.decorated-header--up-decoration {
    padding: 24px 0 0 0;
}

@media (min-width: 900px) {
    .decorated-header--up-decoration {
        padding-top: 28px;
    }
}

.decorated-header--up-decoration:before {
    top: 0;
    bottom: auto;
}

.decorated-header--full-width {
    max-width: 100%;
}

.subsection-header {
    padding: 0 0 30px 0;
    text-align: center;
    position: relative;
}

@media (min-width: 1300px) {
    .subsection-header {
        padding-bottom: 50px;
    }
}

.small-section-header {
    text-align: center;
    padding: 0 0 32px 0;
}

@media (min-width: 768px) {
    .small-section-header {
        text-align: left;
    }
}

.index-number {
    font-family: "work-sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
}

@media (min-width: 1700px) {
    .index-number {
        font-size: 14px;
    }
}

.numered-title {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 480px) {
    .numered-title {
        font-size: 18px;
    }
}

@media (min-width: 1500px) {
    .numered-title {
        font-size: 20px;
    }
}

@media (min-width: 1700px) {
    .numered-title {
        font-size: 22px;
    }
}

.numered-title__number-container {
    padding: 0 0 4px 0;
}

@media (min-width: 768px) {
    .numered-title__number-container {
        padding: 0;
    }
}

@media (min-width: 768px) {
    .numered-title__content {
        padding: 0 0 0 20px;
    }
}

.subsection-title--small {
    font-size: 22px;
}

@media (min-width: 1100px) {
    .subsection-title--small {
        font-size: 24px;
    }
}

@media (min-width: 1500px) {
    .subsection-title--small {
        font-size: 26px;
    }
}

@media (min-width: 1700px) {
    .subsection-title--small {
        font-size: 28px;
    }
}

.subsection-title--primary {
    color: #009C3A;
}

.simple-header {
    padding: 0 0 10px 0;
}

.simple-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 1500px) {
    .simple-title {
        font-size: 18px;
        line-height: 26px;
    }
}

.small-title {
    font-weight: 500;
    font-size: 16px;
    font-family: kanit, Arial, sans-serif;
}

@media (min-width: 1500px) {
    .small-title {
        font-size: 18px;
    }
}

.small-title--primary {
    color: #009C3A;
}

.tiny-title {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (min-width: 1700px) {
    .tiny-title {
        font-size: 16px;
        line-height: 22px;
    }
}

.tiny-title__light {
    font-weight: 400;
}

.common-title {
    text-align: left;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}

.icon-header {
    text-align: center;
    position: relative;
}

@media (min-width: 768px) {
    .icon-header {
        padding: 0 60px 0 0;
        text-align: left;
    }
}

@media (min-width: 1300px) {
    .icon-header {
        padding-right: 80px;
    }
}

.icon-header__icon-container {
    padding: 0 0 16px 0;
}

@media (min-width: 768px) {
    .icon-header__icon-container {
        padding: 0;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translate3d(0, -50%, 0);
        -moz-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }
}

.icon-header__icon {
    display: block;
    width: 48px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .icon-header__icon {
        width: 64px;
    }
}

@media (min-width: 1300px) {
    .icon-header__icon {
        width: 72px;
    }
}

.titles-group__title {
    padding: 4px 0;
}

.titles-group__title:before {
    padding-top: 0;
}

.titles-group__title:after {
    padding-bottom: 0;
}

.side-info-header {
    padding: 32px 0;
    position: relative;
}

@media (min-width: 992px) {
    .side-info-header {
        padding: 0;
    }
}

@media (min-width: 992px) {
    .side-info-header:before {
        content: '';
        display: block;
        top: 0;
    }
}

@media (min-width: 992px) {
    .side-info-header:after {
        content: '';
        display: block;
        right: 260px;
        top: 0;
        height: 100%;
        position: absolute;
    }
}

@media (min-width: 1700px) {
    .side-info-header:after {
        right: 320px;
    }
}

.side-info-header__container {
    position: relative;
}

@media (min-width: 768px) {
    .side-info-header__container {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
    }
}

.side-info-header__title-container {
    padding: 0 0 20px 0;
}

@media (min-width: 768px) {
    .side-info-header__title-container {
        padding: 0;
    }
}

@media (min-width: 992px) {
    .side-info-header__title-container {
        padding: 48px 32px;
    }
}

@media (min-width: 1300px) {
    .side-info-header__title-container {
        padding: 64px 40px;
    }
}

@media (min-width: 1500px) {
    .side-info-header__title-container {
        padding: 64px 48px;
    }
}

@media (min-width: 1500px) {
    .side-info-header__title-container {
        padding: 72px 72px;
    }
}

@media (min-width: 768px) {
    .side-info-header__side-container {
        width: 260px;
        padding: 0 0 20px 0;
    }
}

@media (min-width: 992px) {
    .side-info-header__side-container {
        padding: 0;
    }
}

@media (min-width: 1700px) {
    .side-info-header__side-container {
        width: 320px;
    }
}


/*** headers-end ***/


/***** CONTAINERS *****/

.site-wrapper {
    overflow: hidden;
}

.site-content {
    margin: 0 auto;
}

.flex-container {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .flex-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.flex-column {
    padding: 40px 0 0 0;
}

@media (min-width: 768px) {
    .flex-column {
        padding: 0 30px;
    }
}

.flex-column:first-child {
    padding-top: 0;
    padding-left: 0;
}

.flex-column:last-child {
    padding-right: 0;
}

@media (min-width: 768px) {
    .flex-column--9 {
        width: 75%;
    }
}

@media (min-width: 768px) {
    .flex-column--3 {
        width: 25%;
    }
}

@media (min-width: 768px) {
    .flex-column--6 {
        width: 50%;
        flex: 1 50%;
    }
}

.video {
    display: block;
    position: relative;
    padding-bottom: 56.75%;
    height: 0;
    margin: 0 auto;
}

.video iframe,
.video video {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video--flat {
    padding-bottom: 42%;
}

.full-dimensions-video {
    /**position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    **/
    position: relative;
    height: 100%;
}

.full-dimensions-video__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.full-dimensions-video__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.full-dimensions-video__video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.full-dimensions-video__layer {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    z-index: 4;
}

.full-dimensions-background {
    /**position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    **/
    position: relative;
}

.full-dimensions-background__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.full-dimensions-background__background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
}

.full-dimensions-background__layer {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 240px 20px 60px 20px;
    -moz-background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.2) 100%);
    -webkit-background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.2) 100%);
    -o-background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.2) 100%);
    -ms-background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.2) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

@media (min-width: 768px) and (orientation: landscape) {
    .full-dimensions-background__layer {
        padding: 80px 20px 60px 20px;
    }
}

@media (min-width: 992px) {
    .full-dimensions-background__layer {
        padding: 120px 20px 100px 20px;
    }
}

@media (min-width: 1800px) {
    .full-dimensions-background__layer {
        padding: 150px 40px 130px 40px;
    }
}

.lead {
    text-align: center;
}

@media (min-width: 768px) {
    .lead {
        text-align: left;
    }
}

.lead__header {
    padding: 0 0 20px 0;
}

.lead__header--list {
    padding: 0 0 80px 0;
}

@media (min-width: 650px) {
    .lead__header--list {
        padding: 0 0 55px 0;
    }
}

@media (min-width: 992px) {
    .lead__header--list {
        padding: 0 0 20px 0;
    }
}

.lead__pretitle {
    padding: 0 0 10px 0;
}

@media (min-width: 1300px) {
    .lead__pretitle {
        padding-bottom: 16px;
    }
}

.lead__icon {
    display: block;
    margin: 0 auto;
    max-height: 64px;
}

@media (min-width: 768px) {
    .lead__icon {
        margin: 0;
    }
}

@media (min-width: 1700px) {
    .lead__icon {
        max-height: 72px;
    }
}

.lead__content {
    max-width: 360px;
    margin: 0 auto;
}

@media (min-width: 480px) {
    .lead__content {
        max-width: 460px;
    }
}

@media (min-width: 768px) {
    .lead__content {
        margin: 0;
    }
}

.std-controls .owl-prev,
.std-controls .owl-next {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.std-controls .owl-prev {
    padding: 0 2px 0 0;
}

.std-controls .owl-next {
    padding: 0 0 0 2px;
}

.std-dots .owl-dot {
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
}

.std-dots .owl-dot span {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

@media (min-width: 1300px) {
    .std-dots .owl-dot span {
        width: 22px;
        height: 22px;
    }
}

.std-dots .owl-dot span:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #000;
    margin: -2px 0 0 -2px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

@media (min-width: 1300px) {
    .std-dots .owl-dot span:before {
        width: 6px;
        height: 6px;
        margin: -3px 0 0 -3px;
    }
}

.std-dots .owl-dot span:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0.5px solid #000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 5;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.std-dots .owl-dot span:hover:after {
    opacity: 1;
}

.std-dots .owl-dot.active span:after {
    opacity: 1;
    border-color: #009C3A;
}

.std-dots .owl-dot:first-child {
    padding-left: 0;
}

.std-dots .owl-dot:last-child {
    padding-right: 0;
}

.std-dots--light .owl-dot span:before {
    background: #fff;
}

.note {
    text-align: center;
    max-width: 360px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .note {
        margin: 0;
        text-align: left;
    }
}

@media (min-width: 1700px) {
    .note {
        max-width: 420px;
    }
}

.note__header {
    padding: 0 0 16px 0;
}

.note--narrow {
    max-width: 320px;
}

@media (min-width: 1300px) {
    .note--narrow {
        max-width: 360px;
    }
}

@media (min-width: 768px) {
    .button-container-with-contents__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .button-container-with-contents__contents-container {
        padding: 0 20px 0 0;
    }
}

.button-container-with-contents__button-container {
    padding: 20px 0 0 0;
}

@media (min-width: 768px) {
    .button-container-with-contents__button-container {
        padding: 0;
    }
}

.article {
    text-align: left;
}

.article__header {
    padding: 0 0 16px 0;
}

.article__subheader {
    padding: 32px 0 16px 0;
}

@media (min-width: 1100px) {
    .article__subheader {
        padding-top: 40px;
    }
}

@media (min-width: 1700px) {
    .article__subheader {
        padding-top: 48px;
    }
}

@media (min-width: 480px) {
    .article__content {
        padding: 0 0 0 32px;
    }
}

@media (min-width: 768px) {
    .article__content {
        padding-left: 64px;
    }
}

.horizontal-boxy-container {
    display: flex;
    align-items: stretch;
}

.horizontal-boxy-container__item {
    position: relative;
}

.horizontal-boxy-container__item-inner {
    padding: 12px 20px;
}

@media (min-width: 480px) {
    .horizontal-boxy-container__item-inner {
        padding: 12px 40px;
    }
}

@media (min-width: 1300px) {
    .horizontal-boxy-container__item-inner {
        padding: 16px 50px;
    }
}

.horizontal-boxy-container__item-inner--narrow {
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 1300px) {
    .horizontal-boxy-container__item-inner--narrow {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 768px) {
    .horizontal-boxy-container__item-inner--assymetric {
        padding-right: 60px;
    }
}

@media (min-width: 1300px) {
    .horizontal-boxy-container__item-inner--assymetric {
        padding-right: 80px;
    }
}

.horizontal-boxy-container__item-inner--wide {
    padding: 12px 48px;
}

@media (min-width: 992px) {
    .horizontal-boxy-container__item-inner--separated:before {
        content: '';
        display: block;
        width: .5px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #E5E5E5;
    }
}

.horizontal-boxy-container--darker .horizontal-boxy-container__item-inner--separated:before {
    background-color: #545454;
}

.horizontal-boxy-container--background {
    background-color: #fff;
}

.horizontal-boxy-container--end {
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .large-lead {
        text-align: left;
    }
}

.large-lead__header {
    padding: 0 0 16px 0;
}

.grid-sections {
    counter-reset: gridSections;
}

.grid-sections__row {
    padding: 48px 0 0 0;
}

.grid-sections__row:first-child {
    padding-top: 0;
}

.grid-sections__order:before {
    content: counters(gridSections, "", decimal-leading-zero) "";
    counter-increment: gridSections;
}

@media (min-width: 992px) {
    .grid-section {
        margin: 0 0 0 1px;
    }
}

.grid-section__wrapper {
    position: relative;
}

.grid-section__wrapper:before {
    content: '';
    top: auto;
    bottom: 0;
    display: block;
    z-index: 8;
}

.grid-section__container {
    position: relative;
}

.grid-section__container:before,
.grid-section__container:after {
    content: '';
    top: 0;
    display: block;
    z-index: 8;
}

.grid-section__container:before {
    left: 0;
}

@media (min-width: 992px) {
    .grid-section__container:before {
        display: none;
    }
}

.grid-section__container:after {
    right: 0;
}

@media (min-width: 992px) {
    .grid-section__container:after {
        display: none;
    }
}

.grid-section__row {
    position: relative;
    height: 100%;
}

.grid-section__row:before {
    content: '';
    top: 0;
    left: 0;
    display: block;
    z-index: 8;
}

@media (min-width: 650px) {
    .grid-section__row--with-cells {
        display: flex;
    }
}

.grid-section__row--nearly-light-background {
    background: #F8F8F8;
}

.grid-section__row--light-background {
    background: #fff;
}

.grid-section__cell--light-background {
    background: #fff;
}

.grid-section__cell {
    padding: 24px 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .grid-section__cell {
        padding: 40px 16px;
        text-align: left;
    }
}

@media (min-width: 900px) {
    .grid-section__cell {
        padding: 40px 32px;
    }
}

@media (min-width: 992px) {
    .grid-section__cell {
        padding: 32px 32px;
    }
}

@media (min-width: 1100px) {
    .grid-section__cell {
        padding: 32px 40px;
    }
}

@media (min-width: 1500px) {
    .grid-section__cell {
        padding: 40px 64px;
    }
}

.grid-section__cell--with-text {
    justify-content: flex-start;
}

@media (min-width: 900px) {
    .grid-section__cell--wide {
        padding: 32px 16px;
    }
}

@media (min-width: 1100px) {
    .grid-section__cell--wide {
        padding: 32px 8px;
    }
}

@media (min-width: 1500px) {
    .grid-section__cell--wide {
        padding: 40px 16px;
    }
}

@media (min-width: 650px) {
    .grid-section__cell--6 {
        width: 50%;
    }
}

.grid-section__cell--independent {
    padding-top: 32px;
    padding-bottom: 32px;
}

@media (min-width: 480px) {
    .grid-section__cell--independent {
        padding: 40px;
    }
}

@media (min-width: 768px) {
    .grid-section__cell--independent {
        padding: 24px 16px;
    }
}

@media (min-width: 900px) {
    .grid-section__cell--independent {
        padding: 40px 32px;
    }
}

@media (min-width: 992px) {
    .grid-section__cell--independent {
        padding: 32px 32px;
    }
}

@media (min-width: 1100px) {
    .grid-section__cell--independent {
        padding: 40px 40px;
    }
}

@media (min-width: 1500px) {
    .grid-section__cell--independent {
        padding: 48px 64px;
    }
}

.grid-section__cell--wider {
    @exted .grid-section__cell--independent;
}

@media (min-width: 1300px) {
    .grid-section__cell--wider {
        padding-left: 20px;
        padding-right: 12px;
    }
}

@media (min-width: 1500px) {
    .grid-section__cell--wider {
        padding-left: 28px;
        padding-right: 20px;
    }
}

@media (min-width: 1700px) {
    .grid-section__cell--wider {
        padding-left: 36px;
    }
}

@media (min-width: 768px) {
    .grid-section__cell--narrower {
        padding-left: 60px;
    }
}

@media (min-width: 1300px) {
    .grid-section__cell--narrower {
        padding-left: 32px;
    }
}

@media (min-width: 1500px) {
    .grid-section__cell--narrower {
        padding-left: 48px;
    }
}

@media (min-width: 1700px) {
    .grid-section__cell--narrower {
        padding-left: 56px;
    }
}

.grid-section__container {
    position: relative;
}

@media (min-width: 768px) {
    .grid-section__container {
        padding: 0 0 0 50%;
    }
}

@media (min-width: 768px) {
    .grid-section__dependent-column {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
    }
}

@media (min-width: 768px) {
    .grid-section--reverse .grid-section__container {
        padding: 0 50% 0 0;
    }
}

@media (min-width: 768px) {
    .grid-section--reverse .grid-section__dependent-column {
        left: auto;
        right: 0;
    }
}

.grid-section--reverse .grid-section__dependent-column:before {
    content: '';
    top: 0;
    left: 0;
    z-index: 8;
}

@media (min-width: 768px) {
    .grid-section--reverse .grid-section__dependent-column:before {
        display: block;
    }
}

.grid-section--clear-east .grid-section__container:after {
    display: none;
}

.shorter-container {
    position: relative;
}

@media (min-width: 992px) {
    .shorter-container:before,
    .shorter-container:after {
        content: '';
        display: block;
        top: 0;
        left: 0;
    }
}

@media (min-width: 992px) {
    .shorter-container:after {
        top: auto;
        bottom: 0;
    }
}

@media (min-width: 1300px) {
    .shorter-container:after {
        display: none;
    }
}

@media (min-width: 1300px) {
    .shorter-container__inner {
        padding: 0 28px 0 0;
    }
}

@media (min-width: 1500px) {
    .shorter-container__inner {
        padding-right: 40px;
    }
}

@media (min-width: 1700px) {
    .shorter-container__inner {
        padding-right: 64px;
    }
}

.diagonal-cell__wrapper {
    position: relative;
    overflow: hidden;
}

.diagonal-cell__wrapper:before,
.diagonal-cell__wrapper:after {
    content: '';
    display: block;
}

.diagonal-cell__wrapper:before {
    top: 0;
}

.diagonal-cell__wrapper:after {
    bottom: 0;
}

.diagonal-cell__inner {
    position: relative;
    padding: 0 0 100% 0;
}

.diagonal-cell__inner:before {
    content: '';
    display: block;
    border-left: 1px solid #E5E5E5;
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    -webkit-transform: skew(-45deg);
    -moz-transform: skew(-45deg);
    transform: skew(-45deg);
}

.diagonal-cell--clear-bottom .diagonal-cell__wrapper:after {
    display: none;
}

.diagonal-cell--flat .diagonal-cell__inner {
    padding: 0 0 42% 0;
}

.diagonal-cell--flat .diagonal-cell__inner:before {
    -webkit-transform: skew(-68deg);
    -moz-transform: skew(-68deg);
    transform: skew(-68deg);
}

.diagonal-cell--darker .diagonal-cell__inner:before {
    border-color: #545454;
}

.section-with-side-empty-space__empty-space {
    display: none;
}

@media (min-width: 1300px) {
    .section-with-side-empty-space__empty-space {
        display: block;
    }
}

.section-with-side-empty-space__side-content {
    padding: 0;
    width: 100%;
}

@media (min-width: 1300px) {
    .section-with-side-empty-space__side-content {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .section-with-side-empty-space__content-column {
        padding: 0 20px 0 0;
    }
}

@media (min-width: 992px) {
    .section-with-side-empty-space__content-column {
        padding: 0;
    }
}

@media (min-width: 768px) {
    .section-with-side-empty-space__side-column {
        padding: 0 0 0 20px;
    }
}

@media (min-width: 992px) {
    .section-with-side-empty-space__side-column {
        padding: 0;
    }
}

.horizontal-window-gallery__wrapper {
    overflow: hidden;
    padding: 0 0 60px 0;
}

@media (min-width: 1300px) {
    .horizontal-window-gallery__wrapper {
        padding-bottom: 100px;
    }
}

@media (min-width: 1500px) {
    .horizontal-window-gallery__wrapper {
        padding-bottom: 120px;
    }
}

@media (min-width: 1700px) {
    .horizontal-window-gallery__wrapper {
        padding-bottom: 140px;
    }
}

.horizontal-window-gallery__inner {
    position: relative;
}

.horizontal-window-gallery__inner:before,
.horizontal-window-gallery__inner:after {
    content: '';
    display: block;
    left: 0;
}

.horizontal-window-gallery__inner:before {
    top: 0;
}

.horizontal-window-gallery__inner:after {
    bottom: 0;
    top: auto;
}

.horizontal-window-gallery__item {
    padding: 32px 0 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .horizontal-window-gallery__item {
        float: left;
        padding: 0;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .horizontal-window-gallery__item {
        width: 25%;
    }
}

@media (min-width: 768px) {
    .horizontal-window-gallery__item--first {
        padding-right: 20px;
    }
}

@media (min-width: 992px) {
    .horizontal-window-gallery__item--first {
        padding: 0;
    }
}

@media (min-width: 768px) {
    .horizontal-window-gallery__item--second {
        padding-left: 20px;
    }
}

@media (min-width: 992px) {
    .horizontal-window-gallery__item--second {
        padding: 0;
    }
}

.horizontal-window-gallery__item--wide {
    float: none;
    clear: both;
    padding: 40px 0 0 0;
    width: 100%;
}

@media (min-width: 992px) {
    .horizontal-window-gallery__item--wide {
        width: 50%;
        float: left;
        padding: 0;
        clear: none;
    }
}

@media (min-width: 992px) {
    .horizontal-window-gallery__item-inner--with-space {
        margin: 0 0 0 32px;
        position: relative;
    }
}

@media (min-width: 1500px) {
    .horizontal-window-gallery__item-inner--with-space {
        margin-left: 40px;
    }
}

@media (min-width: 992px) {
    .horizontal-window-gallery__item-inner--with-space:before {
        top: 100%;
        left: 0;
        content: '';
        display: block;
    }
}

.same-height-picture {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 300px;
}

@media (min-width: 1500px) {
    .same-height-picture {
        height: 360px;
    }
}

@media (min-width: 992px) {
    .section-with-decorated-side__container {
        padding: 0 50% 0 0;
    }
}

.section-with-decorated-side__content-container {
    padding: 0 0 40px 0;
}

@media (min-width: 992px) {
    .section-with-decorated-side__content-container {
        padding-right: 40px;
    }
}

@media (min-width: 1300px) {
    .section-with-decorated-side__content-container {
        padding: 0 0 64px 0;
    }
}

.section-with-decorated-side__decorated-side-container {
    display: none;
}

@media (min-width: 992px) {
    .section-with-decorated-side__decorated-side-container {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50%;
    }
}

.section-with-decorated-side__decorated-side-container--always-visible {
    display: block;
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
}

@media (min-width: 992px) {
    .section-with-decorated-side__decorated-side-container--always-visible {
        border: 0;
    }
}

@media (min-width: 768px) {
    .box-subsections {
        border: 1px solid #E5E5E5;
    }
}

@media (min-width: 992px) {
    .box-subsections {
        border-left: 0;
        border-right: 0;
    }
}

@media (min-width: 768px) {
    .box-subsections__container {
        display: flex;
        align-items: stretch;
    }
}

@media (min-width: 768px) {
    .box-subsections__subsection-container {
        width: 50%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media (min-width: 768px) {
    .box-subsections__subsection-container:first-child {
        padding: 0 1px 0 0;
    }
}

@media (min-width: 768px) {
    .box-subsections__subsection-container:last-child {
        padding: 0 0 0 1px;
    }
}

.box-subsections__subsection {
    height: 100%;
}

@media (min-width: 768px) {
    .box-subsections__subsection {
        background: #fff;
    }
}

@media (min-width: 768px) {
    .box-subsections__subsection--nearly-light {
        background: #F8F8F8;
    }
}

@media (min-width: 768px) {
    .box-subsection__wrapper {
        padding: 40px;
    }
}

@media (min-width: 1100px) {
    .box-subsection__wrapper {
        padding: 48px 64px;
    }
}

@media (min-width: 1300px) {
    .box-subsection__wrapper {
        padding: 64px 80px;
    }
}

@media (min-width: 1500px) {
    .box-subsection__wrapper {
        padding: 64px 120px;
    }
}

@media (min-width: 1700px) {
    .box-subsection__wrapper {
        padding: 80px 140px;
    }
}

.skew-section {
    color: #fff;
}

@media (min-width: 768px) {
    .skew-section {
        padding: 100px 0 0 0;
    }
}

.skew-section__wrapper {
    padding: 64px 0;
    position: relative;
    background: #009C3A;
}

@media (min-width: 768px) {
    .skew-section__wrapper {
        padding: 16px 0 64px 0;
        background: none;
    }
}

@media (min-width: 1300px) {
    .skew-section__wrapper {
        padding-bottom: 80px;
    }
}

@media (min-width: 1700px) {
    .skew-section__wrapper {
        padding-bottom: 120px;
    }
}

@media (min-width: 768px) {
    .skew-section__wrapper:before {
        content: '';
        display: block;
        position: absolute;
        top: -28%;
        left: 0;
        width: 100%;
        -webkit-transform: skew(0, -8deg) translate3d(0, 0, 0);
        -moz-transform: skew(0, -8deg) translate3d(0, 0, 0);
        transform: skew(0, -8deg) translate3d(0, 0, 0);
        padding: 0 0 24% 0;
        background: #009C3A;
    }
}

@media (min-width: 1100px) {
    .skew-section__wrapper:before {
        top: -36%;
    }
}

@media (min-width: 1300px) {
    .skew-section__wrapper:before {
        top: -28%;
    }
}

@media (min-width: 1500px) {
    .skew-section__wrapper:before {
        top: -36%;
    }
}

@media (min-width: 768px) {
    .skew-section__wrapper:after {
        content: '';
        display: block;
        position: absolute;
        top: 20%;
        left: 0;
        width: 100%;
        height: 80%;
        background: #009C3A;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.skew-section__inner {
    position: relative;
    z-index: 16;
}

.icons>li {
    padding: 32px 0;
}

@media (min-width: 480px) {
    .icons>li {
        display: inline-block;
        vertical-align: top;
        padding: 24px;
        width: 50%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0 0 0 -4px;
    }
}

@media (min-width: 650px) {
    .icons>li {
        width: 25%;
        padding: 0 24px;
    }
}

@media (min-width: 768px) {
    .icons>li {
        padding: 0 16px;
    }
}

@media (min-width: 650px) {
    .icons>li:first-child {
        padding-top: 0;
    }
}

@media (min-width: 650px) {
    .icons>li:last-child {
        padding-bottom: 0;
    }
}

.icon-item {
    text-align: center;
    max-width: 148px;
    margin: 0 auto;
}

@media (min-width: 1300px) {
    .icon-item {
        max-width: 160px;
    }
}

@media (min-width: 1700px) {
    .icon-item {
        max-width: 200px;
    }
}

.icon-item__icon {
    display: block;
    margin: 0 auto;
    width: 83px;
}

@media (min-width: 1100px) {
    .icon-item__icon {
        width: 99px;
    }
}

@media (min-width: 1300px) {
    .icon-item__icon {
        width: 109px;
    }
}

@media (min-width: 1700px) {
    .icon-item__icon {
        width: 129px;
    }
}

.icon-item__icon-container {
    padding: 0 0 20px 0;
}

@media (min-width: 1700px) {
    .icon-item__icon-container {
        padding-bottom: 32px;
    }
}

.icon-item__number {
    font-family: kanit, Arial, sans-serif;
    font-size: 28px;
    line-height: 28px;
    padding: 0 0 16px 0;
}

@media (min-width: 1100px) {
    .icon-item__number {
        font-size: 34px;
        line-height: 34px;
    }
}

@media (min-width: 1300px) {
    .icon-item__number {
        font-size: 46px;
        line-height: 46px;
        padding-bottom: 24px;
    }
}

@media (min-width: 1700px) {
    .icon-item__number {
        font-size: 54px;
        line-height: 54px;
    }
}

.icon-item__description {
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (min-width: 1300px) {
    .icon-item__description {
        font-size: 14px;
        line-height: 22px;
    }
}

.extended-icon-item__icon-container {
    padding: 32px 0;
    position: relative;
}

@media (min-width: 768px) {
    .extended-icon-item__icon-container {
        padding: 48px 0;
    }
}

@media (min-width: 1500px) {
    .extended-icon-item__icon-container {
        padding: 60px 0;
    }
}

@media (min-width: 992px) {
    .extended-icon-item__icon-container:before {
        content: '';
        display: block;
        bottom: 0;
        top: auto;
    }
}

.extended-icon-item__icon {
    display: block;
    margin: 0 auto;
    width: 90px;
}

@media (min-width: 768px) {
    .extended-icon-item__icon {
        width: 100px;
    }
}

@media (min-width: 1300px) {
    .extended-icon-item__icon {
        width: 112px;
    }
}

@media (min-width: 1500px) {
    .extended-icon-item__icon {
        width: 120px;
    }
}

@media (min-width: 1700px) {
    .extended-icon-item__icon {
        width: 132px;
    }
}

.extended-icon-item__description-container {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 8px 40px 8px;
    max-width: 240px;
    margin: 0 auto;
}

@media (min-width: 550px) {
    .extended-icon-item__description-container {
        padding: 0 16px;
    }
}

@media (min-width: 992px) {
    .extended-icon-item__description-container {
        padding: 32px 24px 0 24px;
    }
}

@media (min-width: 1300px) {
    .extended-icon-item__description-container {
        padding-top: 40px;
    }
}

@media (min-width: 1500px) {
    .extended-icon-item__description-container {
        max-width: 280px;
        padding-top: 56px;
    }
}

@media (min-width: 1700px) {
    .extended-icon-item__description-container {
        max-width: 300px;
        padding-top: 64px;
    }
}

.mockup-picture {
    height: 200px;
    border: 1px solid #000;
}

@media (min-width: 1100px) {
    .mockup-picture {
        height: 260px;
    }
}

@media (min-width: 768px) {
    .pictured-section__content-container {
        float: left;
        width: 40%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media (min-width: 1300px) {
    .pictured-section__content-container {
        padding: 0 40px 0 0;
    }
}

.pictured-section__picture-container {
    padding: 40px 0 0 0;
}

@media (min-width: 768px) {
    .pictured-section__picture-container {
        float: right;
        width: 60%;
        padding: 0 0 0 20px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.pictured-section__picture {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

@media (min-width: 768px) {
    .pictured-section__picture {
        width: auto;
    }
}

@media (min-width: 1700px) {
    .pictured-section__picture {
        max-height: 90vh;
    }
}

.extended-carousel {
    position: relative;
}

.extended-carousel__wrapper {
    position: relative;
    border: 1px solid #E5E5E5;
}

@media (min-width: 992px) {
    .extended-carousel__wrapper {
        border: 0;
    }
}

@media (min-width: 992px) {
    .extended-carousel__wrapper:before {
        content: '';
        display: block;
        top: 0;
        left: 0;
    }
}

.extended-carousel__controls-container {
    border-bottom: 1px solid #E5E5E5;
}

@media (min-width: 992px) {
    .extended-carousel__controls-container {
        /**position: absolute;
          top: 0;
          left: 0;**/
        width: 25%;
    }
}

.extended-carousel__controls-container--full-width {
    width: auto;
}

.extended-carousel__inner {
    padding: 0 0 32px 0;
}

.extended-carousel--with-space .extended-carousel__wrapper {
    padding: 40px 0 0 0;
}

.extended-carousel--with-space .extended-carousel__controls-container {
    border-bottom: 0;
    border-top: 1px solid #E5E5E5;
    margin: 0 0 0 auto;
}

@media (min-width: 992px) {
    .tables-group__table {
        float: left;
        width: 50%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.presentation-table {
    border: 1px solid #E5E5E5;
    border-top: 8px solid #009C3A;
}

@media (min-width: 768px) {
    .presentation-table {
        border-top-width: 12px;
    }
}

@media (min-width: 992px) {
    .presentation-table {
        border-left: 0;
        border-right: 0;
    }
}

.presentation-table__header {
    padding: 20px 12px;
}

@media (min-width: 480px) {
    .presentation-table__header {
        padding: 32px 20px;
    }
}

@media (min-width: 768px) {
    .presentation-table__header {
        padding: 60px 40px;
    }
}

@media (min-width: 992px) {
    .presentation-table__header {
        background: #fff;
        margin: 0 0 0 1px;
        padding: 60px 24px;
    }
}

@media (min-width: 1500px) {
    .presentation-table__header {
        padding: 60px 32px;
    }
}

@media (min-width: 1700px) {
    .presentation-table__header {
        padding: 72px 40px;
    }
}

.presentation-table__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 8;
}

.presentation-table__row:before {
    content: '';
    display: block;
    top: 0;
    left: 0;
}

.presentation-table__cell {
    padding: 24px 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .presentation-table__cell {
        padding: 32px 40px;
    }
}

@media (min-width: 992px) {
    .presentation-table__cell {
        padding: 32px 24px;
    }
}

@media (min-width: 1500px) {
    .presentation-table__cell {
        padding: 40px 32px;
    }
}

@media (min-width: 1700px) {
    .presentation-table__cell {
        padding: 40px;
    }
}

.presentation-table__cell--header {
    text-align: center;
}

.presentation-table__title-cell {
    width: 50%;
}

@media (min-width: 480px) {
    .presentation-table__title-cell {
        width: 40%;
    }
}

.presentation-table__content-cell {
    width: 50%;
}

@media (min-width: 480px) {
    .presentation-table__content-cell {
        width: 60%;
    }
}

.presentation-table__icon {
    margin: 0 auto;
    display: block;
}

.presentation-table__content {
    position: relative;
}

@media (min-width: 992px) {
    .presentation-table__content {
        background: #fff;
        margin: 0 0 0 1px;
    }
}

.presentation-table__content:before {
    content: '';
    display: block;
    position: absolute;
    background: #F8F8F8;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
}

@media (min-width: 480px) {
    .presentation-table__content:before {
        width: 40%;
    }
}

.presentation-table__content:after {
    content: '';
    display: block;
    left: 50%;
    top: 0;
}

@media (min-width: 480px) {
    .presentation-table__content:after {
        left: 40%;
    }
}

.grid-items {
    border: 1px solid #E5E5E5;
}

@media (min-width: 768px) {
    .grid-items {
        border-top: 0;
    }
}

@media (min-width: 992px) {
    .grid-items {
        border: 0;
    }
}

.grid-items__wrapper {
    position: relative;
}

@media (min-width: 650px) {
    .grid-items__wrapper:before {
        content: '';
        display: block;
        top: 0;
        left: 50%;
    }
}

@media (min-width: 992px) {
    .grid-items__wrapper:before {
        display: none;
    }
}

.grid-items__row {
    position: relative;
}

@media (min-width: 650px) {
    .grid-items__row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.grid-items__row:before {
    content: '';
    display: block;
    top: 0;
    left: 0;
}

.grid-items__row:first-child:before {
    display: none;
}

@media (min-width: 992px) {
    .grid-items__row:first-child:before {
        display: block;
    }
}

.grid-items__cell {
    padding: 40px 40px;
    position: relative;
}

@media (min-width: 650px) {
    .grid-items__cell {
        width: 50%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 48px 40px;
    }
}

@media (min-width: 992px) {
    .grid-items__cell {
        padding: 56px 40px;
    }
}

@media (min-width: 1700px) {
    .grid-items__cell {
        padding: 64px 48px;
    }
}

.grid-items__cell:before {
    content: '';
    display: block;
    top: 0;
    left: 0;
}

@media (min-width: 650px) {
    .grid-items__cell:before {
        display: none;
    }
}

.grid-items__cell:first-child:before {
    display: none;
}

.note-box {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.note-box__inner {
    padding: 16px 32px;
}

@media (min-width: 768px) {
    .note-box__inner {
        padding: 32px;
        text-align: left;
        margin: 0;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .note-box__inner {
        padding: 48px 40px;
    }
}

@media (min-width: 1700px) {
    .note-box__inner {
        padding: 64px 56px;
    }
}

.note-box__content {
    font-family: kanit, Arial, sans-serif;
    font-size: 16px;
}

@media (min-width: 1700px) {
    .note-box__content {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .note-box__button-container {
        border-top: 1px solid #E5E5E5;
    }
}

.infobox {
    background: #009C3A;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
}

.infobox:before {
    content: '';
    border-bottom: 24px solid transparent;
    border-left: 24px solid #009C3A;
    position: absolute;
    top: 100%;
    left: 0;
}

.infobox__inner {
    padding: 20px 24px;
    display: block;
    color: #fff;
}

.infobox__inner:hover {
    color: #fff;
}

.infobox__title {
    padding: 0 0 12px 0;
}

.horizontal-section {
    text-align: center;
}

@media (min-width: 1100px) {
    .horizontal-section {
        text-align: left;
    }
}

@media (min-width: 1100px) {
    .horizontal-section__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.horizontal-section__header {
    padding: 0 0 48px 0;
}

@media (min-width: 1100px) {
    .horizontal-section__header {
        padding: 0;
    }
}

@media (min-width: 1100px) {
    .horizontal-section__header-container {
        width: 40%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 20px 0 0;
    }
}

@media (min-width: 1300px) {
    .horizontal-section__header-container {
        width: 50%;
    }
}

@media (min-width: 1100px) {
    .horizontal-section__content-container {
        width: 60%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 0 0 20px;
    }
}

@media (min-width: 1300px) {
    .horizontal-section__content-container {
        width: 50%;
        padding-left: 0;
    }
}

@media (min-width: 1700px) {
    .horizontal-section__content-container {
        padding-left: 64px;
    }
}

.descripted-icon__container {
    /*@media (min-width: $rwd-768) {
    display: flex;
    justify-content: center;
    align-items: center;
    }*/
}

.descripted-icon__icon-container {
    padding: 0 0 20px 0;
    /*@media (min-width: $rwd-768) {
          padding: 0 32px 0 0;
          }
  
          @media (min-width: $rwd-1300) {
          padding-right: 48px;
          }*/
}

.descripted-icon__icon {
    width: 150px;
    display: block;
    margin: 0 auto;
}

@media (min-width: 1700px) {
    .descripted-icon__icon {
        width: 200px;
    }
}

.descripted-icon__row {
    padding: 32px 0 0 0;
}

@media (min-width: 768px) {
    .icon-subsection__container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .icon-subsection__icon-container {
        min-width: 240px;
    }
}

.icon-subsection__content-container {
    padding: 32px 0 0 0;
}

@media (min-width: 768px) {
    .icon-subsection__content-container {
        padding: 0 0 0 80px;
    }
}

@media (min-width: 1100px) {
    .icon-subsection__content-container {
        padding-left: 40px;
    }
}

@media (min-width: 1300px) {
    .icon-subsection__content-container {
        padding-left: 64px;
    }
}

@media (min-width: 1700px) {
    .icon-subsection__content-container {
        padding-left: 80px;
    }
}

.decorated-subsection {
    position: relative;
    padding: 20px 0 0 0;
}

@media (min-width: 768px) {
    .decorated-subsection {
        padding-top: 32px;
    }
}

.decorated-subsection:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 3px;
    background: #009C3A;
    margin: 0 0 0 -12px;
}

@media (min-width: 768px) {
    .decorated-subsection:before {
        left: 0;
        margin: 0;
    }
}

@media (min-width: 1500px) {
    .decorated-subsection:before {
        width: 32px;
        height: 4px;
    }
}

.decorated-subsection--light:before {
    background: #fff;
}

.tiles-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
}

.tiles-list>li:nth-child(n) .std-tile__wrapper:after,
.tiles-list>li:nth-child(n) .std-tile__wrapper:before {
    content: '';
    height: 1px;
    width: 100%;
    background: #E5E5E5;
    opacity: .7;
    position: absolute;
    top: 0;
    left: 0;
}

.tiles-list>li:nth-child(n) .std-tile__wrapper:before {
    top: -35px;
}

@media (min-width: 500px) {
    .tiles-list>li:nth-child(n) .std-tile__wrapper:after,
    .tiles-list>li:nth-child(n) .std-tile__wrapper:before {
        background: unset;
    }
    .tiles-list>li:nth-child(2n+1) .std-tile__wrapper:after,
    .tiles-list>li:nth-child(2n+1) .std-tile__wrapper:before {
        width: calc(200% + 80px);
        background: #E5E5E5;
    }
    .tiles-list>li:nth-child(2n+1):before {
        top: -50px;
    }
}

@media (min-width: 768px) {
    .tiles-list>li:nth-child(n) .std-tile__wrapper:after,
    .tiles-list>li:nth-child(n) .std-tile__wrapper:before {
        background: unset;
    }
    .tiles-list>li:nth-child(3n+1) .std-tile__wrapper:after,
    .tiles-list>li:nth-child(3n+1) .std-tile__wrapper:before {
        width: calc(300% + 120px);
        background: #E5E5E5;
    }
}

@media (min-width: 992px) {
    .tiles-list>li:nth-child(n) .std-tile__wrapper:after,
    .tiles-list>li:nth-child(n) .std-tile__wrapper:before {
        background: unset;
    }
    .tiles-list>li:nth-child(4n+1) .std-tile__wrapper:after,
    .tiles-list>li:nth-child(4n+1) .std-tile__wrapper:before {
        width: calc(400% + 160px);
        background: #E5E5E5;
    }
}

@media (min-width: 992px) and (min-width: 1700px) {
    .tiles-list>li:nth-child(4n+1) .std-tile__wrapper:after,
    .tiles-list>li:nth-child(4n+1) .std-tile__wrapper:before {
        width: calc(400% + 256px);
    }
}

.blog {
    padding: 0 40px;
}

@media (min-width: 380px) {
    .blog {
        padding: 0 80px;
    }
}

@media (min-width: 500px) {
    .blog {
        padding: 0;
    }
}

.blog-picture {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 56%;
    margin-bottom: 80px;
}

.diagonal-cell__inner-reverse {
    /*transform: skew(45deg);*/
}

.blog-title {
    max-width: 450px;
    margin-bottom: 50px;
}

.blog-gallery {
    border-top: 1px solid rgba(229, 229, 229, 0.5);
    padding: 50px 0;
}

.std-tile {
    display: block;
    padding-bottom: 32px;
    margin-top: 32px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.std-tile:first-child {
    margin-top: 10px;
}

@media (min-width: 500px) {
    .std-tile {
        width: calc(50% - 40px);
        padding-right: 40px;
    }
    .std-tile:first-child {
        margin-top: 10px;
    }
    .std-tile:nth-child(2) {
        margin-top: 10px;
    }
}

@media (min-width: 650px) {
    .std-tile:first-child {
        margin-top: 0;
    }
    .std-tile:nth-child(2) {
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .std-tile {
        padding-bottom: 50px;
        margin-top: 50px;
        width: calc(33.33% - 40px);
        padding-right: 40px;
    }
    .std-tile:nth-child(3) {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .std-tile {
        width: calc(25% - 40px);
        padding-right: 40px;
    }
    .std-tile:first-child {
        margin-top: 50px;
    }
    .std-tile:nth-child(2) {
        margin-top: 50px;
    }
    .std-tile:nth-child(3) {
        margin-top: 50px;
    }
}

@media (min-width: 1700px) {
    .std-tile {
        width: calc(25% - 64px);
        padding-right: 64px;
    }
}

.std-tile__wrapper {
    position: relative;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: block;
    width: 100%;
}

@media (min-width: 500px) {
    .std-tile__wrapper {
        width: 95%;
    }
}

@media (min-width: 600px) {
    .std-tile__wrapper {
        width: 100%;
    }
}

.std-tile--gallery {
    width: calc(100% - 40px);
    padding-right: 40px;
}

.std-tile--gallery .std-tile:after,
.std-tile--gallery .std-tile:before {
    display: none;
}

.std-tile__container {
    position: relative;
}

.std-tile__picture {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 100%;
}

.std-tile__description {
    margin-top: 25px;
}

.std-tile__read-more {
    background-color: rgba(0, 156, 58, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.std-tile__link {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
}

.std-tile__link:before {
    content: '';
    display: block;
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0;
}

.std-tile__link:hover {
    color: #fff;
}

.std-tile__link:hover:before {
    bottom: -4px;
    opacity: 1;
}

.std-tile__last {
    display: none;
}

@media (min-width: 992px) {
    .std-tile__last {
        display: block;
        padding: 0;
        width: 25%;
    }
    .std-tile__last .diagonal-cell__inner {
        opacity: 0;
    }
}

@media (min-width: 992px) and (min-width: 992px) {
    .std-tile__last .diagonal-cell__inner {
        opacity: 1;
        border-bottom: 1px solid rgba(229, 229, 229, 0.5);
    }
}

.std-tile:hover {
    color: #009C3A;
    cursor: pointer;
}

.std-tile:hover .std-tile__read-more {
    background-color: rgba(0, 156, 58, 0.5);
}

.std-tile:hover .std-tile__link {
    opacity: 1;
}

.std-tile:hover .std-tile__picture:before {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0;
}

.arrow-back {
    display: flex;
    content: '';
    cursor: pointer;
    border: 1px solid rgba(229, 229, 229, 0.5);
    position: absolute;
    top: -82px;
    left: 1px;
    height: 80px;
    width: 80px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 650px) {
    .arrow-back {
        top: -132px;
        left: -131px;
        height: 130px;
        width: 130px;
    }
}

.arrow-back__inner {
    background: url("../img/icons/arrow-back.svg") no-repeat center;
    height: 52px;
    width: 39px;
    display: block;
}


/* containers-end */


/***** MODULES *****/

@media (min-width: 768px) {
    .truncate-box,
    .blog-picture,
    .std-tile__picture {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .truncate-box:before,
    .blog-picture:before,
    .std-tile__picture:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        border-right: 24px solid transparent;
        border-top: 24px solid #009C3A;
        width: 0;
        z-index: 80;
    }
}

@media (min-width: 1300px) {
    .truncate-box:before,
    .blog-picture:before,
    .std-tile__picture:before {
        border-right-width: 32px;
        border-top-width: 32px;
    }
}

@media (min-width: 1700px) {
    .truncate-box:before,
    .blog-picture:before,
    .std-tile__picture:before {
        border-right-width: 40px;
        border-top-width: 40px;
    }
}

.truncate-box__wrapper {
    /*padding: 32px 40px;
  
          @media (min-width: $rwd-480) {
          padding: 40px 48px;
          }
  
          @media (min-width: $rwd-768) {
          padding: 32px 32px;
          }
  
          @media (min-width: $rwd-992) {
          padding: 32px 40px;
          }
  
          @media (min-width: $rwd-1100) {
          padding: 40px 40px;
          }
  
          @media (min-width: $rwd-1500) {
          padding: 40px 60px;
          }
  
          @media (min-width: $rwd-1700) {
          padding: 40px 80px;
          }*/
}

.truncate-box--inactive:before {
    display: none;
}

@media (min-width: 768px) {
    .truncate-box--a-bit-moved {
        margin-left: 1px;
    }
}

.truncate-box--spread {
    height: 100%;
}

.truncate-box--primary {
    background: #009C3A;
    color: #fff;
}

.truncate-box--primary:before {
    border-top-color: #fff;
}

.truncate-box--bigger:before,
.blog-picture:before {
    border-right-width: 50px;
    border-top-width: 50px;
}

@media (min-width: 768px) {
    .graphics-box {
        text-align: left;
    }
}

.graphics-box__wrapper {
    padding: 32px 40px;
}

@media (min-width: 480px) {
    .graphics-box__wrapper {
        padding: 40px 48px;
    }
}

@media (min-width: 768px) {
    .graphics-box__wrapper {
        padding: 32px 32px;
    }
}

@media (min-width: 992px) {
    .graphics-box__wrapper {
        padding: 32px 40px;
    }
}

@media (min-width: 1100px) {
    .graphics-box__wrapper {
        padding: 40px 40px;
    }
}

@media (min-width: 1300px) {
    .graphics-box__wrapper {
        padding: 40px 64px;
    }
}

@media (min-width: 1700px) {
    .graphics-box__wrapper {
        padding: 40px 100px;
    }
}

.graphics-box__header {
    padding: 0 0 32px 0;
}

@media (min-width: 480px) {
    .graphics-box__header {
        padding-bottom: 30px;
    }
}

@media (min-width: 768px) {
    .graphics-box__content-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
}

@media (min-width: 768px) {
    .graphics-box__graphics-container {
        padding: 0 16px 0 0;
        width: 75%;
    }
}

.graphics-box__graphics {
    display: block;
    max-width: 100%;
    width: 220px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .graphics-box__graphics {
        max-width: 100%;
        margin: 0;
    }
}

@media (min-width: 1100px) {
    .graphics-box__graphics {
        max-width: 80%;
    }
}

@media (min-width: 1300px) {
    .graphics-box__graphics {
        width: 240px;
    }
}

@media (min-width: 1500px) {
    .graphics-box__graphics {
        width: 260px;
    }
}

@media (min-width: 1700px) {
    .graphics-box__graphics {
        width: 300px;
    }
}

.graphics-box__button-container {
    padding: 32px 0 0 0;
}

@media (min-width: 480px) {
    .graphics-box__button-container {
        padding-top: 48px;
    }
}

.full-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.full-slide:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.full-slide__inner {
    padding: 40px 20px;
    margin: 0 10%;
    position: relative;
    z-index: 10;
}

.slide {
    position: relative;
    color: #fff;
}

.slide__wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0 0 65% 0;
}

.slide__layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -moz-background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%, rgba(0, 0, 0, 0.4) 100%);
    -webkit-background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%, rgba(0, 0, 0, 0.4) 100%);
    -o-background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%, rgba(0, 0, 0, 0.4) 100%);
    -ms-background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%, rgba(0, 0, 0, 0.4) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%, rgba(0, 0, 0, 0.4) 100%);
}

.slide__inner {
    padding: 32px 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .slide__inner {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .slide__inner {
        padding: 40px 32px;
    }
}

@media (min-width: 1500px) {
    .slide__inner {
        padding: 48px 40px;
    }
}

.slide__header {
    position: relative;
    padding: 0 0 16px 0;
}

@media (min-width: 992px) {
    .slide__header {
        max-width: 50%;
    }
}

@media (min-width: 1500px) {
    .slide__header {
        padding-bottom: 28px;
    }
}

.slide__header:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 24px;
    height: 3px;
    background: #fff;
    margin: 0 0 0 -12px;
}

@media (min-width: 768px) {
    .slide__header:before {
        left: 0;
        margin: 0;
    }
}

@media (min-width: 1500px) {
    .slide__header:before {
        width: 32px;
        height: 4px;
    }
}

.slide__title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

@media (min-width: 1100px) {
    .slide__title {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (min-width: 1500px) {
    .slide__title {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (min-width: 1700px) {
    .slide__title {
        font-size: 30px;
        line-height: 38px;
    }
}

.slide__wrapper-outer {
    vertical-align: bottom;
}

.slide__wrapper-outer>.slide__wrapper-inner {
    vertical-align: bottom;
}

.slide--square .slide__wrapper {
    padding-bottom: 100%;
}

.possible-narrow-section {
    max-width: 480px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .possible-narrow-section {
        max-width: 100%;
    }
}

.list-choice-field {
    display: block;
}

.list-choice-field__wrapper {
    padding: 8px 15px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    position: relative;
}

.list-choice-field__wrapper:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8010A7;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.list-choice-field__inner {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.list-choice-field__description {
    color: #000;
    font-size: 13px;
}

@media (min-width: 1700px) {
    .list-choice-field__description {
        font-size: 14px;
    }
}

.list-choice-field input {
    width: 0;
    height: 0;
    display: none;
}

.list-choice-field input:checked~.list-choice-field__wrapper:before {
    opacity: .08;
}

.list-choice-field input:checked~.list-choice-field__wrapper .list-choice-field__description {
    color: #8010A7;
    font-weight: 700;
}

.list-choice-field.error .list-choice-field__wrapper {
    border-color: #DB2B39;
}

.list-choice-field:hover {
    cursor: pointer;
}

.list-choice-field:hover .list-choice-field__wrapper:before {
    opacity: 0.08;
}

.common-dropdown {
    min-width: 180px;
}

.common-dropdown__list-container {
    padding: 10px 0;
    background: #fff;
    color: #000;
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #F2F2F2;
    text-align: left;
}

.common-dropdown__header {
    border: 1px solid #E5E5E5;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    text-align: center;
    position: relative;
    z-index: 5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .common-dropdown__header {
        text-align: left;
    }
}

.common-dropdown__header:before {
    content: '';
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    padding: 1px;
    -moz-background: -moz-linear-gradient(left, #8010A7 0, #D91E9D 100%, #D91E9D 100%);
    -webkit-background: -webkit-linear-gradient(left, #8010A7 0, #D91E9D 100%, #D91E9D 100%);
    -o-background: -o-linear-gradient(left, #8010A7 0, #D91E9D 100%, #D91E9D 100%);
    -ms-background: -ms-linear-gradient(left, #8010A7 0, #D91E9D 100%, #D91E9D 100%);
    background: linear-gradient(to right, #8010A7 0, #D91E9D 100%, #D91E9D 100%);
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.common-dropdown__header:hover {
    border-color: #8010A7;
}

.common-dropdown__header-inner {
    padding: 8px 40px 8px 15px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media (min-width: 480px) {
    .common-dropdown__header-inner {
        padding-right: 50px;
    }
}

.common-dropdown__title {
    font-size: 14px;
    font-weight: 300;
}

@media (min-width: 1300px) {
    .common-dropdown__title {
        font-size: 16px;
    }
}

.common-dropdown__icon-container {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 15px;
}

.common-dropdown__icon {
    position: relative;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    top: 2px;
}

.common-dropdown.dropdown--open .common-dropdown__header {
    border-color: #8010A7;
    background-color: rgba(255, 255, 255, 0.8);
}

.common-dropdown.dropdown--open .common-dropdown__icon {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.common-dropdown.dropdown--open .simple-extended-icon .simple-extended-icon__base-layer {
    opacity: 0;
}

.common-dropdown.dropdown--open .simple-extended-icon .simple-extended-icon__above-layer {
    opacity: 1;
}

.common-dropdown.dropdown--filled .common-dropdown__header {
    border-color: transparent;
}

.common-dropdown.dropdown--filled .common-dropdown__header:before {
    opacity: 1;
}

.common-dropdown.dropdown--filled .common-dropdown__header-inner {
    background: #fff;
}

.common-dropdown.error .common-dropdown__header {
    border-color: #DB2B39;
}

.common-dropdown--light .common-dropdown__header {
    border-color: #fff;
}

.common-dropdown--light.dropdown--open {
    color: #000;
}

.common-dropdown--light.dropdown--open .common-dropdown__header {
    background: #fff;
}

.common-dropdown--light.dropdown--filled .common-dropdown__header {
    color: #000;
}

.simple-dropdown {
    max-width: 300px;
}

.simple-dropdown__header {
    padding: 4px 40px 4px 15px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    text-align: right;
    position: relative;
    z-index: 5;
}

@media (min-width: 480px) {
    .simple-dropdown__header {
        padding-right: 50px;
    }
}

.simple-dropdown__header:hover {
    border-color: #8010A7;
}

.simple-dropdown__title {
    font-size: 14px;
    font-weight: 300;
}

@media (min-width: 1300px) {
    .simple-dropdown__title {
        font-size: 16px;
    }
}

.simple-dropdown__icon-container {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 15px;
}

.simple-dropdown__list-container {
    width: 300px;
    left: auto;
    right: 0;
}

.simple-dropdown__icon {
    position: relative;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    top: 2px;
}

.simple-dropdown.dropdown--open .simple-dropdown__icon {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.simple-dropdown.dropdown--open .simple-extended-icon .simple-extended-icon__base-layer {
    opacity: 0;
}

.simple-dropdown.dropdown--open .simple-extended-icon .simple-extended-icon__above-layer {
    opacity: 1;
}

.simple-dropdown--wider .simple-dropdown__list-container {
    width: 400px;
}

.spectacular-dropdown-list>li {
    display: block;
}

.ajax-items-manager__header {
    padding: 0 0 30px 0;
    position: relative;
}

.ajax-items-manager__header-extra-content {
    position: absolute;
    bottom: 0;
    right: 0;
}

.ajax-items-manager__content-container {
    position: relative;
    min-height: 300px;
}

.ajax-items-manager__content {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.ajax-items-manager__loading-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.categorized-items__categories-container {
    padding: 0 0 40px 0;
}

@media (min-width: 768px) {
    .categorized-items__categories-container {
        padding-bottom: 60px;
    }
}

.categorized-items__content-container {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.categorized-items__button-container {
    padding: 20px 0 0 0;
    text-align: center;
}

.icon-label {
    font-size: 14px;
    line-height: 22px;
    position: relative;
    display: block;
}

@media (min-width: 1500px) {
    .icon-label {
        font-size: 16px;
        line-height: 24px;
    }
}

.icon-label__container {
    position: relative;
}

@media (min-width: 768px) {
    .icon-label__container {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

@media (min-width: 768px) {
    .icon-label__content-container {
        padding: 2px 0 0 0;
    }
}

@media (min-width: 1500px) {
    .icon-label__content-container {
        padding-top: 4px;
    }
}

.icon-label__icon-container {
    padding: 0 0 8px 0;
}

@media (min-width: 768px) {
    .icon-label__icon-container {
        padding: 0 8px 0 0;
        /**position: absolute;
          top: -2px;
          left: 0;
          width: 28px;**/
    }
}

.icon-label__icon {
    display: block;
    margin: 0 auto;
    width: 28px;
    height: 28px;
}

@media (min-width: 768px) {
    .icon-label__icon {
        margin: 0;
    }
}

@media (min-width: 1500px) {
    .icon-label__icon {
        width: 32px;
        height: 32px;
    }
}

.justify-label {
    font-size: 14px;
    line-height: 22px;
    position: relative;
}

@media (min-width: 768px) {
    .justify-label {
        padding: 0 0 0 64px;
    }
}

@media (min-width: 1500px) {
    .justify-label {
        font-size: 16px;
        line-height: 24px;
    }
}

.justify-label__header {
    font-weight: 700;
    padding: 0 0 4px 0;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .justify-label__header {
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
    }
}

.color-sample__core {
    border-right: 24px solid transparent;
    border-top: 24px solid #000;
    width: 0;
    margin: 0 auto;
}

@media (min-width: 1300px) {
    .color-sample__core {
        border-right-width: 32px;
        border-top-width: 32px;
    }
}

@media (min-width: 1700px) {
    .color-sample__core {
        border-right-width: 40px;
        border-top-width: 40px;
    }
}

.color-sample--graphite .color-sample__core {
    border-top-color: #9CA2A5;
}

.placeholder {
    border: 1px solid #009C3A;
    margin: 0 auto;
}

.placeholder--horizontal {
    width: 128px;
    height: 64px;
    max-width: 100%;
}

@media (min-width: 1700px) {
    .placeholder--horizontal {
        width: 148px;
        height: 80px;
    }
}

.vertical-cell__wrapper {
    position: relative;
    padding: 0 0 40% 0;
}

.vertical-cell__wrapper:before {
    content: '';
    display: block;
    left: 50%;
}

.product {
    position: relative;
    background: #F8F8F8;
    height: 100%;
}

@media (min-width: 768px) {
    .product {
        text-align: left;
        margin: 0 0 0 1px;
    }
}

@media (min-width: 768px) {
    .product:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        border-right: 24px solid transparent;
        border-top: 24px solid #fff;
        width: 0;
        z-index: 80;
    }
}

@media (min-width: 1300px) {
    .product:before {
        border-right-width: 32px;
        border-top-width: 32px;
    }
}

@media (min-width: 1700px) {
    .product:before {
        border-right-width: 40px;
        border-top-width: 40px;
    }
}

.product__wrapper {
    padding: 32px 20px;
}

@media (min-width: 992px) {
    .product__wrapper {
        padding: 32px;
    }
}

@media (min-width: 1100px) {
    .product__wrapper {
        padding: 40px;
    }
}

@media (min-width: 1500px) {
    .product__wrapper {
        padding: 48px 60px;
    }
}

@media (min-width: 1700px) {
    .product__wrapper {
        padding: 64px 72px;
    }
}

.product__picture-container {
    padding: 0 0 16px 0;
}

@media (min-width: 1700px) {
    .product__picture-container {
        padding-bottom: 32px;
    }
}

.product__picture {
    display: block;
    margin: 0 auto;
    width: 160px;
}

@media (min-width: 1500px) {
    .product__picture {
        width: 180px;
    }
}

@media (min-width: 1700px) {
    .product__picture {
        width: 200px;
    }
}

.grid {
    max-width: 320px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid {
        max-width: 100%;
    }
}

.grid__wrapper {
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .grid__wrapper {
        border: 1px solid #E5E5E5;
    }
}

@media (min-width: 992px) {
    .grid__wrapper {
        border-left: 0;
        border-right: 0;
    }
}

.grid__item {
    padding: 20px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .grid__item {
        width: 33.33%;
        padding: 9px;
    }
}

@media (min-width: 1100px) {
    .grid__item {
        padding: 12px;
    }
}

@media (min-width: 1700px) {
    .grid__item {
        padding: 15px;
    }
}

.grid__item:nth-child(1) {
    padding-left: 0;
    padding-right: 12px;
}

@media (min-width: 1100px) {
    .grid__item:nth-child(1) {
        padding-right: 16px;
    }
}

@media (min-width: 1700px) {
    .grid__item:nth-child(1) {
        padding-right: 20px;
    }
}

.grid__item:nth-child(2) {
    padding-left: 6px;
    padding-right: 6px;
}

@media (min-width: 1100px) {
    .grid__item:nth-child(2) {
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (min-width: 1700px) {
    .grid__item:nth-child(2) {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.grid__item:nth-child(3) {
    padding-left: 12px;
    padding-right: 0;
}

@media (min-width: 1100px) {
    .grid__item:nth-child(3) {
        padding-left: 16px;
    }
}

@media (min-width: 1700px) {
    .grid__item:nth-child(3) {
        padding-left: 20px;
    }
}

.grid__row {
    position: relative;
}

@media (min-width: 768px) {
    .grid__row {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
    }
}

@media (min-width: 768px) {
    .grid__row:before,
    .grid__row:after {
        content: '';
        display: block;
    }
}

@media (min-width: 768px) {
    .grid__row:before {
        top: 8px;
    }
}

@media (min-width: 1100px) {
    .grid__row:before {
        top: 11px;
    }
}

@media (min-width: 1700px) {
    .grid__row:before {
        top: 14px;
    }
}

@media (min-width: 768px) {
    .grid__row:after {
        top: auto;
        bottom: 8px;
    }
}

@media (min-width: 1100px) {
    .grid__row:after {
        bottom: 11px;
    }
}

@media (min-width: 1700px) {
    .grid__row:after {
        bottom: 14px;
    }
}

.grid__row:first-child:before {
    display: none;
}

@media (min-width: 768px) {
    .grid__row:first-child .grid__item {
        padding-top: 0;
    }
}

.grid__row:last-child:after {
    display: none;
}

@media (min-width: 768px) {
    .grid__row:last-child .grid__item {
        padding-bottom: 0;
    }
}

@media (min-width: 768px) {
    .grid__decoration {
        display: block;
    }
}

@media (min-width: 768px) {
    .grid__decoration--01 {
        left: 33.33%;
        margin: 0 0 0 -12px;
    }
}

@media (min-width: 1100px) {
    .grid__decoration--01 {
        margin-left: -16px;
    }
}

@media (min-width: 1700px) {
    .grid__decoration--01 {
        margin-left: -20px;
    }
}

@media (min-width: 768px) {
    .grid__decoration--02 {
        left: 33.33%;
        margin: 0 0 0 6px;
    }
}

@media (min-width: 1100px) {
    .grid__decoration--02 {
        margin-left: 8px;
    }
}

@media (min-width: 1700px) {
    .grid__decoration--02 {
        margin-left: 10px;
    }
}

@media (min-width: 768px) {
    .grid__decoration--03 {
        left: 66.66%;
        margin: 0 0 0 -6px;
    }
}

@media (min-width: 1100px) {
    .grid__decoration--03 {
        margin-left: -8px;
    }
}

@media (min-width: 1700px) {
    .grid__decoration--03 {
        margin-left: -10px;
    }
}

@media (min-width: 768px) {
    .grid__decoration--04 {
        left: 66.66%;
        margin: 0 0 0 12px;
    }
}

@media (min-width: 1100px) {
    .grid__decoration--04 {
        margin-left: 16px;
    }
}

@media (min-width: 1700px) {
    .grid__decoration--04 {
        margin-left: 20px;
    }
}

.descripted-tile__picture-container {
    padding: 0 0 32px 0;
}

@media (min-width: 768px) {
    .descripted-tile__picture-container {
        max-width: 70%;
    }
}

@media (min-width: 992px) {
    .descripted-tile__picture-container {
        max-width: 390px;
    }
}

@media (min-width: 1700px) {
    .descripted-tile__picture-container {
        max-width: 90%;
    }
}

@media (min-width: 650px) {
    .descripted-tile__content {
        padding: 0 16px;
    }
}

.image-space {
    background: #F8F8F8;
}

.side-icon-section {
    border: 1px solid #E5E5E5;
}

@media (min-width: 992px) {
    .side-icon-section {
        border: 0;
        border-top: 1px solid #E5E5E5;
        border-bottom: 1px solid #E5E5E5;
    }
}

@media (min-width: 768px) {
    .side-icon-section__container {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
    }
}

.side-icon-section__icon-container {
    padding: 20px;
    border-bottom: 1px solid #E5E5E5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .side-icon-section__icon-container {
        border: 0;
        border-right: 1px solid #E5E5E5;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .side-icon-section__icon-container {
        border: 0;
    }
}

@media (min-width: 1100px) {
    .side-icon-section__icon-container {
        padding: 40px;
    }
}

@media (min-width: 1500px) {
    .side-icon-section__icon-container {
        padding: 48px 64px;
    }
}

.side-icon-section__icon {
    margin: 0 auto;
    max-width: 180px;
    display: block;
}

@media (min-width: 1100px) {
    .side-icon-section__icon {
        max-width: 220px;
    }
}

.side-icon-section__content-container {
    background: #F8F8F8;
    padding: 32px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .side-icon-section__content-container {
        width: 50%;
    }
}

@media (min-width: 1100px) {
    .side-icon-section__content-container {
        padding: 40px;
    }
}

@media (min-width: 1500px) {
    .side-icon-section__content-container {
        padding: 48px 64px;
    }
}


/** modules-end **/


/***** GOOGLE MAP *****/

.googlemap-container {
    position: relative;
}

@media (min-width: 768px) {
    .googlemap-container {
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (min-width: 1300px) {
    .googlemap-container {
        max-width: 100%;
    }
}

.googlemap-container__map-layer {
    padding: 0 0 100% 0;
    overflow: hidden;
    position: relative;
}

.googlemap-container__map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
}

@media (min-width: 768px) {
    .googlemap-container__layer {
        position: relative;
        z-index: 50;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        width: 50%;
        background: rgba(255, 255, 255, 0.8);
    }
}

.googlemap-container .zoom-panel {
    position: absolute;
    top: 20px;
    left: 20px;
}

.googlemap-container .zoom-panel__item {
    padding: 0 0 20px 0;
}

.googlemap-container .zoom-panel__item:last-child {
    padding-bottom: 0;
}

.googlemap-container .zoom-panel__zoom-in {
    cursor: pointer;
}

.googlemap-container .zoom-panel__zoom-out {
    cursor: pointer;
}


/***** FORMS *****/

.failure {
    color: #DB2B39;
}

.success {
    color: #090;
}

.choice-section {
    text-align: left;
}

.choice-section__wrapper {
    padding: 20px 0;
}

.choice-section__description {
    display: inline-block;
    vertical-align: middle;
    color: #8010A7;
}

@media (min-width: 1800px) {
    .choice-section__description {
        font-size: 20px;
    }
}

.choice-section__list-container {
    display: inline-block;
    vertical-align: middle;
    width: 220px;
}

@media (min-width: 1800px) {
    .choice-section__list-container {
        width: 250px;
    }
}

.dropdown-choice-field {
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: block;
}

.dropdown-choice-field:hover,
.dropdown-choice-field:focus {
    background: #F8F8F8;
}

.dropdown-choice-field input {
    display: none;
}

.dropdown-choice-field .dropdown-choice-field__inner {
    position: relative;
    padding: 5px 10px;
}

.dropdown-choice-field .dropdown-choice-field__inner .dropdown-choice-field__field-container {
    border: 1px solid #000;
    position: absolute;
    top: 0;
    left: 0;
}

.dropdown-choice-field .dropdown-choice-field__inner .dropdown-choice-field__field {
    width: 15px;
    height: 15px;
}

.dropdown-choice-field input[type="checkbox"]:checked+.dropdown-choice-field__inner .dropdown-choice-field__field,
.dropdown-choice-field input[type="radio"]:checked+.choice-field__inner .dropdown-choice-field__field {
    background: #222222;
}

.dropdown-choice-field--radio .dropdown-choice-field__field-container {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.dropdown-choice-field--radio .dropdown-choice-field__field {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.spectacular-choice-field {
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: block;
    position: relative;
}

.spectacular-choice-field:hover,
.spectacular-choice-field:focus {
    color: #fff;
}

.spectacular-choice-field:hover .spectacular-choice-field__wrapper:before,
.spectacular-choice-field:focus .spectacular-choice-field__wrapper:before {
    opacity: 1;
}

.spectacular-choice-field input {
    display: none;
}

.spectacular-choice-field__wrapper {
    position: relative;
    padding: 10px 10px;
}

.spectacular-choice-field__wrapper:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -moz-background: -moz-linear-gradient(left, #D91E9D 0, #8010A7 100%, #8010A7 100%);
    -webkit-background: -webkit-linear-gradient(left, #D91E9D 0, #8010A7 100%, #8010A7 100%);
    -o-background: -o-linear-gradient(left, #D91E9D 0, #8010A7 100%, #8010A7 100%);
    -ms-background: -ms-linear-gradient(left, #D91E9D 0, #8010A7 100%, #8010A7 100%);
    background: linear-gradient(to right, #D91E9D 0, #8010A7 100%, #8010A7 100%);
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.spectacular-choice-field__inner {
    position: relative;
    z-index: 5;
}

.spectacular-choice-field input[type="checkbox"]:checked+.spectacular-choice-field__wrapper,
.spectacular-choice-field input[type="radio"]:checked+.spectacular-choice-field__wrapper {
    color: #fff;
}

.spectacular-choice-field input[type="checkbox"]:checked+.spectacular-choice-field__wrapper:before,
.spectacular-choice-field input[type="radio"]:checked+.spectacular-choice-field__wrapper:before {
    opacity: 1;
}

.spectacular-choice-field--radio .spectacular-choice-field__field-container {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.spectacular-choice-field--radio .spectacular-choice-field__field {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.spectacular-dropdown-list {
    background: #F2F2F2;
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.dropdowns-list>li {
    display: block;
    padding: 4px 0;
}

.dropdown-item-description {
    padding: 15px 0 0 0;
    font-size: 12px;
}

.spinner {
    font-size: 20px;
    color: #C4C4C4;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.spinner--large {
    font-size: 40px;
}

.spinner--huge {
    font-size: 40px;
}

.spinner--light {
    color: #fff;
}

.form {
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .form {
        margin: 0;
    }
}

@media (min-width: 1700px) {
    .form {
        max-width: 480px;
    }
}

.form__wrapper {
    border: 0;
}

.form__header {
    padding: 0 0 20px 0;
}

@media (min-width: 480px) {
    .form__header {
        padding-bottom: 30px;
    }
}

.form__field-container {
    padding: 10px 0;
}

.form__info-container {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 0 0 0;
}

.form__info {
    text-align: left;
}

.form__button-container {
    padding: 20px 0 0 0;
}

@media (min-width: 480px) {
    .form__button-container {
        padding-top: 40px;
    }
}

.form__bottom-row {
    padding: 24px 0 0 0;
}

.form--narrow {
    max-width: 300px;
    margin: 0 auto;
}

.form-field {
    display: block;
}

.form-field__wrapper {
    position: relative;
    padding: 4px 0;
    display: block;
}

@media (min-width: 480px) {
    .form-field__wrapper {
        padding: 6px 0;
    }
}

.form-field__inner {
    position: relative;
}

.form-field__decoration {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: #000;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.form-field__header {
    padding: 0 0 5px 0;
    text-align: left;
}

@media (min-width: 420px) {
    .form-field__header {
        padding: 0 0 8px 0;
    }
}

@media (min-width: 768px) {
    .form-field__header {
        text-align: left;
    }
}

.form-field__title {
    color: #000;
    position: relative;
    font-weight: 700;
    font-size: 14px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.form-field__core {
    display: block;
    padding: 8px 0;
    width: 100%;
    margin: 0;
    -webkit-appearance: none;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    color: #000;
    position: relative;
    font-size: 14px;
    text-align: left;
    z-index: 5;
    font-family: "work-sans", sans-serif;
    font-weight: 300;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.form-field__core:focus {
    border-color: #D6C0B3;
}

.form-field__core:focus~.form-field__decoration {
    background: #000;
}

.form-field__core::-webkit-input-placeholder {
    color: #000;
    font-weight: 300;
    opacity: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .form-field__core::-webkit-input-placeholder {
        text-align: left;
    }
}

.form-field__core:-moz-placeholder {
    color: #000;
    font-weight: 300;
    opacity: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .form-field__core:-moz-placeholder {
        text-align: left;
    }
}

.form-field__core::-moz-placeholder {
    color: #000;
    font-weight: 300;
    opacity: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .form-field__core::-moz-placeholder {
        text-align: left;
    }
}

.form-field__core:-ms-input-placeholder {
    color: #000;
    font-weight: 300;
    opacity: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .form-field__core:-ms-input-placeholder {
        text-align: left;
    }
}

.form-field.focus .form-field__title {
    color: #8010A7;
}

.form-field.error .form-field__inner:before {
    opacity: 1;
}

.form-field.error .form-field__title {
    color: #DB2B39;
}

.form-field.error .form-field__core {
    border-color: #DB2B39;
}

.form-field--blank .form-field__core {
    border-color: transparent;
}

.form-field--light .form-field__decoration {
    background: #fff;
}

.form-field--light .form-field__title {
    color: #fff;
}

.form-field--light .form-field__core {
    color: #fff;
}

.form-field--light .form-field__core:focus~.form-field__decoration {
    background: #fff;
}

.form-field--light .form-field__core::-webkit-input-placeholder {
    color: #fff;
}

.form-field--light .form-field__core:-moz-placeholder {
    color: #fff;
}

.form-field--light .form-field__core::-moz-placeholder {
    color: #fff;
}

.form-field--light .form-field__core:-ms-input-placeholder {
    color: #fff;
}

.form-field--light.focus .form-field__title {
    color: #fff;
}

.form-field.error .form-field__inner:before {
    opacity: 1;
}

.form-field--textarea .form-field__core {
    min-height: 80px;
    resize: vertical;
}

@media (min-width: 650px) {
    .form-field--textarea .form-field__core {
        min-height: 100px;
    }
}

@media (min-width: 1800px) {
    .form-field--textarea .form-field__core {
        min-height: 140px;
    }
}

.form-field--textarea.form-field--low .form-field__core {
    height: 70px;
}

@media (min-width: 420px) {
    .form-field--textarea.form-field--low .form-field__core {
        height: 90px;
    }
}

@media (min-width: 650px) {
    .form-field--textarea.form-field--low .form-field__core {
        height: 120px;
    }
}

.form-field--textarea.form-field--flat .form-field__core {
    height: 70px;
}

@media (min-width: 420px) {
    .form-field--textarea.form-field--flat .form-field__core {
        height: 80px;
    }
}

.form-field--textarea.error .form-field__core {
    border-color: #DB2B39;
}

.form-field--select .form-field__core {
    color: #222222;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1;
    text-align: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    /* Removes default arrow from firefox*/
    text-overflow: "";
}

.form-field--select .form-field__inner:after {
    content: '';
    display: block;
    border-top: 7px solid #222222;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    top: 50%;
    right: 20px;
    margin: -3px 0 0 0;
    z-index: 20;
}

.form-field--file input {
    display: none;
}

.form-field--file .form-field__inner {
    position: relative;
}

.form-field--file .form-field__description {
    color: #222222;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1;
    text-align: left;
}

.form-field--file .form-field__icon-container {
    position: absolute;
    top: 0;
    right: 10px;
    height: 100%;
    z-index: 10;
}

@media (min-width: 1100px) {
    .form-field--file .form-field__icon-container {
        display: none;
    }
}

@media (min-width: 1300px) {
    .form-field--file .form-field__icon-container {
        display: block;
    }
}

.form-field--file .form-field__icon {
    display: block;
    width: 20px;
    height: 20px;
}

.single-checkbox__inner {
    padding: 0 0 0 32px;
    position: relative;
    text-align: left;
}

.single-checkbox__description {
    font-size: 11px;
    line-height: 17px;
    font-weight: 400;
    padding: 0;
}

@media (min-width: 1800px) {
    .single-checkbox__description {
        font-size: 12px;
        line-height: 18px;
    }
}

.single-checkbox__description p {
    padding: 3px 0;
}

.single-checkbox__description p:first-child {
    padding-top: 0;
}

.single-checkbox__description p:last-child {
    padding-bottom: 0;
}

.single-checkbox__field-container {
    position: absolute;
    top: 0;
    left: 0;
}

.single-checkbox__link {
    font-weight: 700;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.single-checkbox__link:hover {
    text-decoration: underline;
}

.choice-field {
    display: block;
    width: 16px;
    height: 16px;
}

.choice-field__wrapper {
    padding: 2px;
    border: 1px solid #E5E5E5;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.choice-field__inner {
    width: 10px;
    height: 10px;
    background: #D6C0B3;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.choice-field input {
    width: 0;
    height: 0;
    display: none;
}

.choice-field input:checked~.choice-field__wrapper .choice-field__inner {
    opacity: 1;
}

.choice-field.error .choice-field__wrapper {
    border-color: #DB2B39;
}

.choice-field--radio .choice-field__wrapper {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 0;
}

.choice-field--radio .choice-field__inner {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 14px;
    height: 14px;
}

.choice-field--small {
    width: 12px;
    height: 12px;
}

.choice-field--small .choice-field__inner {
    width: 6px;
    height: 6px;
}

.choice-field--radio.choice-field--small .choice-field__inner {
    width: 10px;
    height: 10px;
}

.choice-field--light .choice-field__wrapper {
    border-color: #fff;
}

.choice-field--light .choice-field__inner {
    background: #fff;
}

.single-choice-field {
    text-align: left;
    font-size: 16px;
}

.single-choice-field__container {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.single-choice-field__field-container {
    padding: 0 10px 0 0;
}

.horizontal-radio-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.horizontal-radio-group__item {
    padding: 0 10px;
}

.horizontal-radio-group__item:first-child {
    padding-left: 0;
}

.horizontal-radio-group__item:last-child {
    padding-right: 0;
}

.horizontal-form__wrapper {
    border: 0;
    display: block;
}

.horizontal-form__container {
    position: relative;
}

@media (min-width: 992px) {
    .horizontal-form__container {
        padding: 0 66.66% 0 0;
    }
}

@media (min-width: 1500px) {
    .horizontal-form__container {
        padding-right: 60%;
    }
}

@media (min-width: 992px) {
    .horizontal-form__content-container {
        position: absolute;
        top: 0;
        right: 0;
        width: 66.66%;
        height: 100%;
    }
}

@media (min-width: 1500px) {
    .horizontal-form__content-container {
        width: 60%;
    }
}

.horizontal-form__header {
    padding: 0 0 20px 0;
}

@media (min-width: 992px) {
    .horizontal-form__header {
        /**position: absolute;
        top: 0;
        left: 0;
        width: 25%;
        height: 100%;**/
        text-align: left;
        padding: 0;
        min-height: 38px;
        line-height: 38px;
    }
}

@media (min-width: 992px) {
    .horizontal-form__title {
        text-align: left;
    }
}

.horizontal-form__row {
    padding: 10px 0;
    text-align: center;
}

@media (min-width: 992px) {
    .horizontal-form__row {
        text-align: right;
    }
}

.horizontal-form__row:first-child {
    padding-top: 0;
}

.horizontal-form__row:last-child {
    padding-bottom: 0;
}

.horizontal-form__field-container {
    padding: 10px 0;
    max-width: 250px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 480px) {
    .horizontal-form__field-container {
        display: inline-block;
        vertical-align: middle;
        padding: 0 10px;
        margin: 0 0 0 -4px;
        width: 50%;
    }
}

@media (min-width: 480px) {
    .horizontal-form__field-container {
        padding: 0 15px;
    }
}

@media (min-width: 768px) {
    .horizontal-form__field-container {
        width: 38%;
    }
}

@media (min-width: 992px) {
    .horizontal-form__field-container {
        padding: 0 10px;
        width: 35%;
    }
}

@media (min-width: 1300px) {
    .horizontal-form__field-container {
        width: 38%;
    }
}

.horizontal-form__button-container {
    padding: 20px 0 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .horizontal-form__button-container {
        display: inline-block;
        vertical-align: middle;
        padding: 0 0 0 15px;
        margin: 0 0 0 -4px;
        width: 26%;
    }
}

@media (min-width: 1300px) {
    .horizontal-form__button-container {
        width: 24%;
    }
}

@media (min-width: 1700px) {
    .horizontal-form--one-column .horizontal-form__container {
        padding-right: 50%;
    }
}

@media (min-width: 1700px) {
    .horizontal-form--one-column .horizontal-form__content-container {
        width: 50%;
    }
}

@media (min-width: 480px) {
    .horizontal-form--one-column .horizontal-form__field-container {
        display: block;
        width: 250px;
        margin: 0 auto;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .horizontal-form--one-column .horizontal-form__field-container {
        display: inline-block;
        padding: 0 10px;
        width: 70%;
        margin: 0 0 0 -4px;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .horizontal-form--one-column .horizontal-form__button-container {
        display: inline-block;
        width: 30%;
    }
}


/***** FOOTER *****/

.site-footer {
    text-align: center;
    background: #009C3A;
    color: #fff;
    position: relative;
    z-index: 10;
}

@media (min-width: 992px) {
    .site-footer {
        text-align: left;
    }
}

.site-footer__wrapper {
    position: relative;
    padding: 40px 0;
}

@media (min-width: 1300px) {
    .site-footer__wrapper {
        padding: 48px 0 32px 0;
    }
}

.site-footer__layer {
    padding: 0 20px;
}

@media (min-width: 480px) {
    .site-footer__layer {
        padding: 0 40px;
    }
}

@media (min-width: 768px) {
    .site-footer__layer {
        padding: 0 60px;
    }
}

@media (min-width: 992px) {
    .site-footer__layer {
        padding: 0 32px;
    }
}

@media (min-width: 1300px) {
    .site-footer__layer {
        padding: 0 64px;
    }
}

@media (min-width: 1500px) {
    .site-footer__layer {
        padding: 0 100px;
    }
}

@media (min-width: 1700px) {
    .site-footer__layer {
        padding: 0 120px;
    }
}

.site-footer__inner {
    position: relative;
    z-index: 5;
}

.site-footer__main-container>.column {
    float: none;
    width: auto;
    padding: 10px 0;
}

@media (min-width: 992px) {
    .site-footer__main-container>.column {
        float: left;
        width: 25%;
        padding: 0 20px 0 0;
    }
}

@media (min-width: 992px) {
    .site-footer__main-container .site-footer__logo-container {
        width: 20%;
        padding: 20px 0 0 0;
    }
}

.site-footer__main-container .site-footer__menu-container {
    padding: 32px 0 0 0;
}

@media (min-width: 992px) {
    .site-footer__main-container .site-footer__menu-container {
        padding: 0;
        width: 80%;
    }
}

.site-footer__second-row {
    padding: 32px 0 0 0;
}

@media (min-width: 768px) {
    .site-footer__second-row {
        padding-top: 48px;
    }
}

@media (min-width: 992px) {
    .site-footer__second-row {
        padding: 32px 0 0 20%;
    }
}

@media (min-width: 1700px) {
    .site-footer__second-row {
        padding-top: 48px;
    }
}

.site-footer__second-container>.column {
    float: none;
    width: auto;
    padding: 0;
}

@media (min-width: 992px) {
    .site-footer__second-container>.column {
        float: left;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .site-footer__second-container>.site-footer__additional-info-container {
        float: left;
        padding: 6px 0 0 0;
    }
}

@media (min-width: 1700px) {
    .site-footer__second-container>.site-footer__additional-info-container {
        padding-top: 2px;
    }
}

.site-footer__second-container>.site-footer__created-by-container {
    padding: 48px 0 0 0;
}

@media (min-width: 992px) {
    .site-footer__second-container>.site-footer__created-by-container {
        text-align: right;
        float: right;
        padding: 0;
    }
}

@media (min-width: 1700px) {
    .site-footer__second-container>.site-footer__created-by-container {
        padding-top: 0;
    }
}

.site-footer__content {
    position: relative;
    z-index: 2;
}

.site-footer__logo {
    margin: 0 auto;
}

@media (min-width: 992px) {
    .site-footer__logo {
        margin: 0;
    }
}

.site-footer__copyright {
    text-align: center;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .site-footer__copyright {
        text-align: left;
        margin: 0;
    }
}

.created-by {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 992px) {
    .created-by__description {
        display: inline-block;
        vertical-align: middle;
        padding: 2px 10px 0 0;
    }
}

.created-by__author {
    padding: 10px 0 0 0;
}

@media (min-width: 992px) {
    .created-by__author {
        display: inline-block;
        vertical-align: middle;
        padding: 0;
    }
}

.created-by__logo {
    margin: 0 auto;
}

@media (min-width: 992px) {
    .created-by__logo {
        margin: 0 0 0 auto;
    }
}

.copyright {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 1px;
}


/***** BUTTONS ******/

.downwards-button {
    display: block;
    background: #009C3A;
    width: 120px;
    height: 40px;
}

@media (min-width: 650px) {
    .downwards-button {
        width: 160px;
        height: 50px;
    }
}

.downwards-button__icon {
    margin: 0 auto;
}

.downwards-button--spread {
    min-height: 100%;
}

.button-container {
    text-align: center;
    clear: both;
    padding: 40px 5px 0 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .button-container {
        text-align: left;
    }
}

@media (min-width: 1300px) {
    .button-container {
        padding-top: 64px;
    }
}

@media (min-width: 768px) {
    .button-container--type-02 {
        text-align: right;
    }
}

@media (min-width: 768px) {
    .button-container--type-03 {
        text-align: center;
    }
}

.button-container--plain {
    padding-top: 0;
}

.more-content-button {
    display: none;
}

.button-wrapper {
    display: inline-block;
    position: relative;
}

.button-wrapper__inner {
    position: relative;
}

.button-wrapper__spinner {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    padding: 0 0 0 10px;
    -webkit-transform: translateZ(0);
    z-index: 2;
    text-align: center;
}

.plain-button {
    font-size: 14px;
    color: #009C3A;
    font-weight: 700;
}

@media (min-width: 1500px) {
    .plain-button {
        font-size: 16px;
    }
}

.plain-button:hover,
.plain-button:focus {
    color: #000;
}

.simple-button-with-icon {
    display: inline-block;
    font-size: 14px;
}

@media (min-width: 1700px) {
    .simple-button-with-icon {
        font-size: 16px;
    }
}

.simple-button-with-icon__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.simple-button-with-icon__icon-container {
    padding: 2px 16px 0 0;
}

.simple-button-with-icon--light {
    color: #fff;
}

.button {
    clear: both;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 -3px;
    padding: 0;
    cursor: pointer;
    font-weight: 700;
    padding: 0;
    color: #fff;
    font-size: 14px;
    font-family: "work-sans", sans-serif;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background: none;
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

@media (min-width: 992px) {
    .button {
        font-size: 16px;
    }
}

@media (min-width: 1700px) {
    .button {
        font-size: 18px;
    }
}

.button .button__wrapper {
    padding: 10px 28px 10px 28px;
    position: relative;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media (min-width: 992px) {
    .button .button__wrapper {
        padding: 12px 36px;
    }
}

.button .button__wrapper:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #009C3A;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: 2;
}

.button .button__wrapper:after {
    content: '';
    display: block;
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 4;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.button__icon {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 0 0;
}

.button__content {
    display: inline-block;
    vertical-align: middle;
}

.button__inner {
    position: relative;
    z-index: 10;
}

.button__container {
    padding: 0 28px 0 0;
}

.button__icon-container {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate3d(50%, -50%, 0);
    -moz-transform: translate3d(50%, -50%, 0);
    transform: translate3d(50%, -50%, 0);
}

.button:hover {
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.button:hover .button__wrapper:before {
    left: 0;
}

.button:hover .button__wrapper:after {
    top: 0;
}

.button--full-width {
    display: block;
    margin: 0;
}

.button--light {
    color: #009C3A;
}

.button--light .button__wrapper:before {
    background: #fff;
}

.button--light .button__wrapper:after {
    background: #009C3A;
}

.button--high .button__wrapper {
    padding-top: 16px;
    padding-bottom: 16px;
}

@media (min-width: 992px) {
    .button--high .button__wrapper {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.simple-button {
    font-weight: 700;
    background: none;
    border: 0;
    position: relative;
    padding: 0 0 4px 0;
    display: inline-block;
    font-size: 14px;
    white-space: nowrap;
}

@media (min-width: 1500px) {
    .simple-button {
        font-size: 16px;
        padding-bottom: 6px;
    }
}

.simple-button:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #009C3A;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media (min-width: 1500px) {
    .simple-button:before {
        height: 2px;
    }
}

.simple-button:hover:before,
.simple-button:focus:before {
    bottom: -4px;
}

.simple-button--light {
    color: #fff;
}

.simple-button--light:before {
    background: #fff;
}

.simple-button--light:hover {
    color: #fff;
}

.inline-text-button {
    position: relative;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.inline-text-button:before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: #333333;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.inline-text-button:hover:before {
    opacity: 1;
}

.horizontal-buttons {
    text-align: center;
}

.horizontal-buttons>li {
    padding: 10px 0;
}

@media (min-width: 650px) {
    .horizontal-buttons>li {
        display: inline-block;
        vertical-align: middle;
        padding: 0 10px;
    }
}

@media (min-width: 1700px) {
    .horizontal-buttons>li {
        padding: 0 20px;
    }
}

@media (min-width: 650px) {
    .horizontal-buttons>li:first-child {
        padding-left: 0;
    }
}

@media (min-width: 650px) {
    .horizontal-buttons>li:last-child {
        padding-right: 0;
    }
}

@media (min-width: 768px) {
    .horizontal-buttons--type-02 {
        text-align: right;
    }
}

.vertical-buttons {
    text-align: center;
}

.vertical-buttons>li {
    padding: 10px 0;
}

.verical-buttons--narrow {
    max-width: 168px;
    margin: 0 auto;
}

.numered-link {
    display: inline-block;
    font-size: 14px;
}

@media (min-width: 1700px) {
    .numered-link {
        font-size: 16px;
    }
}

.numered-link__wrapper {
    position: relative;
    padding: 10px 0 0 24px;
}

@media (min-width: 1700px) {
    .numered-link__wrapper {
        padding-left: 32px;
    }
}

.numered-link__number-container {
    position: absolute;
    top: 0;
    left: 0;
    color: #009C3A;
    font-weight: 300;
}

.numered-link__inner {
    display: flex;
    align-items: flex-end;
}

.numered-link__icon-container {
    padding: 0 0 0 8px;
}

.common-button {
    color: #009C3A;
    font-weight: 600;
    position: relative;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}

@media (min-width: 500px) {
    .common-button {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .common-button {
        width: 33.33%;
    }
}

@media (min-width: 992px) {
    .common-button {
        width: 25%;
    }
}

.common-button:before {
    content: '';
    display: block;
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #009C3A;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0;
}

.common-button:hover:before {
    bottom: -2px;
    opacity: 1;
}


/***** SECTIONS *****/

.site-section {
    position: relative;
    z-index: 5;
}

.site-section__wrapper {
    padding: 60px 0;
    position: relative;
}

@media (min-width: 480px) {
    .site-section__wrapper {
        padding: 80px 0;
    }
}

@media (min-width: 768px) {
    .site-section__wrapper {
        padding: 80px 0;
    }
}

@media (min-width: 1100px) {
    .site-section__wrapper {
        padding: 100px 0;
    }
}

@media (min-width: 1500px) {
    .site-section__wrapper {
        padding: 120px 0;
    }
}

@media (min-width: 1700px) {
    .site-section__wrapper {
        padding: 140px 0;
    }
}

.site-section__wrapper--only-top {
    padding-bottom: 0;
}

.site-section__wrapper--only-bottom {
    padding-top: 0;
}

.site-section__wrapper--lower-top {
    padding: 20px 0 40px 0;
}

@media (min-width: 480px) {
    .site-section__wrapper--lower-top {
        padding: 30px 0 60px 0;
    }
}

@media (min-width: 768px) {
    .site-section__wrapper--lower-top {
        padding: 40px 0 80px 0;
    }
}

@media (min-width: 1100px) {
    .site-section__wrapper--lower-top {
        padding: 50px 0 100px 0;
    }
}

@media (min-width: 1500px) {
    .site-section__wrapper--lower-top {
        padding: 60px 0 120px 0;
    }
}

@media (min-width: 1700px) {
    .site-section__wrapper--lower-top {
        padding: 70px 0 140px 0;
    }
}

.site-section__wrapper--lower-bottom {
    padding: 40px 0 20px 0;
}

@media (min-width: 480px) {
    .site-section__wrapper--lower-bottom {
        padding: 60px 0 30px 0;
    }
}

@media (min-width: 768px) {
    .site-section__wrapper--lower-bottom {
        padding: 80px 0 40px 0;
    }
}

@media (min-width: 1100px) {
    .site-section__wrapper--lower-bottom {
        padding: 100px 0 50px 0;
    }
}

@media (min-width: 1500px) {
    .site-section__wrapper--lower-bottom {
        padding: 120px 0 60px 0;
    }
}

@media (min-width: 1700px) {
    .site-section__wrapper--lower-bottom {
        padding: 140px 0 70px 0;
    }
}

@media (min-width: 768px) {
    .site-section__wrapper--higher {
        padding: 80px 0 80px 0;
    }
}

@media (min-width: 1100px) {
    .site-section__wrapper--higher {
        padding: 120px 0 100px 0;
    }
}

@media (min-width: 1500px) {
    .site-section__wrapper--higher {
        padding: 140px 0 120px 0;
    }
}

.site-section__wrapper--less-bottom-space {
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .site-section__wrapper--less-bottom-space {
        padding-bottom: 80px;
    }
}

@media (min-width: 480px) {
    .site-section__wrapper--lower {
        padding: 60px 0;
    }
}

@media (min-width: 1300px) {
    .site-section__wrapper--lower {
        padding: 80px 0;
    }
}

@media (min-width: 1700px) {
    .site-section__wrapper--lower {
        padding: 100px 0;
    }
}

.site-section__plain-wrapper {
    position: relative;
}

.site-section__layer {
    padding: 0 20px;
}

@media (min-width: 420px) {
    .site-section__layer {
        padding: 0 32px;
    }
}

@media (min-width: 480px) {
    .site-section__layer {
        padding: 0 40px;
    }
}

@media (min-width: 768px) {
    .site-section__layer {
        padding: 0 60px;
    }
}

@media (min-width: 1100px) {
    .site-section__layer {
        padding: 0 80px;
    }
}

@media (min-width: 1300px) {
    .site-section__layer {
        padding: 0 140px;
    }
}

@media (min-width: 1500px) {
    .site-section__layer {
        padding: 0 160px;
    }
}

@media (min-width: 1700px) {
    .site-section__layer {
        padding: 0 14%;
    }
}

@media (min-width: 1100px) {
    .site-section__layer--wide {
        padding: 0 60px;
    }
}

@media (min-width: 1700px) {
    .site-section__layer--wide {
        padding: 0 140px;
    }
}

@media (min-width: 1100px) {
    .site-section__layer--a-bit-wide {
        padding: 0 60px;
    }
}

@media (min-width: 1500px) {
    .site-section__layer--a-bit-wide {
        padding: 0 100px;
    }
}

@media (min-width: 1700px) {
    .site-section__layer--a-bit-wide {
        padding: 0 140px;
    }
}

@media (min-width: 768px) {
    .site-section__layer--left {
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .site-section__layer--later-left {
        padding-right: 0;
    }
}

@media (min-width: 768px) {
    .site-section__layer--right {
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .site-section__layer--later-right {
        padding-left: 0;
    }
}

@media (min-width: 1100px) {
    .site-section__layer--right-less {
        padding-right: 40px;
    }
}

@media (min-width: 1700px) {
    .site-section__layer--right-less {
        padding-right: 10%;
    }
}

.site-section__layer--narrow {
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .site-section__layer--narrow {
        max-width: unset;
        margin: 0;
    }
}

@media (min-width: 992px) {
    .site-section__inner {
        margin: 0 32px;
    }
}

@media (min-width: 1100px) {
    .site-section__inner {
        margin: 0 40px;
    }
}

@media (min-width: 1500px) {
    .site-section__inner {
        margin: 0 64px;
    }
}

.site-section__inner--wide {
    margin: 0;
}

@media (min-width: 1500px) {
    .site-section__inner--wide {
        margin: 0 5%;
    }
}

@media (min-width: 1700px) {
    .site-section__inner--wide {
        margin: 0 8%;
    }
}

.site-section__inner--very-wide {
    margin: 0;
}

@media (min-width: 1300px) {
    .site-section__inner--very-wide {
        margin: 0 2%;
    }
}

@media (min-width: 1500px) {
    .site-section__inner--inner {
        margin: 0 12%;
    }
}

@media (min-width: 1700px) {
    .site-section__inner--inner {
        margin: 0 19%;
    }
}

@media (min-width: 768px) {
    .site-section__inner--left {
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    .site-section__inner--later-left {
        margin-right: 0;
    }
}

@media (min-width: 768px) {
    .site-section__inner--right {
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .site-section__inner--later-right {
        margin-left: 0;
    }
}

.site-section__inner--narrow {
    max-width: 680px;
    margin: 0 auto;
}

@media (min-width: 1300px) {
    .site-section__inner--narrow {
        max-width: 800px;
    }
}

.site-section__content {
    position: relative;
    z-index: 2;
    margin: 0 1px;
}

.site-section__row {
    padding: 60px 0 0 0;
}

@media (min-width: 1700px) {
    .site-section__row {
        padding-top: 80px;
    }
}

.site-section__row:first-child {
    padding-top: 0;
}

.site-section__row--to-right {
    display: flex;
    flex-direction: row-reverse;
    border-bottom: 1px solid #E5E5E5;
    border-top: 1px solid #E5E5E5;
    justify-content: center;
}

@media (min-width: 500px) {
    .site-section__row--to-right {
        justify-content: end;
    }
}

.site-section__row--plain {
    padding: 0;
}

@media (min-width: 650px) {
    .site-section__row--plain {
        padding-top: 32px;
    }
}

@media (min-width: 992px) {
    .site-section__row--plain {
        padding-top: 0;
    }
}

.site-section__row--narrow {
    padding-left: 40px;
    padding-right: 40px;
}

@media (min-width: 380px) {
    .site-section__row--narrow {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 500px) {
    .site-section__row--narrow {
        padding-left: 9px;
        padding-right: 9px;
    }
}

@media (min-width: 768px) {
    .site-section__row--narrow {
        padding-left: 0;
        padding-right: 0;
    }
}

.site-section__decorated-row {
    position: relative;
}

@media (min-width: 992px) {
    .site-section__decoration {
        display: block;
        top: 0;
    }
}

.site-section__decoration--01 {
    left: 0;
}

.site-section__decoration--02 {
    left: 25%;
}

.site-section__decoration--03 {
    left: 50%;
}

.site-section__decoration--04 {
    left: 75%;
}

.site-section__decoration--05 {
    right: 0;
}

.site-section__decoration--bottom {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
}

.site-section__decoration--long {
    height: 150%;
}

.site-section__blog-article {
    padding-bottom: 80px;
}

@media (min-width: 650px) {
    .site-section__blog-article {
        border-left: 1px solid rgba(229, 229, 229, 0.5);
        margin-left: 130px;
    }
}

.site-section__content--space-top {
    margin-top: 40px;
}

@media (min-width: 1100px) {
    .site-section__content--space-top {
        margin-top: 0;
    }
}

.site-section__decoration-rwd {
    display: block;
    top: 0;
}

.site-section__decoration-rwd--01 {
    display: none;
}

.site-section__decoration-rwd--02 {
    left: 40px;
}

.site-section__decoration-rwd--03 {
    display: none;
}

.site-section__decoration-rwd--04 {
    display: none;
}

.site-section__decoration-rwd--05 {
    right: 40px;
}

@media (min-width: 380px) {
    .site-section__decoration-rwd--01 {
        display: none;
    }
    .site-section__decoration-rwd--02 {
        left: 80px;
    }
    .site-section__decoration-rwd--03 {
        display: none;
    }
    .site-section__decoration-rwd--04 {
        display: none;
    }
    .site-section__decoration-rwd--05 {
        right: 80px;
    }
}

@media (min-width: 500px) {
    .site-section__decoration-rwd--01 {
        display: none;
    }
    .site-section__decoration-rwd--02 {
        left: 9px;
    }
    .site-section__decoration-rwd--03 {
        left: 50%;
        display: block;
    }
    .site-section__decoration-rwd--04 {
        display: none;
    }
    .site-section__decoration-rwd--05 {
        right: 9px;
    }
}

@media (min-width: 768px) {
    .site-section__decoration-rwd--01 {
        display: block;
    }
    .site-section__decoration-rwd--02 {
        left: 33.33%;
    }
    .site-section__decoration-rwd--03 {
        left: 66.66%;
        display: block;
    }
    .site-section__decoration-rwd--04 {
        left: 0;
        display: block;
    }
    .site-section__decoration-rwd--05 {
        right: 0;
    }
}

@media (min-width: 992px) {
    .site-section__decoration-rwd--02 {
        left: 25%;
    }
    .site-section__decoration-rwd--03 {
        left: 50%;
    }
    .site-section__decoration-rwd--04 {
        left: 75%;
    }
}

.site-section--flat-top .site-section__wrapper {
    padding-top: 0;
}

.site-section--primary {
    background: #009C3A;
    color: #fff;
}

.site-section--dark {
    background: #333333;
    color: #fff;
}

@media (min-width: 1300px) {
    .site-section--surrounded {
        padding: 0 32px 32px 32px;
    }
}

@media (min-width: 1700px) {
    .site-section--surrounded {
        padding: 0 64px 64px 64px;
    }
}

.subsection__content {
    text-align: center;
}

@media (min-width: 992px) {
    .subsection__content {
        text-align: left;
    }
}

.extended-subsection__header {
    padding: 32px 0;
    background: #009C3A;
}

.extended-subsection__content {
    padding: 40px 0 0 0;
}

@media (min-width: 1300px) {
    .extended-subsection__content {
        padding: 60px 80px 0 0;
    }
}

.subsection-with-extras__container {
    position: relative;
}

@media (min-width: 768px) {
    .subsection-with-extras__container {
        padding: 0 40% 0 0;
    }
}

.subsection-with-extras__container>.column {
    float: none;
    width: auto;
}

.subsection-with-extras__container .subsection-with-extras__extras-column {
    padding: 32px 0 0 0;
}

@media (min-width: 768px) {
    .subsection-with-extras__container .subsection-with-extras__extras-column {
        width: 40%;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
    }
}

@media (min-width: 1100px) {
    .section-01 .site-section__wrapper {
        padding-top: 180px;
    }
}

@media (min-width: 1300px) {
    .section-01 .site-section__wrapper {
        padding-top: 200px;
    }
}

@media (min-width: 1500px) {
    .section-01 .site-section__wrapper {
        padding-top: 220px;
    }
}

@media (min-width: 1700px) {
    .section-01 .site-section__wrapper {
        padding-top: 240px;
    }
}

@media (min-width: 768px) {
    .section-01 .site-section__main-container .site-section__lead-column {
        width: 45%;
    }
}

@media (min-width: 992px) {
    .section-01 .site-section__main-container .site-section__lead-column {
        width: 50%;
        padding: 0 60px 20px 0;
    }
}

@media (min-width: 1100px) {
    .section-01 .site-section__main-container .site-section__lead-column {
        padding-top: 0;
    }
}

@media (min-width: 768px) {
    .section-01 .site-section__main-container .site-section__gallery-column {
        width: 55%;
    }
}

@media (min-width: 992px) {
    .section-01 .site-section__main-container .site-section__gallery-column {
        width: 50%;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .section-02 .site-section__content-column {
        float: none;
        width: auto;
    }
}

@media (min-width: 1300px) {
    .section-02 .site-section__content-column {
        float: right;
        width: 50%;
    }
}

.section-02 .site-section__location-column {
    /*@media (min-width: $rwd-992) {
    float: left;
    width: 50%;
    padding: 0;
    }*/
}

@media (min-width: 768px) {
    .section-02 .site-section__location-column {
        width: auto;
        float: none;
        margin: 0 auto;
        padding: 40px 0 0 0;
    }
}

@media (min-width: 1300px) {
    .section-02 .site-section__location-column {
        float: left;
        width: 50%;
        padding: 0;
    }
}

.section-05 {
    overflow: hidden;
}

@media (min-width: 768px) {
    .section-05 .site-section__main-container {
        display: flex;
        align-items: flex-end;
    }
}

@media (min-width: 768px) {
    .section-05 .site-section__main-content {
        width: 75%;
    }
}

@media (min-width: 1700px) {
    .section-05 .site-section__main-content {
        width: 70%;
    }
}

.section-05 .site-section__side-content {
    padding: 64px 0 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .section-05 .site-section__side-content {
        width: 25%;
        padding: 0;
        padding: 0 0 0 20px;
    }
}

@media (min-width: 992px) {
    .section-05 .site-section__side-content {
        padding-left: 40px;
    }
}

@media (min-width: 1700px) {
    .section-05 .site-section__side-content {
        width: 30%;
    }
}

.section-08 {
    position: relative;
}

.section-08 .site-section__plain-wrapper {
    position: relative;
}

.section-08 .site-section__plain-wrapper:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fff;
}

.section-08 .site-section__filling-space {
    display: none;
}

@media (min-width: 992px) {
    .section-08 .site-section__filling-space {
        display: block;
    }
}

@media (min-width: 992px) {
    .section-08 .site-section__content-container {
        padding-left: 1px;
    }
}

.section-08 .site-section__content-container-inner {
    padding: 40px 0;
}

@media (min-width: 768px) {
    .section-08 .site-section__content-container-inner {
        padding: 60px 0 60px 32px;
    }
}

@media (min-width: 992px) {
    .section-08 .site-section__content-container-inner {
        background: #fff;
        padding: 20% 0 20% 40px;
    }
}

@media (min-width: 1700px) {
    .section-08 .site-section__content-container-inner {
        padding-left: 60px;
    }
}

.section-08 .site-section__side-container {
    padding: 0;
}

@media (min-width: 992px) {
    .section-08 .site-section__side-container {
        padding: 0 0 40px 0;
    }
}

@media (min-width: 1300px) {
    .section-08 .site-section__side-container {
        padding-bottom: 80px;
    }
}

.section-09 .site-section__content {
    background: #fff;
}

.section-10 .site-section__decoration--03 {
    display: none;
}

@media (min-width: 1300px) {
    .section-10 .site-section__decoration--03 {
        display: block;
    }
}

@media (min-width: 1300px) {
    .section-10 .site-section__decoration--05 {
        display: none;
    }
}

.section-10 .site-section__decoration--06 {
    display: none;
}

@media (min-width: 1300px) {
    .section-10 .site-section__decoration--06 {
        display: block;
        right: 50%;
        top: 70px;
    }
}

@media (min-width: 1700px) {
    .section-10 .site-section__decoration--06 {
        top: 90px;
    }
}

.section-01 .site-section__wrapper--top-arrow {
    padding-top: 160px;
}

@media (min-width: 650px) {
    .section-01 .site-section__wrapper--top-arrow {
        padding-top: 213px;
    }
}

@media (min-width: 1100px) {
    .section-01 .site-section__wrapper--top-arrow {
        padding-top: 229px;
    }
}

@media (min-width: 1300px) {
    .section-01 .site-section__wrapper--top-arrow {
        padding-top: 213px;
    }
}

@media (min-width: 1700px) {
    .section-01 .site-section__wrapper--top-arrow {
        padding-top: 232px;
    }
}

@media (min-width: 1100px) {
    .section-blog .site-section__wrapper {
        padding-top: 140px;
    }
}

@media (min-width: 1700px) {
    .section-blog-article .site-section__layer {
        padding: 0 22%;
    }
}


/** sections-end **/