/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-30: 30px;
    --space-25: 25px;
    --font-48: 48px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-26: 26px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;
    --font-18: 18px;
    --container-padding: 40px;
    --row-gap: 15px;

    /** SPECIFIC **/
    --color-primary: #cc5eb0;
    --color-secondary: #50ae3d;
    --color-tertiary: #1FA6E0;
    --color-quaternary: #FBB004;
    --color-default: #333;

    --offer-color: #000;
}

body {
    color: #000;
    font-family: "Poppins", sans-serif;
}

/**
 * BASIC
 */

a, input, select, textarea, option, button {
    outline: none !important;
}

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: var(--color-primary);
}

a:hover, a:focus {
    color: var(--color-primary);
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.grayscale {
    filter: grayscale(1);
}

.grayscale-fade {
    transition: filter 0.2s;
}

.grayscale-fade:hover,
.grayscale-fade:focus {
    filter: grayscale(0);
}

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

.container {
    clear: both;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    width: 100%;
}

.container-small {
    max-width: 1440px;
}


.container--noClear {
    clear: none;
}

.container--noClear::before,
.container--noClear::after {
    display: none;
}

/**
 * ICONS
.icon-mask.icon-mask {-webkit-mask-size: cover;-mask-size: cover;-webkit-mask-position: center;mask-position: center;-webkit-mask-repeat: no-repeat;mask-repeat: no-repeat; background-color: currentColor;}
.icon-user { -webkit-mask-image: url('../images/icons/user.svg'); mask-image: url('../images/icons/user.svg');}
.icon-register { -webkit-mask-image: url('../images/icons/register.svg'); mask-image: url('../images/icons/register.svg');}
.icon-logout {-webkit-mask-image: url('../images/icons/logout.svg'); mask-image: url('../images/icons/logout.svg');}
*/

/**
 * BUTTONS
 */

.btn, a, button {
    border-radius: 0;
    transition: all 0.2s;
}

.btn-lg {
    border: 1px solid transparent;
    padding: 0 33px;
    height: 46px;
    line-height: 44px;
    box-shadow: 0 0 0 transparent !important;
    border-radius: 23px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}

.btn-sm {
    border: 2px solid;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 30px;
    height: 40px;
    line-height: 36px;
}


.btn.has-icon {
    display: flex;
    align-items: center;
    padding-left: 2px;
    background: transparent;
    border: transparent;
}

.btn.has-icon .btn-icon {
    width: 44px;
    height: 44px;
    padding: 6px;
}

.has-arrow {
    padding-right: 58px;
}

.btn.has-arrow:after {
    width: 44px;
    height: 44px;
    display: block;
    content: "\f105";
    font: normal normal normal 20px/1 FontAwesome;
    transition: all 300ms ease-out;
    line-height: 44px;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    font-size: 18px;
    top: 0;
}


/**
 * THEMES
 */

.btn.btn-primary,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary:focus:active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.btn.btn-primary[disabled],
.btn.btn-primary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn.btn-secondary,
.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary:focus:active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.btn.btn-secondary[disabled],
.btn.btn-secondary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn.btn-tertiary,
.btn.btn-tertiary:focus,
.btn.btn-tertiary:active,
.btn.btn-tertiary:focus:active {
    background-color: var(--color-tertiary);
    border-color: var(--color-tertiary);
    color: #fff;
}


.btn.btn-quaternary,
.btn.btn-quaternary:focus,
.btn.btn-quaternary:active,
.btn.btn-quaternary:focus:active {
    background-color: var(--color-quaternary);
    border-color: var(--color-quaternary);
    color: #fff;
}


.btn.btn-secondary[disabled],
.btn.btn-secondary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn.btn-default,
.btn.btn-default:focus,
.btn.btn-default:active,
.btn.btn-default:focus:active {
    background-color: var(--color-default);
    border-color: var(--color-default);
    color: #fff;
}

.btn.btn-default[disabled],
.btn.btn-default[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn.btn-white,
.btn.btn-white:focus,
.btn.btn-white:active,
.btn.btn-white:focus:active {
    background-color: #fff;
    border-color: #fff;
    color: var(--color-default);
}


.btn.btn-primary .btn-icon svg,
.btn.btn-primary .btn-icon svg * {
    fill: #fff;
}

.btn.btn-secondary .btn-icon svg,
.btn.btn-secondary .btn-icon svg * {
    fill: var(--color-primary);
}

.btn.btn-white .btn-icon svg,
.btn.btn-white .btn-icon svg * {
    fill: #fff;
}


@media screen and (min-width: 1140px) {
    .btn-primary:not([disabled]):hover,
    .btn-primary:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-primary);
        border-color: var(--color-primary);
    }

    .btn-primary:hover .btn-icon svg,
    .btn-primary:hover .btn-icon svg * {
        fill: var(--color-primary);
    }

    .btn-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        background-color: #fff;
        border-color: var(--color-secondary);
        color: var(--color-secondary);
    }

    .btn-secondary:hover .btn-icon svg,
    .btn-secondary:hover .btn-icon svg * {
        fill: var(--color-secondary);
    }


    .btn-tertiary:not([disabled]):hover,
    .btn-tertiary:not([disabled]).active:hover {
        background-color: #fff;
        border-color: var(--color-tertiary);
        color: var(--color-tertiary);
    }

    .btn-quaternary:not([disabled]):hover,
    .btn-quaternary:not([disabled]).active:hover {
        background-color: #fff;
        border-color: var(--color-quaternary);
        color: var(--color-quaternary);
    }


    .btn-default:not([disabled]):hover,
    .btn-default:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-default);
        border-color: var(--color-default);
    }

    .btn-default:hover .btn-icon svg,
    .btn-default:hover .btn-icon svg * {
        fill: var(--color-default);
    }

    .btn-white:not([disabled]):hover,
    .btn-white:not([disabled]).active:hover {
        background-color: var(--color-default);
        border-color: var(--color-default);
        color: #fff;
    }

    .btn-white:hover .btn-icon svg,
    .btn-white:hover .btn-icon svg * {
        fill: var(--color-default);
    }

}


/**
 * BOOTSTRAP
 */
.panel,
.panel-heading,
.modal-content,
.alert,
.popover {
    border-radius: 0;
}

.panel {
    box-shadow: none;
}

.panel-default {
    border-color: #e5e5e5;
}

.row {
    margin-left: calc(-1 * var(--row-gap));
    margin-right: calc(-1 * var(--row-gap));
    display: flex;
    flex-wrap: wrap;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7,
.col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5,
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3,
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12,
.col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: var(--row-gap);
    padding-right: var(--row-gap);
}

.modal-footer[style="display: block;"] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.modal-footer:after, .modal-footer:before {
    content: none;
}

/**
 * TITLES
 */


.text.txt h1 {
    font-size: var(--font-36);
    margin-bottom: var(--space-30);
    font-weight: 200;
    line-height: 1.11111;
    color: #000;
}

.text.txt h2 {
    font-size: var(--font-30);
    margin-bottom: var(--space-30);
    font-weight: 200;
    line-height: 1.3;
    color: #000;
}

.text.txt h3 {
    font-size: var(--font-24);
    margin-bottom: var(--space-30);
    font-weight: 200;
    line-height: 1.3;
    color: #000;
}

.text.txt h4 {
    font-size: var(--font-22);
    margin-bottom: var(--space-30);
    font-weight: 200;
    line-height: 1.3;
    color: #000;
}

.text.txt h5 {
    font-size: var(--font-18);
    margin-bottom: var(--space-30);
    font-weight: 200;
    line-height: 1.3;
    color: #000;
}


.text.txt h5 {
    font-size: var(--font-18);
    margin-bottom: var(--space-30);
    font-weight: 200;
    line-height: 1.3;
    color: #000;
}


.text.txt h6 {
    font-size: 16px;
    margin-bottom: var(--space-30);
    font-weight: 200;
    line-height: 1.3;
    color: #000;
}


/**
 * TEXT
 */

.modal-header {
    background: var(--color-primary);
}

.modal-title {
    margin: 0;
    font-weight: 400;
    font-size: var(--font-30);
    line-height: 1.27778;
    color: #fff;
}

.modal-header button.close {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -23px;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    opacity: 1;
    border-radius: 50%;
}

.modal-header button.close {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -23px;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    opacity: 1;
    border-radius: 50%;
    color: #fff;
    text-shadow: 0 0 transparent;
    font-size: 30px;
}

.modal-header button.close:hover {
    background: #fff;
    color: var(--color-primary);
}


.modal-body button.btn.btn-lg.btn-primary {
    display: block;
    margin: 0 auto;
}

.modal-body .controls.captcha-container {
    width: 100%;
}


/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 16px;
    line-height: 30px;
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ul > li,
.text ol > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}

.text ul > li::before {
    content: "";
    display: inline-block;
    left: -16px;
    margin-left: -8px;
    font-family: sans-serif;
    position: relative;
    top: -1px;
    width: 5px;
    height: 5px;
    background-color: var(--color-default);
    border-radius: 50%;
}

.text ol > li::marker {
    word-spacing: 3px;
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 12px 12px;
    border: 1px solid #ddd;
}


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

.vcenter {
    display: block;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
}

.photo-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.photo-bg img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mask {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    pointer-events: none;
}

.grayscale, .gray {
    filter: grayscale(100%);
}

.buttons-center {
    text-align: center;
}

div#container-page {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 3px;
}

.mainpage header {
    border-bottom: transparent;
}

.header-top {
    background: var(--color-secondary);
}

.header-top-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-top-left {
    display: flex;
    align-items: center;
}

.header-top-right {
    display: flex;
    margin-right: -18px;
}

.slogan {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-right: -23px;
}


.top {
    padding-top: 2px;
    height: 96px;
}

.top .container {
    height: 100%;
}

.top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-right {
    display: flex;
    align-items: center;
}

.logo {
    float: none;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    max-width: 100%;
}


#main-menu {
    transition: all 300ms ease-out;
}

#main-menu ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#main-menu li {
    position: relative;
    padding: 0;
    transition: all 300ms ease-out;
}

header.sticky #main-menu li {
}

header.sticky #main-menu li > ul li {
    padding: 0;
}

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

#main-menu li {
    padding: 0 2px;
}

#main-menu li a {
    position: relative;
    padding: 9px 16px;
    background-repeat: no-repeat;
    display: block;
    font-weight: 400;
    font-size: 16px;
    background-image: url(../images/icons/hover_menu.svg);
    background-size: 0 100%;
    transition: all 300ms ease-out;
    background-position: left center;
    -webkit-text-stroke: 0.4px transparent;

    text-transform: uppercase;
    text-align: center;
    color: #000;
}

#main-menu li a svg {
    width: 15px !important;
}

#main-menu li a:hover {
    background-size: 100% 100%;
    width: 100%;
    color: #fff;
}

#main-menu li.active > a {
    background-size: 100% 100%;
    width: 100%;
    -webkit-text-stroke: 0.4px currentColor;
    color: #fff;
}

#main-menu li.active > a svg, #main-menu li.active > a svg * {
    fill: #fff;
}

#main-menu li > ul {
    display: none;
}

#main-menu li:hover > ul {
    display: block;
}

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 350px;
    background: #fff;
}

#main-menu li > ul li {
    padding: 0;
    min-height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 402px;
    margin-left: -27px;
}

#main-menu li > ul li a {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.125;
    text-transform: none;
    color: #004799;
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    padding-top: 5px;
}

#main-menu li > ul li a:after {
    width: 42px;
    height: 42px;
    display: block;
    content: "\f105";
    font: normal normal normal 20px/1 FontAwesome;
    transition: all 300ms ease-out;
    line-height: 44px;
    position: absolute;
    right: 27px;
    font-size: 17px;
    top: 50%;
    transform: translate(0, -50%);
    text-align: center;
}

#main-menu li > ul li:after {
    width: 350px;
    margin-left: 27px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    display: block;
    content: '';
}

#main-menu li > ul li a:hover {
    color: #fff
}

#main-menu li a:hover svg * {
    fill: #fff;
}

#main-menu li > ul li.active a {
    color: #fff
}

#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -40px;
}

.contact-link {
    align-items: center;
    display: flex;
    padding: 0 10px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    margin-left: 30px;
}

.contact-link .btn-icon {
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    text-align: center;
}

.contact-links .contact-link svg, .contact-links .contact-link svg * {
    stroke: currentColor;
}

.contact-link .caption strong {
    display: block;

}

@media screen and (min-width: 1140px) {
    .contact-link:hover {
        text-decoration: underline;
        color: #fff;
    }

}

.main-menu-button {
    float: right;
    width: 40px;
    margin: 10px 0 10px 10px;
    border: none;
    background: transparent;
}

.main-menu-button.animIcon--hamburger.active span {
    background-color: var(--color-primary);
}


.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    float: left;
    position: relative;
    width: 350px;
    max-width: 100%;
}

.mainsearch-search {
    display: flex;
    align-items: stretch;
}

.mainsearch .form-element-container {
    flex-grow: 1;
}

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 15px;
    border-right: none;
    box-shadow: none;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mainsearch .alert-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.mainsearch .form-control-feedback {
    display: none;
}


/*
* USER NAV
.header-top .user-nav {    display: flex;    align-items: stretch;}
.header-top .user-nav-item {    display: flex;    align-items: stretch;    position: relative;}
.header-top .user-nav-item-inner {    display: flex;    align-items: center;    color: #fff;}
.header-top .user-nav-item + .user-nav-item {    padding-left: 20px;    margin-left: 20px;}
.header-top .user-nav-item + .user-nav-item::before {    content: '';    display: block;    position: absolute;    top: 50%;    left: 0;    -ms-transform: translate3d(0, -50%, 0);    transform: translate3d(0, -50%, 0);    width: 1px;    height: 12px;    background-color: rgba(255, 255, 255, 0.6);}
.header-top .user-nav-item .icon {    width: 26px;    height: 26px;}
*/


/**
 * FOOTER
 */


/**
 * FOOTER
 */


footer {
    position: relative;
}

footer .photo-bg {
    z-index: -1;
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    mask-position: right top;
    inset: 0;
}

footer .photo-bg img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mask.footer-mask {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.10) 14.97%, rgba(0, 0, 0, 0.50) 85.99%);
}

.footer-boxes {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}


.footer-box-container {
    position: relative;
    padding-top: 190px;
    padding-bottom: 70px;
}

.footer-box {
    padding-right: 30px;
    position: relative;
    width: 34%;
}

.footer-col-title {
    margin-bottom: 23px;
    font-weight: 700;
    font-size: var(--font-24);
    line-height: 1.66667;
    color: #fff;
}


.footer-box ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer-box ul li {
    margin-bottom: 6px;
}

.footer-box ul li a {
    display: block;
    line-height: 150%;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .footer-box ul li a:hover {
        text-decoration: none;
        color: var(--color-primary);
    }
}

.footer-box .text a {
    color: #fff;
}


img.logo-min {
    display: block;
    margin-bottom: 72px;
    max-width: 100%;
}

.footer-box .text.txt {
    font-weight: 400;
    font-size: 15px;
    line-height: 2.66667;
    color: #fff;
    margin-top: -8px;
}

.contact-link-bottom {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 19px;
    font-weight: 200;
    font-size: var(--font-24);
    line-height: 1.66667;
    color: #fff;
}

.contact-link-bottom .btn-icon {
    border-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 23px 0 0;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-link-bottom:hover {
    text-decoration: underline;
    color: #fff
}

.footer-left {
    width: 48%;
    display: flex;
}

.footer-right {
    width: 20%;
    text-align: right;
}

.footer-col-title.footer-col-title-rwd {
    opacity: 0;
}

.footer-left .footer-box:last-child {
    width: 66%;
}

.footer-right .footer-col-title.footer-col-title-rwd {
    display: none;
}

.footer-right .footer-box {
    width: 100%;
    padding-right: 6px;
    padding-top: 4px;
}


/* FOOTER BAR */
.footer-bar {
    line-height: 30px;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    position: relative;
    background: url(../images/footer_bar_bg.png) no-repeat top center / 100% 100%;
}

.footer-bar-content {
    padding: 23px 0;
}


.footer-bar-content::after {
    content: "";
    display: table;
    clear: both;
}

.footer-bar-content > * {
    float: left;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    /* line-height: 24px; */
    line-height: 1.5;
}

.footer-bar-content > *:not(:last-child) {
    margin-right: 40px;
}

.footer-bar-links {
    margin-left: -8px;
    font-size: 0;
}

.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

.footer-bar-links a {
    color: inherit;
}

@media screen and (min-width: 1140px) {
    .footer-bar-links a:hover {
        text-decoration: underline
    }
}

.copyright:before {
    content: '';
    width: 1px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: -25px;
    top: 50%;
    margin-top: -5px;
}

.copyright {
    position: relative;
}

.copyright-undicom {
    display: flex;
    float: right;
    font-family: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    align-items: center;
    color: #fff;
    font-size: 16px;
}

.copyright-undicom a {
    display: inline-block;
    vertical-align: middle;
}

.copyright-undicom svg {
    max-width: 15px;
    margin-right: 2px;
    fill: currentColor;
    margin-bottom: -3px;
}

img.footer-bar-img {
    position: absolute;
    top: -18px;
    left: 23%;
    max-width: 37%;
    z-index: -1;
}

/**
 * FORM
 */

.form-box-title {
    font-size: var(--font-36);
    margin-bottom: -9px;
    font-weight: 200;
    color: #000;
}

form.form {
    padding: 9px 0 0;
}

.form-group {
    margin-bottom: 15px;
}

.form .form-element-name {
    margin-bottom: 8px;
    color: #000;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
}


/* INPUTY */
.form-control,
.form .form-control {
    height: 46px;
    box-shadow: 0 0 0 transparent;
    padding-left: 20px;
    padding-right: 20px;
    font-family: poppins, sans-serif;
    background-color: rgb(255, 255, 255);
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #000;
}

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    /* height: 130px; */
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.49925;
    letter-spacing: 0.05em;
    color: #000;
}

.form .before-consent-row {
    padding-top: 14px;
}


.form .consent-row .error {
    /* font-size: 12px; */
    /* letter-spacing: 0; */
}

/* CAPTCHA */
.form .captcha-image-wrapper, .form .form-group-sm .captcha-image-wrapper, .form .form-group-lg .captcha-image-wrapper {
    border-radius: 0;
    box-shadow: none;
    background: #fff;
}

/* KOLOR GWIAZDKI WYMAGANEGO POLA */
.form .form-required-mark {
    /* color: #a94442; */
}

.form-element-select .form-control-feedback,
.form-element-country .glyphicon {
    display: none;
}

.form button.captcha-refresh {
    right: var(--row-gap);
    color: var(--color-primary);
    border-radius: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #e5e5e5;
}

.form button.captcha-refresh .fa.fa-spin {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused
}

@media screen and (min-width: 1140px) {
    .form button.captcha-refresh:hover {
        color: #000;
        border-color: #e5e5e5;
        border-radius: 0 5px 5px 0;
    }

    .form button.captcha-refresh:hover .fa.fa-spin {
        -webkit-animation-play-state: running;
        -moz-animation-play-state: running;
        -o-animation-play-state: running;
        animation-play-state: running
    }
}

.form-control-feedback {
    top: 50%;
    right: 0;
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}


.controls.captcha-container {
    width: 100%;
}

.row-flex-center {
    padding-top: 14px;
}

.form .consent-all-row {
    color: #000;
    margin-bottom: 50px;
}

/*---- SELECT 2 -----*/

.select2-dropdown {
    z-index: 100;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    height: 46px;
    border-color: #ccc;
    border-radius: 6px;
    text-align: left;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 12px;
    font-size: 14px;
    padding-right: 44px;
    color: #555;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search {
    line-height: 44px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    line-height: 24px;
    display: inline-block;
    float: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px;
}

.has-feedback .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 68px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    transition: all 0.4s;
    right: 16px;
    color: #000;
    text-align: center;
    font-size: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '\f107';
    font-family: 'FontAwesome', sans-serif;
    font-size: 16px;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -ms-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow > b {
    display: none;
}

.select2-results__option[aria-selected] {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 300;
    padding: 6px 22px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
}

@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .form-element-multiselectCheckbox .select2-results__option:not([role="group"]):not(.select2-results__message)::before {
        -webkit-background-size: 200px 20px !important;
        background-size: 200px 20px !important;
    }
}

.form-box-wrapper button.btn.btn-secondary.btn-lg {
    display: block;
    margin: 0 auto;
    height: 50px;
    line-height: 48px;
}


@media screen and (min-width: 1140px) {
    .form-box-wrapper button.btn.btn-secondary.btn-lg:hover {
    }

}

.form .consent-all-row strong {
    padding-top: 20px;
    display: block;
}

@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .form-element-multiselectCheckbox .select2-results__option:not([role="group"]):not(.select2-results__message)::before {
        -webkit-background-size: 200px 20px !important;
        background-size: 200px 20px !important;
    }
}


/**
 * MAP POINTS
 */

.map-point .custom-map-wrapper {
    position: relative;
}

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}

.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}


.map-box-container iframe {
    width: 100%;
    display: block;
    height: 600px;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
}

.breadcrumb > li > a {
    font-size: 12px;
}

.breadcrumb > li > a:not([href]),
.breadcrumb > li > a:not(:hover) {
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}

.breadcrumb > li > a.last {
    color: var(--color-primary);
}

/**
 * ANIMATABLE ICON
 */
.animIcon {
    position: relative;
    display: inline-block;
    width: 32px;
    padding: 0 !important;
}

.animIcon::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-primary);
    transition: all .4s ease;
}

/* Close */
.animIcon.animIcon--close span {
    top: 50%;
    margin-top: -1px;
    transform-origin: center;
}

.animIcon.animIcon--close span:nth-child(1) {
    transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
}

/* Hamburger -> Close */
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}

.animIcon.animIcon--hamburger span:nth-child(1) {
    margin-top: 20%;
}

.animIcon.animIcon--hamburger span:nth-child(2) {
    margin-top: 50%;
}

.animIcon.animIcon--hamburger span:nth-child(3) {
    margin-top: 80%;
}

.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-top: 15%;
    margin-left: 15%;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.animIcon.animIcon--hamburger.active span:nth-child(2) {
    opacity: 0;
    margin-top: 70%;
}

.animIcon.animIcon--hamburger.active span:nth-child(3) {
    margin-top: 85%;
    margin-left: 15%;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * LOGOTYPES SLIDER
 */
.logotypes-box-container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.logotypes-box-title {
    color: #00306d;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.1em;
}

.slick-initialized .logotype {
    position: relative;
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
    height: 100px;
}

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
    top: 50%;
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    position: relative;
}


/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
    display: flex;
}

.social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    transition: all 300ms;
    height: 50px;
    border: 1px solid var(--color-tertiary);
    padding: 4px;
    border-radius: 50%;
    background: var(--color-tertiary);
    color: #fff;
}

.social:hover .social-icon {
    color: #fff;
    background: var(--color-primary)
}

.social-icon svg, .social-icon svg * {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

.social-icon .fa {
    font-size: 20px;
}


/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 0 15px;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s;
}

.langs-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    color: inherit;
    text-decoration: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    text-transform: uppercase;
}

.lang .langs-menu-long {
    display: none;
}

.lang-button {
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    font-size: 18px;
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

.langs-menu-icon img {
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {
        color: #fff;
        background-color: var(--color-primary);
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

.langs-menu.langs-menu--list a {
    height: auto;
    padding: 5px;
    border: none;
}

.langs-menu--list .lang {
    background: none;
}

.langs-menu--list .langs-menu-icon {
    margin: 0;
}

/**
 * ARTICLE
 */
.article {
    overflow: visible;
    padding-bottom: 30px;
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
}

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 49%;
    margin-right: 36px;
    margin-bottom: 45px;
    margin-top: -47px;
    padding-left: 33px;
}

.article-image img {
    max-width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

.article-subtitle {
    font-weight: 200;
    font-size: var(--font-36);
    line-height: 1.11111;
    color: #000;
    margin-bottom: 39px;
}

.article-date {
    font-weight: bold;
}

.article-text {
    margin-bottom: 30px;
}

/**
 * GALLERY
 */

.gallery {
    clear: both;
}


.gallery-list {
    margin: 0px;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 0px;
    position: relative
}


.gallery-list-item:before {
    width: 100%;
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    z-index: 1;
}

.gallery-list-item:after {
    width: 1px;
    height: 100%;
    background: #fff;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    content: '';
    z-index: 1;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}

.gallery-picture > img {
    display: block;
    max-width: 100%;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: opacity 0.3s;
    background: rgba(31, 166, 224, 0.70);
}

.gallery-picture-hover > * {
    text-indent: -20000px;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 46px;
    height: 46px;
    left: 0;
    right: 0;
    position: absolute;
    margin: 0 auto;
    display: block;
    top: 50%;
    background-color: var(--color-primary);
    background-image: url(../images/icons/loupe_white.svg);
    background-repeat: no-repeat;
    border-radius: 50%;
    background-size: 75%;
    background-position: center center;
}


@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/minimal.png);
    top: 6px;
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .icheckbox_minimal-custom,
    .iradio_minimal-custom {
        background-image: url(../images/minimal@2x.png);
    }
}

/**
* PAGINATION
*/

.pagination-wrapper {
    clear: both;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
}

.pagination-wrapper ul li {
    padding: 0 5px;
}

.pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
    padding: 0 128px;
    vertical-align: middle;
    float: none;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    padding: 0 13px;
    font-weight: 400;
    font-size: 14px;
    line-height: 46px;
    color: #000;
}


.pagination-wrapper ul li.prev a, .pagination-wrapper ul li.next a {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 transparent;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 1);
}

.pagination-wrapper ul li.active a {
    color: #000;
    transition: -webkit-text-stroke 0.3s;
    -webkit-text-stroke: 0.5px currentColor;
}

.pagination-wrapper ul li.next a > * {
    text-indent: -20000px;
    width: 100%;
    height: 100%;
    background: url(../images/icons/arrow_right_black.svg) no-repeat center center;
}

.pagination-wrapper ul li.prev a > * {
    text-indent: -20000px;
    width: 100%;
    height: 100%;
    background: url(../images/icons/arrow_left_black.svg) no-repeat center center;
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li.next a:hover {
        background: var(--color-secondary);
        border-color: var(--color-secondary);
    }

    .pagination-wrapper ul li.next a:hover > * {
        background: url(../images/icons/arrow_right.svg) no-repeat center center
    }

    .pagination-wrapper ul li.prev a:hover {
        background: var(--color-secondary);
        border-color: var(--color-secondary);
    }

    .pagination-wrapper ul li.prev a:hover > * {
        background: url(../images/icons/arrow_left.svg) no-repeat center center;
    }

    .pagination-wrapper ul li a:hover {
        color: var(--color-primary);
    }
}


/* pagination default



.pagination-wrapper ul li {
    padding: 0 5px;
}

.pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
    padding: 0 45px;
    vertical-align: middle;
    float: none;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    color: #000;
    font-size: 13px;
    line-height: 50px;
    padding: 0 11px;
}


.pagination-wrapper ul li.prev a, .pagination-wrapper ul li.next a {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 transparent;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 0;
    border: 1px solid var(--color-default);
    font-size: 20px;
    color: var(--color-default);
}

.pagination-wrapper ul li.active a {
    color: var(--color-primary);
}

.pagination-wrapper ul li.next a > * {
}

.pagination-wrapper ul li.prev a > * {
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li.next a:hover {
   background: var(--color-primary);
        border-color: var(--color-primary);
    }

    .pagination-wrapper ul li.next a:hover > * {

    }

    .pagination-wrapper ul li.prev a:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
    }

    .pagination-wrapper ul li.prev a:hover > * {

    }

    .pagination-wrapper ul li a:hover {

    }
}

*/


.main-slider, .slider .slide, .slider .slider-photo, .main-slider .slick-list, .main-slider .slick-track {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.slider {
    position: relative;
    margin-bottom: 30px;
    height: 774px;
    padding-top: 0;
}

.slider .container {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    bottom: 0;
    top: 0;
}

.slider-photo {
    -webkit-mask-size: contain;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.slider-photo img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mask.slider-mask {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.40) 100%)
}

.slider-text-box {
    position: absolute;
    display: flex;
    height: 100%;
    top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80%;
}

.slider-text {
    width: 48%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: var(--container-padding);
}

.title1 {
    font-weight: 700;
    font-size: 5vw;
    line-height: 1.25;
    color: #fff;
    margin-bottom: var(--space-40);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (min-width: 1921px) {
    .title1 {
        font-size: 96px;
    }
}

.description {
    font-weight: 300;
    font-size: var(--font-24);
    line-height: 1.66667;
    text-align: center;
    color: #fff;
    margin-bottom: var(--space-40);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


@media screen and (min-width: 1140px) {
    button.slick-arrow:hover {
        opacity: 1;
    }
}

@media screen and (min-width: 1140px) {
    button.slick-arrow:hover {
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
    }
}


img.slider-bg1 {
    width: 39.375%;
    position: absolute;
    left: 45.4%;
    bottom: -1%;
    display: block;
}


img.slider-bg2 {
    width: 32.813%;
    position: absolute;
    left: 23%;
    top: 2.2%;
    display: block;
}

.slider-mask-wrapper img {
    display: block;
}

.slider-mask1-wrapper img {
    width: min(76vw, 1430px);
}

.slider-mask1-wrapper {
    display: block;
    position: absolute;
    bottom: -4.2%;
    left: 11%;
    width: 100%;

}

.slider-mask-wrapper {
    overflow: hidden;
    transition: width 2s, margin 2s;
}

.slider-mask2-wrapper img {
    width: min(14vw, 264px);
}

.slider-mask2-wrapper.drawPath {
    margin-right: 0;
}

.slider-mask2-wrapper {
    position: absolute;
    top: 34.9%;
    right: 5.5%;
    margin-right: 14vw;
    width: 14vw;
    transform-origin: left;
    display: block;
}

.slider-arrows-box .slider-mask-wrapper.opacityZero {
    width: 0;
}

.slider-arrows-box .slider-mask-wrapper {
    width: 100%;
    opacity: 1 !important;
    transition: width 2s;
}

.slider-arrows-box {
    width: 36%;
    position: absolute;
    bottom: 11%;
    right: -11%;
    z-index: 2;
}

.slider-arrows-box img {
    width: min(27vw, 500px);

    display: block;
}

.slider-arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    margin-right: 8px;
}

.slider-arrows {
    position: absolute;
    top: 51%;
    left: 18%;
    width: 116px;
    display: flex;
    margin-top: -25px;
}

.about-box-container {
    background: url(../images/about_bg.png) no-repeat center top / 100% auto;
    padding-top: 117px;
    padding-bottom: 205px;
}

.about-box-title {
    font-weight: 100;
    font-size: 5.483vw;
    line-height: 1;
    color: #000;
    margin-bottom: 10px;
    padding-bottom: 12px;
}

@media screen and (min-width: 1921px) {
    .about-box-title {
        font-size: 100px;
    }
}

.text.text-big {
    font-weight: 200;
    font-size: var(--font-36);
    line-height: 1.11111;
    color: #000;
    position: relative;
    z-index: 5;
}

.about-box {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.about-photo {
    position: absolute;
    max-width: 56.5%;
    left: 0;
    margin: 0 auto;
    right: 11%;
    top: -3%;
    z-index: 2;
}

.about-left {
    width: 26.3%;
}

.about-right {
    width: 33%;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    z-index: 5;
}

.text.txt {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.875;
    color: #000;
}

.about-right .text.txt {
    margin-bottom: var(--space-40);
}

.about-photo img {
    display: block;
    max-width: 100%;
    z-index: 2;
    position: relative;
}

.about-photo img.bg-back {
    position: absolute;
    top: 0;
    max-width: 69%;
    right: 0;
    margin: 0 auto;
    left: 0;
    /* opacity: 0; */
    top: -2%;
    z-index: 1;
}

.about-photo .mask-wrapper img {
    max-width: unset;
    width: min(60vw, 1092px);
    display: block;
}

.about-photo .mask-wrapper {
    opacity: 1 !important;
    z-index: 3;
    position: absolute;
    overflow: hidden;
    bottom: -53px;
    width: 118%;
    left: -7%;
}

.offer-box-wrapper {
    padding-top: 80px;
    position: relative;
    z-index: 1;
    background: url(../images/dot.png) repeat-x left top;
}

.offer-box-title {
    font-weight: 100;
    font-size: 5.483vw;
    line-height: 130%;
    text-align: center;
    color: #000;
}

@media screen and (min-width: 1921px) {
    .offer-box-title {
        font-size: 100px;
    }
}

.offer-header {
    position: relative;
    margin-bottom: 10px;
}

.offer-header .slider-nav-box {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -23px;
    display: flex;
    width: 347px;
    justify-content: space-between;
}

.offer-info-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    color: #000;
}

.offer-item {
    padding: 33px 33px 70px;
}

.offer-slider {
    margin-left: -33px;
    margin-right: -33px;
}

.offer-photo img {
    display: block;
    max-width: 100%;
    border-radius: 23px 23px 0 0;
}

.offer-name {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    padding-bottom: 21px;
}


.offer-content {
    padding: 22px 24px 30px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    border-radius: 0 0 23px 23px;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


.offer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 24px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.offer-info-box {
    margin: -10px;
}

.offer-info {
    display: flex;
    align-items: center;
    padding: 10px;
}

.offer-info-icon {
    width: 17px;
    height: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.offer-price {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    text-align: right;
    color: var(--offer-color);
    margin-bottom: 2px;
}

.offer-box-container {
    padding-bottom: 35px;
    position: relative;
}

.offer-link {
    display: flex;
    flex-direction: column;
    border-radius: 23px;
    background: #fff;
    box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.09);
    height: 100%;
    justify-content: space-between;
}

.offer-link:hover .offer-content {
    border-color: #FBB004;
}

.offer-link:hover .offer-price {
    color: #FBB004;
}

.offer-cat {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.71429;
    text-transform: uppercase;
    color: #fff;
    bottom: 18px;
    margin: 0 auto;
    text-align: center;
    display: block;
    background: url(../images/icons/cat_green.svg) no-repeat center center;
    position: absolute;
    padding: 0 8px;
    background-size: 100% 100%;
}

#kolonie-i-obozy .offer-item.slick-slide.slick-active.nextSlide {
    background: url(../images/offer_yellow.png) no-repeat top right / 100% 100%;
}


#zimowiska .offer-item.slick-current.slick-active {
    background: url(../images/offer_blue1.png) no-repeat top right / 100% 100%;
}

#kolonie-i-obozy .offer-cat {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.71429;
    text-transform: uppercase;
    color: #fff;
    bottom: 18px;
    margin: 0 auto;
    text-align: center;
    display: block;
    background: url(../images/icons/cat_green.svg) no-repeat center center;
    position: absolute;
    padding: 0 8px;
    background-size: 100% 100%;
}


.offer-photo {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.slider-navigation .slick-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid #000;
    border-radius: 50%;
    background: transparent;
    margin-left: 9px;
}

.slider-navigation {
    margin-left: 0;
}


#zimowiska .offer-cat {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.71429;
    text-transform: uppercase;
    color: #fff;
    bottom: 18px;
    margin: 0 auto;
    text-align: center;
    display: block;
    background: url(../images/icons/cat_blue.svg) no-repeat center center;
    position: absolute;
    padding: 0 8px;
    background-size: 100% 100%;
}


#wycieczki .offer-cat {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.71429;
    text-transform: uppercase;
    color: #fff;
    bottom: 18px;
    margin: 0 auto;
    text-align: center;
    display: block;
    background: url(../images/icons/cat_green.svg) no-repeat center center;
    position: absolute;
    padding: 0 8px;
    background-size: 100% 100%;
}


#szkolenia .offer-cat {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.71429;
    text-transform: uppercase;
    color: #fff;
    bottom: 18px;
    margin: 0 auto;
    text-align: center;
    display: block;
    background: url(../images/icons/cat_blue.svg) no-repeat center center;
    position: absolute;
    padding: 0 8px;
    background-size: 100% 100%;
}

.offer-info-icon svg, .offer-info-icon svg * {
    stroke: var(--offer-color);
}

#zimowiska .offer-item.slick-slide.slick-active.nextSlide + .offer-item.slick-slide.slick-active {
    background: url(../images/offer_blue2.png) no-repeat right 0 / 100% 100%;
}

.offer-slider-wrapper {
    display: flex;
    align-items: center;
}

.offer-photo-left {
    width: 29%;
    margin-left: -3%;
    position: relative;
    z-index: 1;
    display: block;
}

.offer-slider-right {
    width: 100%;
}

.offer-photo-left + .offer-slider-right {
    width: 78%;
    margin-left: -2%;
    margin-right: -2%;
}


.offer-photo-left img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

#wycieczki .offer-item.slick-slide.slick-active:nth-child(odd) {
    background: url(../images/offer_green1.png) no-repeat right 0 / 100% 100%;
}

#wycieczki .offer-item.slick-slide.slick-active:nth-child(even) {
    background: url(../images/offer_green2.png) no-repeat right 0 / 100% 100%;
}

.slider-navigation .slick-arrow svg, .slider-navigation .slick-arrow svg * {
    fill: #000;
}

.slider-navigation .slick-arrow:hover svg, .slider-navigation .slick-arrow:hover svg * {
    fill: #fff;
}

.news-box-wrapper {
    padding-top: 80px;
    position: relative;
    z-index: 1;
    background: url(../images/dot.png) repeat-x left top;
}

.news-photo {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.news-photo img {
    display: block;
    max-width: 100%;
    border-radius: 23px 23px 0 0;
}

.news-date {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.71429;
    text-transform: uppercase;
    color: #fff;
    bottom: 18px;
    margin: 0 auto;
    text-align: center;
    display: block;
    background: url(../images/icons/news_date.svg) no-repeat center center;
    position: absolute;
    padding: 0 8px;
    background-size: 100% 100%;
}

.news-name {
    font-weight: 300;
    font-size: var(--font-24);
    line-height: 1.66667;
    color: #000;
    margin-bottom: 15px;
}

.news-content .text.txt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000;
    height: 90px;
}

span.more {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.875;
    color: #000;
}

.subpage .news-item:before {
    z-index: -1;
}

.news-item:before {
    inset: 0;
    background: url(../images/blog_mask1.png) no-repeat right 0 / 100% 100%;
    content: "";
    display: block;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms;
}

.news-item {
    pointer-events: none;
}

.news-item:hover .news-content * {
    transition: color 300ms;
}

.news-item:hover .news-content * {
    color: var(--color-primary) !important;
}

.news-item:hover:before {
    opacity: 1;
}

.news-link {
    pointer-events: auto;
}

.news-item.slick-current.slick-active:before {
    opacity: 1;

}

.news-box-wrapper .offer-header {
    margin-bottom: var(--space-40);
}

.news-item {
    padding: 36px 44px 41px;
}

.news-slider {
    margin: -36px -44px 0;
}

.news-link {
    display: flex;
    flex-direction: column;
    border-radius: 23px;
    box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.09);
    height: 100%;
    justify-content: space-between;
}

.news-content {
    padding: 34px 40px 40px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    border-radius: 0 0 23px 23px;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-box-container {
    padding-bottom: var(--space-40);
}


.opinion-box-container .offer-header {
    margin-bottom: 26px;
}

.opinion-column {
    padding: 0 11px;
}

.opinion-slider {
    margin: 0 -11px;
}

.opinion-item {
    padding-top: 45px;
    padding-bottom: 35px;
    margin-bottom: 23px;
    background: url(../images/icons/opinion_top.svg) no-repeat top left / 100%, url(../images/icons/opinion_bottom.svg) no-repeat bottom left / 100%;
}

.opinion-author-name {
    font-weight: 300;
    font-size: 18px;
    line-height: 120%;
    color: #000;
    margin-bottom: 0;
}

.opinion-rating {
    color: #7EC320;
}

.opinion-link {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    padding-right: 40px;
}

.opinion-top {
    margin-bottom: 23px;
}

.opinion-text .text.txt {
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.opinion-box-container {
    padding-bottom: 5px;
}

#szkolenia .offer-item.slick-slide.slick-active:nth-child(odd) {
    background: url(../images/offer_blue3.png) no-repeat right 0 / 100% 100%;
}

#szkolenia .offer-item.slick-slide.slick-active:nth-child(even) {
    background: url(../images/offer_blue4.png) no-repeat right 0 / 100% 100%;
}

.offer-photo-left img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.article-content .container {
    clear: none;
}

.subpage #content {
    padding-top: 150px;
}

.breadcrumb-container {
    margin: 20px 0 33px;
}

.page-heading-title {
    font-weight: 100;
    font-size: 5.483vw;
    line-height: 121%;
    text-align: center;
    color: #000;
    margin-bottom: 23px;
}

@media screen and (min-width: 1921px) {
    .page-heading-title {
        font-size: 100px;
    }
}

.text-box-container {
    padding-bottom: 55px;
    position: relative;
}

.subpage .news-slider {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.subpage .news-item {
    width: 33.33%;
}

.text.big-txt {
    font-weight: 275;
    font-size: var(--font-36);
    /* line-height: 40px; */
    line-height: 1.11111;
    text-align: center;
    color: #000;
    padding: 0 9%;
    margin-bottom: 30px;
}

.subpage .news-item:nth-child(6n+1) {
    background: url(../images/blog_mask1.png) no-repeat right 0 / 100% 100%;
}

.subpage .news-item:nth-child(6n+5) {
    background: url(../images/blog_mask2.png) no-repeat right 0 / 100% 100%;
}

.subpage .news-box-container {
    padding-bottom: 0;
}

.news-box-container .pagination-wrapper {
    padding-bottom: 0;
}

.article-image-big {
    display: block;
    position: relative;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 100%;
    margin-bottom: 61px;
}

.article-image-big img {
    display: block;
    max-width: 100%;
}

.news-details-container .page-heading-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.news-details-container .news-date {
    position: relative;
    bottom: auto;
    margin-bottom: 7px;
}


.news-details-container .gallery {
    margin-bottom: 70px;
}

.news-details-container {
    padding-bottom: 10px;
}

.contact-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.contact-left {
    width: 50%;
    padding: 120px 0 0px;
    background: url(../images/icons/contact_left.svg) no-repeat top left;
    background-size: 90% 94%;
}

.contact-right {
    width: 46.5%;
    padding-top: 60px;
    padding-right: 140px;
}

.contact-title {
    font-weight: 300;
    font-size: var(--font-24);
    line-height: 1.66667;
    color: #fff;
    margin-bottom: 24px;
}

.contact-left .contact-link .btn-icon {
    background: var(--color-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 16px;
    border: 0 none;
}

.contact-left .contact-link {
    font-weight: 300;
    font-size: 14px;
    line-height: 2.14286;
    color: #fff;
    padding: 13px;
    margin: 0;
}

.contact-left a.contact-link {
    font-weight: bold;
}

.contact-left .contact-links {
    margin: -12px;
    justify-content: space-between;
}

.contact-links-box {
    padding-bottom: 45px;
    padding-left: 136px;
    padding-right: 212px;
}

.address-box .text.txt {
    color: #fff;
    text-align: left;
}

.contact-left-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 136px;
    padding-right: 0;
}

.contact-img {
    width: 56%;
    margin-left: 0;
    margin-top: -15%;
    position: relative;
    margin-right: 10%;
}

.contact-img img {
    display: block;
    max-width: 100%;
}

.contact-img img.bg-front {
    position: absolute;
    bottom: -40px;
}

.address-box {
    width: 44%;
}

.contact-info {
    display: flex;
    padding: 80px 136px;
    align-items: center;
    margin-bottom: 25px;
    background: url(../images/icons/contact_info.svg) no-repeat center center / 100% 100%;
}

.contact-info-icon {
    width: 86px;
    height: 86px;
    background: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-right: 39px;
}

.contact-info-text {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.contact-info-right {
    font-weight: normal;
    font-size: var(--font-24);
    /* line-height: 30px; */
    line-height: 1.25;
    text-align: right;
    color: #000;
    flex-grow: 1;
}

.contact-info-right strong:after {
    content: '';
    width: 2px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    background: #000;
    margin-left: 50px;
    margin-right: 50px;
}

.contact-info-left {
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.map-box {
    width: 100%;
    height: 670px;
    display: block;
    position: relative;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.map-box iframe {
    width: 100%;
    height: 100%;
}

.contact-box-container {
    padding-bottom: 5px;
}

.subpage .offer-slider {
    margin: -33px -33px -70px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -13px;
    justify-content: center;
}

.offer-item {
    width: 25%;
    padding-bottom: 36px;
}

.subpage .offer-box-container {
    padding-bottom: 60px;
}

.subpage .offer-box-container.offer-list1 .offer-item:nth-child(2) {
    background: url(../images/offer_yellow.png) no-repeat top right / 100% 100%;
}

.parents-box-title {
    font-weight: 100;
    font-size: 5vw;
    line-height: 1.04167;
    text-align: center;
    color: #000;
    margin-bottom: 50px;
}


@media screen and (min-width: 1921px) {
    .parents-box-title {
        font-size: 96px;
    }
}

.parents-box-container {
    padding-top: 10px;
    padding-bottom: 30px;
    position: relative;
}

.parents-box {
    display: flex;
    margin-bottom: 90px;
}

.parent-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    padding: 0 30px;
}

.parent-icon {
    width: 190px;
    height: 190px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    align-items: center;
    margin-bottom: 36px;
    padding: 50px;
}

.parent-text {
    font-weight: 400;
    font-size: 16px;

    line-height: 1.875;
    text-align: center;
    color: #000;
}

.parents-info {
    font-weight: 400;
    font-size: var(--font-24);
    line-height: 1.66667;
    text-align: center;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    background: url(../images/icons/parent_info.svg) center center / 100% 100%;
    max-width: 1390px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}


.offer-details-photo-content {
    display: block;
    width: 100%;
    max-width: 824px;
}

.offer-details-no-info .offer-details-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.offer-details-no-info .offer-details-photo {
    padding: 0;
    justify-content: center;
}

.offer-details.offer-details-no-info .offer-cat {
    margin-left: auto;
    padding-bottom: 0;
    margin-right: auto;
}

.offer-details.offer-details-no-info .page-heading-title {
    text-align: center;
}

.offer-details.offer-details-no-info {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}

.offer-details .offer-cat {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.71429;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    display: inline-block;
    background: url(../images/icons/cat_green.svg) no-repeat center center;
    padding: 0 8px;
    background-size: 100% 100%;
    position: relative;
    bottom: auto;
    margin: 0 0 35px;
}

.offer-details-right .offer-info-box {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    padding-bottom: 30px;
    margin-bottom: 0px;
}

.offer-details-right .offer-info {
    width: 50%;
}

.offer-details-right .offer-info-icon {
    width: 46px;
    height: 46px;
    background: var(--color-primary);
    border-radius: 50%;
    margin-right: 19px;
    flex-shrink: 0;
}

.offer-details-right .offer-info-icon svg, .offer-details-right .offer-info-icon svg * {
    stroke: #fff;
}

.offer-details-right .offer-price {
    text-align: left;
    font-weight: 400;
    font-size: 14px;
    /* line-height: 24px; */
    line-height: 1.71429;
    color: #000;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 45px;
}

.offer-details-right .offer-price strong {
    font-weight: 700;
    font-size: var(--font-36);
    /* line-height: 24px; */
    line-height: 0.66667;
    text-align: right;
    color: #50ae3d;
    padding-left: 18px;
}

.menu-box-menu li {
    padding: 3px 12px;
}

.menu-box {
    padding: var(--space-50) 0;
    border-radius: 10px;
    background: #fff url(../images/icons/menu_bg.svg) no-repeat center center / 100% 100%;
}


.menu-box-menu ul {
    display: flex;
    justify-content: center;
}

.menu-box-menu ul li a {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    line-height: 125%;
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 25px;
    min-width: 234px;
    background: #fff;
}

.menu-box-menu ul li a.active {
    background: var(--color-secondary);
    color: #fff;
    font-weight: bold;
}


.menu-box-menu ul li a:hover {
    background: var(--color-secondary);
    color: #fff;
    font-weight: bold;
}


.product-section-box {
    padding-top: var(--space-40);
}


.product-submenu.affix {
    position: fixed;
    top: 150px;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 2;
}

.product-submenu.affix {
    /* max-width: 1360px; */
    /* margin: 0 auto; */
}


.offer-details {
    display: flex;
    padding-top: 20px;
    justify-content: space-between;
    padding-bottom: 70px;
}

.offer-details .page-heading-title {
    font-weight: 275;
    font-size: var(--font-36);
    line-height: 1;
    color: #000;
    text-align: left;
}

.offer-details-photo {
    width: 58.7%;
    display: flex;
    justify-content: flex-end;
    padding-left: var(--container-padding);
    margin-top: 5px;
}

.offer-details-photo img {
    display: block;
    max-width: 100%;
    border-radius: 23px;
}

.offer-details-right {
    width: 36%;
}

.section-details-title {
    font-weight: 100;
    font-size: 5.483vw;
    line-height: 122%;
    text-align: center;
    color: #000;
    margin-bottom: 17px;
}

@media screen and (min-width: 1921px) {
    .section-details-title {
        font-size: 100px;
    }
}

.product-section .text.txt {
    margin-bottom: 70px;
}

.product-section {
    padding-bottom: 70px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 320px;
}


.question-box {
    display: flex;
    justify-content: space-between;
    padding-top: 0;
    align-items: flex-start;
}

.question-box .form-box-wrapper {
    width: 46.3%;
    padding-bottom: var(--space-30);
}

.question-img {
    width: 60%;
    margin-right: -10%;
}

.question-img img {
    display: block;
    max-width: 100%;
}

.product-section:last-child {
    padding-bottom: var(--space-40);
}

.club-box:nth-child(3n+1) {
    background: url(../images/icons/senior.svg) no-repeat center center / 100% 89%;
}

.club-box:nth-child(3n+2) {
    background: url(../images/icons/young.svg) no-repeat center center / 100% 100%;
}

.club-box:nth-child(3n+3) {
    background: url(../images/icons/traveler.svg) no-repeat center center / 100% 91%;
}


.clubs-box-container {
    /* padding-top: 110px; */
    /* padding-bottom: 60px; */
}

.club-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1640px;
    margin: 0 auto 80px;
}

.club-box:nth-child(3n+1) .club-img img.bg-front {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 100%;
}

.club-text {
    width: 53%;
    padding-left: 17%;
    padding-bottom: 125px;
    padding-top: 125px;
}

.club-img {
    width: 41%;
    position: relative;
    margin-right: 2.5%;
    margin-bottom: 50px;
}

.club-title {
    position: relative;
    z-index: 1;
    font-weight: 200;
    font-size: 3.61878vw;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 0;
    overflow: visible;
}

.club-title strong {
    line-height: 1.1;
    font-size: 5.483vw;
    font-weight: 600;
}

.club-box:nth-child(3n+3) .club-bottom .btn {
    background: var(--color-quaternary);
    color: #fff;
    border-color: var(--color-quaternary);
}

.club-box:nth-child(3n+3) .club-bottom .btn:hover {
    background: #fff;
    color: var(--color-quaternary);
    border-color: var(--color-quaternary);
}

@media screen and (min-width: 1921px) {
    .club-title strong {
        font-size: 100px;
    }

    .club-title {
        font-size: 70px;
    }
}

.club-box:nth-child(3n+1) .club-title {
    margin-left: -10%;
    margin-right: -10%;
    margin-bottom: 10px;
}

.club-box:nth-child(3n+2) .club-title {
    margin-left: -33%;
    margin-right: -6%;
}

@media screen and (min-width: 1921px) {
    .club-title div {
        font-size: 70px;
    }
}

.club-box:nth-child(3n+3) .club-title {
    margin-left: -90px;
}

.club-box:nth-child(3n+2) .club-title div:first-child {

}

.club-title .line1 {
    display: block;
    font-weight: bold;
    padding-right: 20%;
    text-align: right;
    margin-bottom: -36px;
}

.club-title .line2 {
    text-align: left;
    margin-left: -1%;
}

.club-img img {
    display: block;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}

.club-title .line3 {
    text-align: right;
    display: block;
    padding-right: 15%;
}

.club-bottom .btn:only-child {
    margin-top: 30px;
}

.club-bottom .text.txt {
    color: #fff;
    margin-bottom: 33px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.club-bottom .btn {
    margin-top: 5px;
}

.club-box:nth-child(3n+2) {
    flex-direction: row-reverse;
}

.club-box:nth-child(3n+2) .club-text {
    padding-right: 17%;
    padding-left: 0;
    padding-top: 80px;
}

.club-box:nth-child(3n+2) .club-img {
    margin-right: 0;
    margin-left: 4%;
    margin-top: -50px;
}

.club-box:nth-child(3n+2) .club-title .line1 {
    text-align: left;
    padding-right: 0;
    margin-left: -34%;
}

.club-box:nth-child(3n+2) .club-title .line2 {
    text-align: right;
    margin-left: 0;
    width: 105%;
    display: block;
}

.club-box:nth-child(3n+3) span.line1 {
    text-align: center;
    padding-right: 5%;
}

.club-box:nth-child(3n+3) .club-text {
    padding-top: 124px;
    width: 53%;
    margin-right: -3%;
}

.club-box:nth-child(3n+3) .club-title .line2 {
    margin-left: -44%;
}

.club-box:nth-child(3n+3) .club-img {
    width: 47%;
    margin-right: 3%;
    margin-top: -70px;
}

.club-box:nth-child(3n+2) .club-img img.bg-front {
    position: absolute;
    bottom: -50px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.club-box:nth-child(3n+2) .club-bottom .btn {
    background-color: var(--color-tertiary);
}

.club-box:nth-child(3n+2) .club-bottom .btn:hover {
    background: #fff;
    border-color: var(--color-tertiary);
    color: var(--color-tertiary);
}

.club-box:nth-child(3n+3) .club-img img.bg-front {
    position: absolute;
    left: 13%;
    right: 0;
    bottom: -50px;
    max-width: 88%;
    margin: 0 auto;
}


.club-box:last-child {
    margin-bottom: 30px;
}

.files-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -34px;
    justify-content: center;
}

.files-list ul li {
    width: 25%;
    position: relative;
    padding: 0 34px;
    pointer-events: none;
    padding-bottom: 30px;
    margin-bottom: 38px;
}

.files-list ul li:before {
    inset: 0;
    z-index: -1;
    position: absolute;
    background: url(../images/file_bg.png) no-repeat top center / 97% 100%;
    content: "";
    opacity: 0;
    transition: opacity 300ms;
    display: block;
}

.files-list ul li:hover:before {
    opacity: 1;
}

.files-list ul li a {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 23px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 60px;
    pointer-events: auto;
    height: 100%;
    justify-content: space-between;
    padding-top: 55px;
    padding-bottom: 94px;
    background: #fff;
}

.icon-file {
    width: 50px;
    display: block;
    margin: 0 auto 19px;
}

.file-name {
    font-weight: 200;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: center;
    color: #000;
    margin-bottom: 43px;
}

.file-download-box {
    display: flex;
    border: 1px solid var(--color-secondary);
    border-radius: 30px;
    padding: 7px 28px 7px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-secondary);
}

.download-icon {
    margin-left: 19px;
}

.files-list {
    padding-top: 28px;
}

.files-box-container {
    padding-bottom: 23px;
}


.files-list ul li a:hover .icon-file svg * {
    stroke: var(--color-primary);
}

.files-list ul li a:hover .file-download-box {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.parents-box-container > img {
    display: block;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: -180px;
}


.text-box-container > img {
    display: block;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 182px;
    max-width: 1592px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.offer-box-container.offer-list1 > img {
    position: absolute;
    width: 100%;
    top: -170px;
}

#content {
    padding-top: 131px;
}

.offer-slider2 .slick-track {
    display: flex !important;
    height: auto;
}

.offer-slider2 .slick-slide {
    height: inherit !important;
}

.offer-slider .slick-track {
    display: flex !important;
    height: auto;
}

.offer-slider .slick-slide {
    height: inherit !important;
}

.slick-arrow.slick-hidden, .slick-slide.slick-loading img {
    display: none !important;
}

.page-heading-title + .text.txt.text-intro {
    text-align: center;
}

.form .consent-row {
    margin-bottom: var(--space-30);
}

.news-slider .slick-track {
    display: flex !important;
    height: auto;
}

.news-slider .slick-slide {
    height: inherit !important;
}

.subpage .offer-box-container .text.txt {
    padding-bottom: 40px;
}

.page-heading-title + .text.txt h2 {
    text-align: center;
    font-size: var(--font-36);
}

a.item-rating-star {
    color: var(--color-secondary);
}


.training-sub-box-container .club-title {
    color: var(--color-default);
    font-size: var(--font-48);
}

.training-sub-box-container .club-title .line1 {
    margin: 0;
    padding: 0;
    text-align: center;
}

.training-sub-box-container .club-title .line2 {
    margin-left: atuo;
    text-align: center;
}

.training-sub-box-container .club-text {
    padding: 0 20px;
    text-align: center;
}

.training-sub-box-container .club-box:nth-child(even) {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
}

.training-sub-box-container .club-box {
    align-items: center;
    justify-content: center;
}

.training-sub-box-container .club-text {
    padding: 0 20px;
    text-align: center;
}


.decoration-1 .offer-photo-left img.bg-back {
    position: absolute;
    z-index: 1;
    top: -2%;
    left: 0;
    right: 0;
}


.decoration-3 .offer-photo-left img.bg-front {
    position: absolute;
    max-width: 76%;
    z-index: 1;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
}

.decoration-3 .offer-photo-left img.bg-other {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -22px;
}

.decoration-2 .offer-photo-left img.bg-front {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
}

.decoration-2 .offer-photo-left img.bg-other {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 45px;
}

.article-image img.bg-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    max-width: 80%;
}

.article-image img.bg-front {
    position: absolute;
    bottom: -50px;
    left: 19px;
    right: 0;
    margin: 0 auto;
    width: 100%;
}

#main-menu ul {
    align-items: center;
    justify-content: center;
}

.slider-photo {
    -webkit-mask-image: url('../images/slide_mask.png');
    mask-image: url('../images/slide_mask.png');
}

.slick-cloned.opacityZero {
    opacity: 1 !important;
    pointer-events: auto !important;
}


/* menu box*/

.menu-box {
    max-width: 100%;
    background-color: rgba(20, 100, 45, 0);
    transition: background-color .2s linear, padding .2s linear;
}

.menu-box.sticky {
    top: 156px;
    width: 100%;
    left: 0;
    margin: 0 auto;
    right: 0;
    z-index: 999;
    position: fixed;
}

.menu-box-menu {
    margin: 0 auto;
    padding: 0 var(--container-padding);
    max-width: 1720px;
}

.menu-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: -10px;
}


@media screen and (min-width: 1140px) {
    .menu-box-menu {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .menu-box-toggle {
        display: none;
    }
}

