/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-30: 30px;
    --space-25: 25px;

    --font-50: clamp(28px, 2.6vw, 50px);
    --font-48: clamp(25px, 2.5vw, 48px);
    --font-40: clamp(24px, 2.1vw, 40px);
    --font-35: clamp(22px, 1.6vw, 30px);
    --font-36: clamp(18px, 2.2vw, 36px);
    --font-30: clamp(18px, 1.6vw, 30px);
    --font-26: clamp(16px, 1.4vw, 26px);
    --font-24: clamp(16px, 1.3vw, 24px);

    --font-22: 22px;
    --font-20: 20px;
    --font-18: 18px;
    --container-padding: 40px;
    --row-gap: 5px;

    /** SPECIFIC **/
    --gradient-primary: linear-gradient(90deg, #fadd8d 0%, #f6d484 30.35%, #deb662 63.06%, #fadd8d 100%);
    --gradient-primary-bright: linear-gradient(90deg, #fadd8d 0%, #f6d484 35.35%, #deb662 53.06%, #fadd8d 90%);
    --color-primary: #F6D383;
    --color-secondary: #00ff00;
    --color-default: #333;
    --second-family: "Gotu", sans-serif;

    --shine-duration: 2s;
}

body {
    color: #000;
    font-family: "Poppins", sans-serif;
    background: url(../images/body_bg.webp) repeat-y top center;
}

body.subpage {
    background: url(../images/body_bg.webp) repeat-y top center;
}

/**
 * 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');}
*/
.icon-mask.icon-mask {
    -webkit-mask-size: contain;
    -mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: currentColor;
}

.icon-loupe {
    -webkit-mask-image: url('../images/icons/loupe.svg');
    mask-image: url('../images/icons/loupe.svg');
}

.icon-arrow-left {
    -webkit-mask-image: url('../images/icons/arrow_left.svg');
    mask-image: url('../images/icons/arrow_left.svg');
}

.icon-arrow-right {
    -webkit-mask-image: url('../images/icons/arrow_right.svg');
    mask-image: url('../images/icons/arrow_right.svg');
}

/**
 * BUTTONS
 */

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

.btn-lg {
    border: 1px solid transparent;
    padding: 0 34px;
    height: 46px;
    line-height: 44px;
    border-radius: 0;
    box-shadow: 0 0 0 transparent !important;
    font-size: 14px;
    font-weight: 500;
}

.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-right: 7px;
    padding-left: 14px;
    min-width: 212px;
    position: relative;
}

.btn.has-icon .btn-icon {
    width: 44px;
    height: 44px;
    padding: 6px;
    margin-right: 0;
    margin-left: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn.has-icon .btn-icon:last-child {
    position: absolute;
    right: 6px;
    margin-left: 0;
}

.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:hover, .btn:focus, .btn:active, .btn:focus:active {
    -webkit-text-stroke-color: currentColor;
}

.btn {
    transition: all 300ms !important;
    -webkit-text-stroke: 0.5px transparent;
}

.btn.btn-primary:before,
.btn.btn-secondary:before {
    content: "";
    display: block;
    transition: all 2s, opacity 300ms;
    background: var(--gradient-primary);
    position: absolute;
    inset: 0;
    z-index: -1;
}

.btn.btn-secondary:before {
    opacity: 0;
}

.btn.btn-primary,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary:focus:active {
    color: #000;
    background: transparent;
    z-index: 2;
    position: relative;
    border: 1px solid transparent;
    border-image-source: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    border-image-slice: 1;
}

.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 {
    z-index: 2;
    position: relative;
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

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

.btn.btn-default:before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border: 1px solid transparent;
    border-image-source: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    border-image-slice: 1;
    opacity: 0;
    z-index: -1;
    transition: opacity 300ms;
}

.btn.btn-default,
.btn.btn-default:focus,
.btn.btn-default:active,
.btn.btn-default:focus:active {
    background-color: #fff;
    position: relative;
    z-index: 2;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

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

.btn.btn-default svg {
    stroke: #000;
}

.btn svg *[stroke] {
    stroke: currentColor;
}

.btn svg *[fill] {
    fill: currentColor;
}

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


@media screen and (min-width: 1140px) {
    .btn-primary:not([disabled]):focus:before,
    .btn-primary:not([disabled]):hover:before,
    .btn-primary:not([disabled]).active:focus:before,
    .btn-primary:not([disabled]).active:hover:before {
        opacity: 0 !important;
    }

    .btn-primary:not([disabled]):focus,
    .btn-primary:not([disabled]):hover,
    .btn-primary:not([disabled]).active:focus,
    .btn-primary:not([disabled]).active:hover {
        background: transparent !important;
        color: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
    }

    header.sticky .btn-primary:not([disabled]):focus,
    header.sticky .btn-primary:not([disabled]):hover,
    header.sticky .btn-primary:not([disabled]).active:focus,
    header.sticky .btn-primary:not([disabled]).active:hover {
        background: transparent !important;
        color: #000 !important;
        border-color: var(--color-primary) !important;
    }


    .btn-secondary:not([disabled]):hover:before,
    .btn-secondary:not([disabled]).active:hover:before {
        opacity: 1;
    }

    .btn-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        color: #000;
    }


    .btn-default:not([disabled]):hover:before,
    .btn-default:not([disabled]).active:hover:before {
        opacity: 1;
    }

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


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


}


/**
 * 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-30);
    text-transform: none;
    line-height: normal;
    margin-bottom: 20px;
    font-weight: 400;
    color: #000;
}

.text.txt h2 {
    font-size: var(--font-26);
    text-transform: none;
    line-height: normal;
    margin-bottom: 20px;
    font-weight: 400;
    color: #000;
}

.text.txt h3 {
    font-size: var(--font-24);
    text-transform: none;
    line-height: normal;
    margin-bottom: 20px;
    font-weight: 400;
    color: #000;
}

.text.txt h4 {
    font-size: var(--font-20);
    text-transform: none;
    line-height: normal;
    margin-bottom: 20px;
    font-weight: 400;
    color: #000;
}

.text.txt h5 {
    font-size: var(--font-18);
    text-transform: none;
    line-height: normal;
    margin-bottom: 20px;
    font-weight: 400;
    color: #000;
}


.text.txt h6 {
    font-size: 16px;
    text-transform: none;
    line-height: normal;
    margin-bottom: 20px;
    font-weight: 400;
    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.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #000;
}

/** 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 {
    color: inherit;
    text-decoration: underline;
}

.text a:hover {
    color: var(--color-primary);
}

.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;
    display: flex;
    justify-content: center;
}

div#container-page {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
    /* background: url(../images/page.jpg) no-repeat center 0; */
}

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
}

/*.header-top {    background-color: #337ab7;}
.header-top-inner {    width: 100%;    display: flex;    justify-content: flex-end;    align-items: stretch;    min-height: 54px;}
.header-top-right {    display: flex;    align-items: stretch;}*/


.top {
    padding-top: 17px;
    padding-bottom: 17px;
}

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

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

.logo {
    float: none;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    max-width: 100%;
    transition: all 300ms ease-out;
}

.logo a img.logo-main {
    display: block;
}

.logo a img.logo-sub {
    display: none;
}

.subpage .logo a img.logo-main {
    display: none;
}

.subpage .logo a img.logo-sub {
    display: block;
}

header.sticky .logo a img.logo-main {
    display: none;
}

header.sticky .logo a img.logo-sub {
    display: block;
}

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

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

#main-menu li {
    position: relative;
}

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

#main-menu li a {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgb(246, 211, 131);
}


#main-menu li a:hover {
    transition: -webkit-text-stroke 0.3s;
    -webkit-text-stroke: 0.6px currentColor;
}

#main-menu li.active a {

    transition: -webkit-text-stroke 0.3s;
    -webkit-text-stroke: 0.6px currentColor;
}

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

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

header.sticky #main-menu li a, .subpage header #main-menu li a {
    color: #000;
}

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

.contact-link {
    align-items: center;
    display: flex;
    padding: 0;
    font-weight: 600;
    font-size: 15px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.contact-link .btn-icon {
    margin-right: 8px;
    position: relative;
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    border: 0 none;
    padding: 0;
    text-align: center;
}

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

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

}

@media screen and (min-width: 1140px) {
    .contact-link:hover {
        background: #fff;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

}


.main-menu-button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-primary);
    color: #000;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-left: 6px;
    position: relative;
}


.main-menu-button span:nth-child(1) {
    bottom: 14px;
}

.main-menu-button span:nth-child(3) {
    top: 14px;
}

.main-menu-button.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 0;
    bottom: 0;

}

.main-menu-button.active span:nth-child(2) {
    transform: rotate(45deg);
    opacity: 0;
}

.main-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 0;
    top: 0;
}

.main-menu-button span {
    background-color: currentColor;
    width: 22px;
    height: 2px;
    display: block;
    transition: all 300ms;
    position: absolute;
    inset: 0;
    margin: auto;
}


.top-right .btn {
    margin-left: 46px;
    padding-left: 0;
    padding-right: 20px;
}


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

/**
 * FOOTER
 */

footer {
    position: relative;
}

.footer-mask {
    background: rgba(0, 0, 0, 0.5);
}

.footer-box-container {
    position: relative;
    padding-top: calc(var(--space-40) + var(--space-50) + var(--space-50));
    background-size: cover;
    background-position: center top;
}

.footer-box-wrapper {
    position: relative;
}

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


img.logo-min {
    display: block;
    margin-bottom: var(--space-40);
    max-width: 100%;
    margin-right: -10px;
}


.contact-link-bottom {
    display: flex;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 4px;
    font-size: var(--font-30);
    font-weight: 600;
    line-height: normal;
    background: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-link-bottom:hover {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.contact-link-bottom .btn-icon {
    border-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 19px 0 0;
    flex-shrink: 0;
}

.footer-subtitle {
    font-size: var(--font-30);
    font-weight: 300;
    line-height: normal;
    background: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.footer-title {
    font-size: 4.428vw;
    font-weight: 400;
    text-transform: uppercase;
    background: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--second-family), sans-serif;
    line-height: 115%;
    padding-top: 8px;
    margin-bottom: calc(var(--space-50) + 5px);
}

@media screen and (min-width: 1921px) {
    .footer-title {
        font-size: 85px;
    }
}

.footer-left {
    width: 42%;
    padding-bottom: calc(var(--space-40) + var(--space-50) + var(--space-50))
}

.footer-middle {
    width: 34%;
    position: absolute;
    left: 33%;
    bottom: -79px;
}

.footer-right {
    width: 25.5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: var(--space-50);
    align-items: flex-end;
}

.footer-right .social-box h3 {
    font-size: var(--font-18);
    font-weight: 500;
    line-height: normal;
    color: rgb(255, 255, 255);
    margin-left: 27px;
}

.footer-right .social-box {
    display: flex;
    align-items: center;
}

.footer-right .social-box .social-icon {
    width: 56px;
    height: 56px;
}

.footer-right .social-box .social-icon svg {
    width: 100%;
}


.footer-right .social-list > ul {
    display: flex;
}


.footer-middle img.footer-mask-key {
    position: absolute;
    right: -39%;
    top: 3%;
    width: 76%;
    z-index: 1;
}

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


/* FOOTER BAR */
.footer-bar {
    line-height: 30px;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    position: relative;
}

.footer-bar-content {
    padding: 22px 0 26px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bar-left {
    display: flex;
    text-align: left;
    gap: 40px;
}

.footer-bar-content > * {
    float: left;
    color: #fff;
    font-size: 13px;
}

.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-size: 13px;
    line-height: 24px;
}

.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;
    font-size: 13px;
}

.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: 13px;
}

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

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


/**
 * FORM
 */

.form-box-title {
    font-weight: 300;
    font-size: var(--font-35);
    text-align: center;
    color: #000;
    margin-bottom: var(--space-40);
}

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

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

.form .form-element-name {
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    color: #000;
}


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

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

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.69231;
    color: #3b3b3b;
}

.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: #fff;
    margin-bottom: var(--space-50);
}

/*---- 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: rgba(0, 0, 0, 0.1);
    border-radius: 0;
    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: 15px;
    padding-right: 44px;
    color: #000;
    font-weight: 400;
}

.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: 20px;
    transition: all 0.4s;
    right: 0;
    color: #000;
    text-align: center;
    font-size: 0;
    border: none !important;
    background: url(../images/icons/arrow_down.svg) no-repeat center center;
}

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

.select2-container--default.select2-container--open .select2-selection__arrow {
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.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);
    color: #000;
}

@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-primary.btn-lg {
    margin: 0 auto;
}


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

}

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

@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: #6d6e71;
}

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

/**


/**
 * LOGOTYPES SLIDER
 */
.logotypes-box-container {
    padding-top: var(--space-60);
    padding-bottom: var(--space-60);
}

.logotypes-box-title {
    color: #00306d;
    font-size: var(--font-22);
    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;
}

header.sticky .social-icon:hover {
    color: #000;
}

.social-icon svg {
    position: relative;
    z-index: 2;
}

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

footer .social[title="Facebook"] .social-icon:before {
    -webkit-mask-size: 12px 20px, 100% 100%;
}

footer .social[title="Instagram"] .social-icon:before {
    -webkit-mask-size: 20px 20px, 100% 100%;
}

footer .social[title="Facebook"] .social-icon:before {
    -webkit-mask-image: url(../images/icons/social/facebook.svg), -webkit-linear-gradient(0, #fff, #fff);
    mask-image: url(../images/icons/social/facebook.svg), linear-gradient(0, #fff, #fff);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: 10px 18px, 100% 100%;
    mask-composite: exclude;
}

footer .social[title="Instagram"] .social-icon:before {
    -webkit-mask-image: url(../images/icons/social/instagram.svg), -webkit-linear-gradient(0, #fff, #fff);
    mask-image: url(../images/icons/social/instagram.svg), linear-gradient(0, #fff, #fff);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: 17px 17px, 100% 100%;
    mask-composite: exclude;
}

.social-icon:before {
    content: "";
    display: block;
    transition: opacity 300ms;
    background: var(--gradient-primary-bright);
    position: absolute;
    border: 1px solid var(--color-primary);
    inset: -1px;
    border-radius: 50%;
}

.social-icon:hover:before {
    opacity: 0;
}

footer .social-icon svg {
    width: 21px;
    height: 20px;
}

.social-icon svg {
    width: 17px;
    height: 18px;
}

.social-icon {
    display: flex;
    border: 1px solid var(--color-primary);
    justify-content: center;
    align-items: center;
    width: 47px;
    transition: color 300ms;
    height: 47px;
    position: relative;
    color: #000;
    border-radius: 50%;
}

footer .social-icon {
    color: transparent;
}

footer .social-icon:hover,
.social-icon:hover {
    color: #deb663;
}

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

.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: 51%;
    margin-right: 58px;
    margin-bottom: 20px;
}

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

.article-subtitle {
    font-weight: 400;
    font-size: var(--font-26);
    color: #000;
    margin-top: -4px;
    margin-bottom: var(--space-40);
}

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    padding: 5px;
}

.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(0, 0, 0, 0.6);
}

.gallery-picture-hover > * {
    background: url(../images/key.png) no-repeat center center;
    text-indent: -20000px;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 148px;
    height: 138px;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 0;
    margin: 0 auto;
    display: block;
    top: 50%;
}

@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);
}

/* 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;
    padding: calc(var(--space-50) + 20px) 0;
    max-width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

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

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

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    line-height: 50px;
    padding: 0 20px;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: justify;
    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: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 0 none;
}

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

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

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

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

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

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

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

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

.box-slider .slick-list {
    width: 100%;
}

.box-slider .offer {
    flex-shrink: 0;
}

.box-slider {
    display: flex;
    overflow: hidden;
}

.main-slider .slide {
    flex-shrink: 0;
    width: 100%;
}
.slider-top-wrapper{
    position: relative;
    width: 100%;
}
.slider-nav-wrapper{
    bottom: var(--space-60);
    width: 100%;
    position: absolute;
    pointer-events: none;
    left: 0;
}
.slider-nav button .icon{
    color: #000;
}
.slider-nav button:before{
    z-index: -1;
    background: var(--gradient-primary);
    position: absolute;
    inset: -1px;
    content: "";
    opacity: 1;
    transition: opacity 300ms;
    display: block;
}
.slider-nav button:hover:before{
    opacity: 0;
}
.slider-nav button{
    background: #fff;
    position: relative;
    z-index: 2;
    color: #000;
    pointer-events: auto;
}
.slider-nav{
    display: flex;
    gap: 10px;
}

.main-slider {
    display: flex;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.main-slider .slick-list {
    width: 100%;
}

.main-slider .slick-track {
    width: 100%;
    display: flex;
    align-items: stretch;
}

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

.main-slider .slick-slide > div {
    height: 100%;
}

.main-slider .slick-slide {
    height: unset !important;
}

.slider .slide {
    display: flex !important;
    width: 100%;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: unset !important;
}

.slider {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: stretch;
}

.main-slider {
    position: relative;
    overflow: hidden;
}

.slider .container {
    position: relative;
    z-index: 2;
}

.slider-photo {
    position: absolute !important;
    inset: 0;
}

.slider-photo > * {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mask.slider-mask {
    background: rgba(0, 0, 0, 0.30);
}

.mask.slider-mask2 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.slider-text-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    margin: 0 auto;
    height: 100%;
    max-width: 1640px;
    width: 100%;
    padding-top: calc(400px + 10%);
}

.slider-text {
    width: 59%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-bottom: min(var(--space-50), 3vw);
    justify-content: flex-end;
}

.title1 {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: 7.5vw;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
}

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

.slider-text-box .svg-wrapper svg path, .mainpage .about-box-container .svg-wrapper svg path {
    stroke: #fff;
}

.shine .svg-wrapper svg path {
    stroke-dashoffset: 0 !important;
}

.svg-wrapper svg path {
    transition-timing-function: linear;
}

.shine .svg-wrapper svg {
    opacity: 1;
}

.svg-wrapper svg {
    opacity: 0;
    width: clamp(250px, 33vw, 627px);
    max-width: unset;
    max-height: unset;
    display: block;
}

.svg-wrapper {
    position: absolute;
    right: 0;
    left: auto;
    line-height: 0;
    bottom: -16px;
    overflow: hidden;
    transition: all 2s;
}


.description {
    color: #FFF;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.7px;
    padding-top: 24px;
    margin-bottom: var(--space-40);
}

.slider-search-box .search-box {
    pointer-events: auto;
}

.slider-search-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 120px;
    bottom: 44%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
    margin: 0 auto;
    max-width: 1720px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.slider-search-box img {
    display: block;
    max-width: 100%;
}

.slider-search-title {
    font-weight: 300;
    font-size: var(--font-50);
    background: linear-gradient(115deg, #fadd8d 0%, #d8ae5a 14.63%, #f6d484 38.76%, #cda14a 65.01%, #deb662 78.16%, #e5be6c 82.78%, #efcb7a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--space-40) + 5px);
}

.offer-box-title {
    font-weight: 300;
    font-size: var(--font-40);
    color: #000;
}

.box-title {
    line-height: 1.25;
}

.form-detalis {
    background: url(../images/offer_bg.webp) center center /cover;

}

.offer-box-container {
    padding-top: calc(var(--space-40) + 5px);
    padding-bottom: calc(var(--space-50) + var(--space-40) + 5px);
    background: url(../images/offer_bg.webp) no-repeat top center;
}

.top-right .btn.has-icon .btn-icon {
    margin-right: 4px;
    margin-left: 0;
}

.offer-photo img {
    display: block;
    width: 100%;
}

.offer-title {
    font-weight: 600;
    font-size: var(--font-22);
    color: #000;
    line-height: 1.25;
    margin-bottom: 3px;
}

.text.desc {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    padding-bottom: 13px;
}

ul.features-list li {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    margin-bottom: 13px;
}

.features-list li span.feature-value {
    font-weight: 600;
}

.kontener_cena_box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.kontener_cena_box > * {
    flex-grow: 1;
}

.kontener_cena {
    min-width: 110px;
    font-weight: 600;
    font-size: var(--font-30);
    color: #000;
}

.box-slider {
    margin: 0 -38px;
}

.offer {
    width: 33.33%;
    padding: 0 38px;
}

.offer-content-top {
    padding: 20px 30px 0;
}

.offer-content-bottom {
    padding: 2px 30px 22px;
}

.features-list {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    line-height: 130%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 7px;
    margin-bottom: 23px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 20px;
}


.slick-track {
    display: flex !important;
}

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

.offer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.offer-top {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-inner {
    transition: all 300ms;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    background: #fff;
    padding-bottom: 16px;
    flex-direction: column;
    height: 100%;
}

.offer-photo img {
    transition: all .3s;
}

.offer-photo {
    overflow: hidden;
}

.offer-inner:hover img {
    transform: scale(1.05);
}

.offer-inner:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.05), 0 8px 8px 0 rgba(0, 0, 0, 0.04), 0 18px 11px 0 rgba(0, 0, 0, 0.03), 0 33px 13px 0 rgba(0, 0, 0, 0.01), 0 51px 14px 0 rgba(0, 0, 0, 0);

}

.box-slider button.slick-arrow {
    width: 50px;
    height: 50px;
    border: 0 none;
    position: absolute;
    top: 50%;
    margin-top: -25px;
}

.box-slider button.prev {
    left: -60px;
    background: url(../images/icons/arrow_left.svg) no-repeat center center;
}

.box-slider button.next {
    right: -60px;
    background: url(../images/icons/arrow_right.svg) no-repeat center center;
}

.box-slider button.prev:hover {
    background: url(../images/icons/arrow_left_gold.svg) no-repeat center center;
}

.box-slider button.next:hover {
    right: -60px;
    background: url(../images/icons/arrow_right_gold.svg) no-repeat center center;
}

.about-box-title {
    font-weight: 400;
    font-size: 6.615vw;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--second-family), sans-serif;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    padding-bottom: 30px;
    margin-left: max(-209px, -11vw);
    margin-bottom: calc(var(--space-40) + var(--space-40) + var(--space-25));
    padding-top: 15px;
}

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

.about-box-container {
    position: relative;
    padding-top: calc(var(--space-60) + var(--space-60));
}

.about-box {
    display: flex;
    justify-content: space-between;
    padding: 0 14px 0 60px;
    align-items: flex-end;
}


.about-photo {
    width: 37%;
    position: relative;
}

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

.about-text {
    width: 51%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: calc(var(--space-40) + var(--space-40) + var(--space-25));
}

.about-text .text.txt {
    font-size: var(--font-18);
    line-height: 2;
    color: #fff;
    margin-bottom: var(--space-40);
}

img.key-mask {
    right: 74%;
    top: 0;
    position: absolute;
    max-width: 133%;
    z-index: 1;
}

.about-box-container .container.container-small {
    position: relative;
}

.category-box-title {
    font-weight: 400;
    font-size: 6.615vw;
    background: var(--gradient-primary);
    background-clip: text;
    margin-right: -0.06em;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--second-family), sans-serif;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1;
}

@media screen and (min-width: 1921px) {
    .category-box-title {
        font-size: 127px;

    }
}

.box-right-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -26px;
}

.category-box-container {
    padding-top: calc(var(--space-50) + var(--space-40) + 5px);
    padding-bottom: 0;
    background: url(../images/category_bg.webp) no-repeat center top;
}

.grid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--space-40) + var(--space-40) + var(--space-25));
}

.grid-item:nth-child(even) {
    flex-direction: row-reverse;
}

.grid-text {
    width: 45%;
    padding: 0 8.5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.grid-photo {
    width: 54.878%;
}

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

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


.grid-text .text.txt h3 {
    font-weight: 300;
    font-size: var(--font-40);
    color: #000;
    text-transform: none;
    line-height: normal;
    margin-bottom: 25px;
}

header .top {
    transition: padding 300ms;

}

header:before {
    background: url(../images/bg.webp) no-repeat center top;
    opacity: 0;
    transition: opacity 300ms;
    content: "";
    display: block;
    z-index: -1;
    position: absolute;
    inset: 0;
}

header.sticky:before {
    opacity: 1;
}

.stand-out-box {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.stand-out-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: max(20px, 6.615vw);
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    line-height: 111%;
    margin-bottom: calc(var(--space-60) + var(--space-60) + var(--space-25));
}

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

.stand-out-bg img{
    width: 45%;
}
.stand-out-bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: url(../images/bg_stand.webp) repeat-y top center / 100%;
}

.stand-out-box-right-wrapper{
    position: relative;
}
.stand-out-box-right-wrapper .stand-out-box-right.affixHandler-middle.affixHandler-middle{
    position: fixed;
}
.stand-out-box-right-wrapper .stand-out-box-right{
    width: 100%;
    position: absolute;
}
.stand-out-box-right-wrapper{
    width: 50%;
}
.stand-out-box-right {
    width: 43%;
}

.stand-out-box-left {
    width: 30%;
    padding-top: 20px;
}

.subpage .stand-out-box-left {
    width: 50%;
}

.stand-out-box-container {
    padding-top: calc(var(--space-40) + var(--space-50));
    padding-bottom: var(--space-50);
    position: relative;
}

.stand-out-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-60);
    align-items: flex-start;
}

@keyframes flash-min {
    0% {
        filter: brightness(1) drop-shadow(-10px -10px 15px rgba(246, 211, 131, 0.0));
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 10px rgba(246, 211, 131, 0.8));

    }
    100% {
        filter: brightness(1) drop-shadow(10px 10px 15px rgba(246, 211, 131, 0.0));

    }
}

@keyframes flash {
    0% {
        filter: brightness(1) drop-shadow(-10px -10px 15px rgba(246, 211, 131, 0.0));
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 10px rgba(246, 211, 131, 0.8));

    }
    100% {
        filter: brightness(1) drop-shadow(10px 10px 15px rgba(246, 211, 131, 0.0));

    }
}

@keyframes flash-bigger {
    0% {
        filter: brightness(1) drop-shadow(-10px -10px 15px rgba(246, 211, 131, 0.0));
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 15px rgba(246, 211, 131, 1));

    }
    100% {
        filter: brightness(1) drop-shadow(10px 10px 15px rgba(246, 211, 131, 0.0));

    }
}

.stand-out-icon svg {
    animation: flash 5s infinite;
    animation-timing-function: linear;
}

.stand-out-icon {
    width: 14%;

}

.stand-out-text {
    width: 76%;
}

.stand-out-text .text.txt {
    color: #fff;
}

.stand-out-text .text.txt h3 {
    font-weight: 400;
    font-size: var(--font-24);
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 13px;
}

.stand-out-box-right .stand-out-item {
    margin-left: 27%;
}

.mask-box img {
    display: block;
    max-width: 84%;
    margin-top: -28px;
}

.mask-box {
    display: flex;
    justify-content: flex-end;
    margin-right: 21px;
}

.stand-out-box-container .container {
    position: relative;
}

.stand-out-bg img {
    display: block;
    max-width: 100%;
}

.opinion-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: 6.615vw;
    text-transform: uppercase;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

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

.box-header-left {
    display: flex;
    justify-content: flex-start;
}

.opinion-box-container {
    padding-top: var(--space-50);
    padding-bottom: var(--space-60);
}

.opinion-box-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.opinion-box-wrapper {
    align-items: stretch;
}

.opinion-box {
    display: flex;
    flex-wrap: wrap;
    margin: -10px -10px var(--space-50);
}

.opinion-item {
    width: 50%;
    padding: 10px;
}

.opinion-box-left {
    width: 57%;
}


.opinion-box-right-wrapper .opinion-box-right {
    width: 100%;
    position: absolute;
}

.opinion-box-right-wrapper {
    width: 39.3%;
    position: relative;
}

.opinion-box-right {
    width: 39.3%;
    display: flex;
    align-items: center;
    position: relative;
}

.opinion-item-content {
    backdrop-filter: blur(5px);
    height: 100%;
    background: rgba(255, 255, 255, 0.24);
    border: 2px solid transparent;
    border-image-source: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    border-image-slice: 1;
    padding: var(--space-40) 35px;
}

.fancybox-slide .opinion-item-content {
    height: unset;
    display: block;
}

.opinion-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--space-30) + 5px);
}

time.opinion-date {
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    color: rgb(0, 0, 0);
}

span.item-rating-star .fa {
    background: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

span.opinion-rating {
    font-size: 15px;
}

.opinion-text .opinion-short, .opinion-text .opinion-hidden {
    font-style: italic;
}
.opinion-text .text.txt {
    font-size: 15px;
    line-height: 2;
}

span.more {
    font-weight: 600;
    font-size: 15px;
    /* line-height: 30px; */
    line-height: 2;
    color: #000;
}

.text.txt.opinion-hidden {
    display: none;
}

.opinion-author {
    padding-top: var(--space-25);
    font-weight: 400;
    font-size: 15px;
    color: #000;
}

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

.opinion-phone {
    width: 48%;
}

.opinion-right-title {
    font-weight: 300;
    font-size: var(--font-30);
    text-align: center;
    color: #000;
}

.opinion-right-circle-wrapper .opinion-right-circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 374px;
    height: 374px;
    right: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(0, -50%);
    margin-top: -30px;
    backdrop-filter: blur(5px);
    background: url(../images/icons/circle.svg) no-repeat center center / contain;
    border-radius: 50%;
}

.opinion-subpage-box .opinion-box {
    margin-bottom: 0;
}

.opinion-box-wrapper .buttons-center{
    margin-top: var(--space-40);
}
.opinion-box-wrapper .buttons-center .has-icon{
    justify-content: space-between;
}
.opinion-box-wrapper .buttons-center .btn-icon{
    position: static !important;
    margin-left: auto;
}
.opinion-box-right span.opinion-rating {
    text-align: center;
    font-size: var(--font-40);
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.opinion-summary {
    font-weight: 300;
    font-size: var(--font-20);
    text-align: center;
    color: #000;
}

.opinion-summary strong {
    font-size: 25px;
}

.services-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: 6.615vw;
    text-transform: uppercase;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 108%;
    margin-bottom: var(--space-60);
}

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

.services-box-wrapper {
    display: flex;
    justify-content: space-between;
}

.services-box-container {
    padding-top: calc(var(--space-40) + var(--space-50));
    padding-bottom: calc(var(--space-60) + var(--space-25));
    position: relative;
}

.services-left .text.txt {
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 2;
    color: #fff;
    margin-bottom: var(--space-40);
}
.services-left-wrapper{
    width: 36%;
    position: relative;
}
.services-left {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-right {
    padding-top: 13px;
    width: 49.5%;

}

.service-link {
    animation: flash-bigger 5s infinite;
    animation-timing-function: linear;
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(19px);
    border: 2px solid transparent;
    border-image-source: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    border-image-slice: 1;
    align-items: flex-start;
    padding: var(--space-60) calc(var(--space-40) + 5px);
}


.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 43px;
    margin-top: 0;
}


.service-title {
    font-weight: 400;
    font-size: var(--font-24);
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
}

.service-text .text.txt {
    color: #fff;
}


.service-item {
    margin-bottom: 17px;
}

.services-box-container .container {
    position: relative;
}

.service-link:hover {
    border-image-source: linear-gradient(117deg, #EFCB7A 8.08%, #DEB662 28.18%, #F6D484 49.84%, #FADD8D 74.3%);
    background: rgba(255, 255, 255, 0.2);
}

.service-link:hover {
    border-image-source: linear-gradient(117deg, #EFCB7A 8.08%, #DEB662 28.18%, #F6D484 49.84%, #FADD8D 74.3%);
    background: rgba(255, 255, 255, 0.2);
}

.news-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    font-size: 7.5vw;
    line-height: 117%;
    overflow: visible;
    top: 0;
    left: 0;
    white-space: nowrap;
}

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

.news-box-title-wrapper {
    position: absolute;
    width: 1.2em;
    height: 1.2em;
    -ms-transform: rotate(-90deg);
    transform: rotate(90deg);
    z-index: 2;
    pointer-events: none;
    top: 117px;
    left: 57.5%;
}

.news-main-container {
    position: relative;
    padding-top: calc(var(--space-40) + var(--space-40));
    padding-bottom: calc(var(--space-40) + var(--space-30));
}

span.line1 {
    display: block;
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
}

span.line2 {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.news-main-box {
    display: flex;
    justify-content: space-between;
}

.news {
    width: 33.33%;
}

.mainpage .news:last-child {
    margin-top: calc(var(--space-60) + var(--space-60) + var(--space-25));
}

.news-main-box-wrapper > .btn {
    position: absolute;
    right: 0;
    top: 4px;
}

.news-main-box-wrapper {
    position: relative;
}

.news-photo {
    position: relative;
    overflow: hidden;
}

.news-photo img {
    display: block;
    max-width: 100%;
    transition: all 300ms ease-out;
}

.news-link:hover .news-photo img {
    transform: scale(1.1);
}

.news-content {
    padding-top: calc(var(--space-40) + 5px);
}

.news-title {
    font-weight: 400;
    font-size: var(--font-24);
    color: #000;
    margin-bottom: 22px;
}

.news-box-title.line2 {
    top: 174px;
    left: 234px;
}

.eu-box {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eu-box a {
    padding: 0 25px;
    display: block;
    position: relative;
}

.eu-box a:last-child:before {
    width: 3px;
    height: 66px;
    content: '';
    background: #1d1e1c;
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -33px;
    left: -1px;
}

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

.eu-box-rwd {
    display: none;
}

.subpage header {
    border-bottom: 1px solid #d9d9d9;
}

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


.page-heading-title {
    font-weight: 300;
    font-size: var(--font-35);
    text-align: center;
    color: #000;
    margin-bottom: calc(var(--space-40) + 5px);
}


.about-box-container.about-page {
    padding-top: calc(var(--space-40) + 5px);
}


.about-page .about-text .text.txt {
    color: #000;
}

.about-page .about-box-title {
    margin-bottom: calc(var(--space-40) + var(--space-50));
    padding-top: 22px;
    max-width: 43vw;
}

.about-page .about-text {
    padding-bottom: calc(var(--space-30) + 5px);
    width: 51.5%;
}

.about-page .page-heading-title {
    margin-bottom: 18px;
}

.about-page .about-box {
    padding-left: 75px;
}

.about-page .about-photo {
    width: 35.2%;
    margin-top: -32px;
}

.about-page img.key-mask {
    right: 77%;
    animation: flash-min 5s infinite;
    animation-timing-function: linear;
    top: 1%;
    max-width: 141%;
}

.subpage .stand-out-box-title {
    text-align: right;
}

.subpage .stand-out-item {
    margin-bottom: calc(var(--space-40) + 5px);
}

.subpage .mask-box {
    margin-right: 0;
}

.subpage .mask-box img {
    max-width: 56%;
    margin-top: 10px;
}

.subpage .stand-out-box-container {
    padding-bottom: calc(var(--space-50) + 5px);
}

.mask.stand-out-mask {
    background-color: rgba(0, 0, 0, 0.5);
}

.contact-box-container {
    padding-top: calc(var(--space-40) + 5px);
    position: relative;
}

.contact-box-container .page-heading-title {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: calc(var(--space-40) + var(--space-50) + var(--space-40));
}

.form-box-container {
    position: relative;
    padding-top: calc(var(--space-40) + 5px);
}

.contact-right-circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 410px;
    height: 410px;
    right: 15.5%;
    position: absolute;
    top: 36%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(0, -50%);
    backdrop-filter: blur(19px);
    background: url(../images/icons/circle2.svg) no-repeat center center / contain;
    border-radius: 50%;
    z-index: 2;
}

.contact-right-title {
    font-weight: 300;
    font-size: var(--font-30);
    text-align: center;
    color: #fff;
}

.contact-right-circle span.opinion-rating {
    text-align: center;
    font-size: var(--font-40);
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
}


.contact-right-circle .opinion-summary {
    color: #fff;
}

.contact-box-container .footer-middle {
    bottom: 0;
    z-index: 1;
}

.contact-box-container .footer-left {
    padding-bottom: calc(var(--space-50) + var(--space-25) + var(--space-50));
}

.contact-box-container .footer-right {
    padding-bottom: calc(var(--space-40) + var(--space-30));
}

.form-box-wrapper {
    padding: 0 10% var(--space-60);
}

.news-box-container {
    padding-top: calc(var(--space-40) + 5px);
}


.contact-box-container .container {
    position: relative;
}

.news-box {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 14px;
    margin: -20px -20px 0;
}

.news-box .news {
    padding: 20px 20px var(--space-40);
}

.news-box .news-title {
    font-size: var(--font-22);
    margin-bottom: 17px;
}

.news-box .news-content {
    padding-top: 30px;
}

.text-box-container {
    padding-top: calc(var(--space-40) + 5px);
    padding-bottom: var(--space-50);
}

.text-box-container .gallery {
    padding-bottom: var(--space-50);
}

.btn.btn-back .btn-icon {
    margin-left: 0;
}


.page-heading-title + .text.txt {
    max-width: 680px;
    text-align: center;
    margin: -6px auto var(--space-50);
}

.page-top-box {
    height: 100%;
    display: flex;
    min-height: 690px;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-60);
    padding-bottom: calc(var(--space-50) + var(--space-50));
    position: relative;
    padding-top: calc(var(--space-40) + var(--space-40));
}

.page-top-container {
    position: relative;
    min-height: 690px;
}

.page-top-container .container.container-small {
    height: 100%;
    position: relative;
    min-height: 100%;
}

.page-top {
    max-width: 1015px;
    padding-top: var(--space-50);
}

.page-top .offer-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
}

.page-top .offer-icon svg {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
}


.page-top .page-heading-title {
    color: #fff;
    margin-bottom: calc(var(--space-40) + 5px);
}

.page-top .page-heading-title + .text.txt {
    max-width: 100%;
    color: #fff;
}

.mask.page-top-mask {
    background: rgba(0, 0, 0, 0.5);
}

.professional-box-title {
    font-weight: 400;
    font-size: max(4.428vw, 30px);
    text-transform: uppercase;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--second-family), sans-serif;
    line-height: 1;
    margin-bottom: var(--space-60);
}

@media screen and (min-width: 1921px) {
    .professional-box-title {
        font-size: 85px
    }
}

.professional-box-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.professional-box-container {
    padding-top: var(--space-60);
    padding-bottom: var(--space-60);
}

.professional-box {
    display: flex;
    flex-wrap: wrap;
    margin: -15px -15px var(--space-40);
}

.professional-item {
    width: 50%;
    padding: 15px;
}

.professional-item-content {
    background: rgba(255, 255, 255, 0.24);
    border: 2px solid transparent;
    border-image-source: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    border-image-slice: 1;
    padding: var(--space-40) var(--space-40) calc(var(--space-40) + 5px);
    height: 100%;
}

.toAffix .professional-box-title{
    text-align: left !important;
}
.toAffix{
    padding-top: 30px !important;
    /*background: url(../images/body_bg.webp) repeat-y center center;*/
    background-size: 100% auto;
    position: absolute;
    z-index: 2;
}
.toAffix.affixHandler-middle, .toAffix.affixHandler-bottom{
    background-color: rgba(255,255,255,0.6);
    backdrop-filter: blur(5px) ;

}
.professional-left:has(.toAffix){
    margin-top: -30px;
}
.professional-left {
    width: 69%;
    position: relative;
}
.professional-left-column{
    width: 100%;
    position: relative;
}

.professional-right {
    width: 15.3%;
    margin-right: 5%;
    position: relative;
}

.professional-right img {
    display: block;
    aspect-ratio: 208/680;
    object-position: bottom;
    position: absolute;
    width: 100%;
    max-height: calc(100vh - 136px);
    object-fit: contain;
}

.professional-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 17px;
}

.professional-text .text.txt h3 {
    font-weight: 600;
    font-size: var(--font-18);
    color: #000;
    margin-bottom: 23px;
}

.professional-box-title:last-child {
    text-align: right;
    margin-bottom: 0;
}


.grid-box-container .grid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.grid-box-container .grid-photo {
    width: 50%;
}

.grid-box-container .grid-photo img {
    display: block;
    max-width: 100%;
}

.grid-box-container .grid-text {
    width: 39.2%;
    padding: 0;
}

.grid-box-container .grid-text.full-width {
    width: 100%;
}

.grid-box-container .grid-text iframe {
    width: 100%;
    display: block;
    height: 418px;
}

.grid-box-container .grid-text.full-width .text.txt {
    width: 100%;
}

.grid-box-container .grid-text .text.txt h3 {
    font-weight: 400;
    font-size: var(--font-22);
    color: #000;
    margin-bottom: var(--space-40);
}

.grid-box-container .grid-text .text.txt {
    margin-bottom: 0;
}

.grid-box-container .grid-item:nth-child(even) {
    flex-direction: row-reverse;
}

.grid-box-container .grid-box {
    padding-bottom: var(--space-30);
}

.eu-box-container{
    background-color: #fff;
}


.counter-box-container {
    padding-top: 30px;
    padding-bottom: 15px;
}

.counter-item-header {
    font-weight: 600;
    font-size: var(--font-50);
    color: #000;
    display: flex;
    margin-bottom: 13px;
}

.counter-box {
    display: flex;
    margin: calc(-1 * var(--space-30));
    justify-content: space-between;
    margin-bottom: 30px;
}

.counter-item {
    padding: var(--space-30);
    position: relative;
    width: 30%;
}


.counter-box-title {
    font-weight: 400;
    font-size: 4.428vw;
    text-transform: uppercase;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--second-family), sans-serif;
    margin-bottom: calc(var(--space-30) + 5px);
}

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

.counter-item .text.txt {
    font-size: 15px;
    line-height: 2;
}

.counter-box-title:last-child {
    text-align: right;
}

.offer-box-container.offer-page {
    background: transparent;
    padding-bottom: 5px;
}

.sorting-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: var(--space-50);
}

.sorting-box label {
    margin-right: 19px;
    font-weight: 700;
    font-size: 15px;
    text-align: justify;
    color: #000;
}

.sorting select {
    padding-right: 28px;
}

.sorting {
    width: 288px;
}

.search-big-box img {
    display: block;
    max-width: 100%;
}

.search-big-box {
    margin-bottom: var(--space-50);
}

.products-list .box-slider {
    display: flex;
    flex-wrap: wrap;
    margin: -13px -13px 8px;
    padding-bottom: calc(var(--space-30) + 5px);
}

.products-list .offer {
    padding: 13px;
}


.products-list .offer-content-top {
    padding: 16px 23px;
}

.products-list .offer-title {
    font-size: var(--font-18);
    margin-bottom: 0;
}

.products-list .text.desc {
    font-size: 15px;
}

.products-list .offer-content-bottom {
    padding: 1px 23px 21px;
}

.products-list ul.features-list li {
    font-size: 15px;
    margin-bottom: 9px;
}

.products-list .kontener_cena {
    font-size: var(--font-26);
}

.offer-inner:hover .btn {
    border-color: transparent;
}

.offer-inner:hover .btn:before {
    opacity: 1;
}

.products-list .kontener_cena_box .btn.btn-lg.btn-default.has-icon {
    height: 41px;
    line-height: 39px;
    background: transparent;
    min-width: 187px;
}

.products-list ul.features-list {
    margin-bottom: 20px;
}

.details-box-container {
    padding-top: var(--space-60);
    padding-bottom: var(--space-50);
}

.photo-big:first-child {
    width: 100%;
}

.photo-big a {
    width: 100%;
}

.photo-big {
    display: flex;
    padding: 5px;
    width: 50%;
}

.photo-big img {
    max-height: 100%;
    width: 100%;
    object-position: top left;
    object-fit: cover;
}

.bottom-images .photo-big {
    width: 100% !important;
}

.bottom-images {
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: 50% 50%;
}

.photo-big-wrapper {
    display: grid;
    grid-template-rows: 50% 50%;
    margin: -5px;
    position: absolute;
    max-height: calc(100vh - 200px);
    overflow: hidden;
}

.details-box {
    display: flex;
    justify-content: space-between;
}

.details-box-left {
    width: 50%;
    position: relative;
}

.details-box-right {
    width: 45%;
}

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

a.photo1 {
    position: relative;
    display: block;
}

.details-box-right .page-heading-title {
    text-align: left;
    margin-top: -13px;
    margin-bottom: 6px;
}

.address-offer {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    margin-bottom: 23px;
}

.details-box-info {
    background: rgba(255, 255, 255, 0.24);
    border: 2px solid transparent;
    border-image-source: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    border-image-slice: 1;
    padding: 30px 26px 17px;
    margin-bottom: calc(var(--space-40) + 5px);
}

.details-box-info ul.features-list {
    column-count: 2;
    padding-bottom: 16px;
    margin-bottom: 13px;
    border-top: 0;
    padding-top: 0;
}

.details-box-info .kontener_cena {
    font-size: var(--font-26);
    padding-right: 10px;
}

.price-desc {
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

.kontener_btns {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.kontener_btns .btn {
    min-width: 1px;
}

.kontener_btns .btn:first-child .btn-icon svg {
    fill: #000;
    stroke: none;
}

.kontener_btns .btn:first-child .btn-icon {
    margin-left: 0;
}

.kontener_btns .btn:first-child {
    padding-left: 0;
    padding-right: 16px;
}

.kontener_btns .btn:last-child {
    padding-right: 62px;
    margin-left: 11px;
}

.details-box-info .kontener_cena_box {
    align-items: center;
}

.offer-desc .text.txt h2 {
    font-weight: 400;
    font-size: var(--font-20);
    color: #000;
    margin-bottom: calc(var(--space-30) + 5px);
}

.offer-desc {
    padding-bottom: calc(var(--space-40) + var(--space-40));
}

.details-box-left .btn.btn-lg.btn-white {
    position: absolute;
    bottom: 18px;
    right: 20px;
    height: 40px;
    font-size: 12px;
    padding: 0 17px 0 10px;
    line-height: 38px;
}

.question-box {
    display: flex;
    padding: 26px;
    justify-content: space-between;
    position: relative;
}

.question-left {
    width: 49%;
}

.question-right {
    width: 41%;
    position: relative;
    height: auto;
    margin-right: 4%;
}

.question-right img {
    display: block;
    max-width: 100%;
    position: absolute;
    bottom: -26px;
}

.question-title {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.question-subtitle {
    font-weight: 400;
    font-size: var(--font-35);
    text-transform: uppercase;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--second-family), sans-serif;
    line-height: 108%;
    padding-top: 14px;
    margin-bottom: 21px;
}

.question-box-wrapper {
    position: relative;
    border: 2px solid transparent;
    border-image-source: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    border-image-slice: 1;
    margin-bottom: calc(var(--space-40) + 5px);
}

.question-box-wrapper > img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
}

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

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

span.mask.question-mask {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
}

.offer.slick-slide.slick-current.slick-active {
}

.other-box-title {
    font-size: var(--font-35);
    font-weight: 300;
    line-height: normal;
    color: rgb(0, 0, 0);
    margin-bottom: var(--space-40);
}

.other-box-container {
    padding-top: calc(var(--space-40) + 5px);
    padding-bottom: var(--space-60);
    position: relative;
}

.other-box-container .offer {
    padding: 10px;
}

.other-box-container .box-slider button.prev {
    left: -140px;
}

.other-box-container .box-slider button.next {
    right: -140px;
}

.other-box-container .offer-title {
    font-size: var(--font-18);
    margin-bottom: 0;
}

.other-box-container .offer-content-top {
    padding: 23px 23px 15px;
}

.other-box-container .offer-content-bottom {
    padding: 0 23px;
}

.other-box-container ul.features-list li {
    font-size: 15px;
    margin-bottom: 9px;
}

.kontener_cena {
    font-size: var(--font-26);
    font-weight: 600;
    line-height: normal;
    color: rgb(0, 0, 0);
}

.kontener_cena_box .btn.btn-lg.btn-default.has-icon {
    height: 40px;
    line-height: 38px;
    padding-left: 10px;
    padding-right: 0;
}

.other-box-container:before {
    width: 1360px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 100%;
}

.opinion-right-circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 375px;
    height: 375px;
    right: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(0, -50%);
    backdrop-filter: blur(19px);
    background: url(../images/icons/circle2.svg) no-repeat center center / contain;
    border-radius: 50%;
    z-index: 2;
}

header.sticky .top {
    padding-top: 5px;
    padding-bottom: 5px;
}

.details-box-right .kontener_cena_box .btn.btn-lg.btn-default.has-icon {
    height: 40px;
    line-height: 38px;
    padding-left: 0;
    padding-right: 20px;
    margin: 5px;
}


.kontener_btns .btn:last-child {
    height: 40px;
    line-height: 38px;
    margin: 5px;
}

.search-slider {
    width: 100%;
    max-width: 1230px;
}

.search-slider .search {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.24);
    border: 2px solid transparent;
    border-image-source: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    border-image-slice: 1;
    padding: calc(var(--space-25) + 5px) var(--space-40) var(--space-40) var(--space-40);
}

.search form .search-box {
    width: 30%;
}


.search .search-box:last-child {
    width: unset;
    flex-grow: 1;
}

.search .search-box:last-child > div {
    margin-bottom: 0;
}

.search form .search-box:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 33px;
}


.search .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 15px !important;
    font-weight: 300 !important;
    color: #000;
}

.search .select2-results__option {
    font-size: 14px;
    font-weight: 300;
    color: #000;
}


.offer-list .navigation-bar .caption {
    margin-right: calc(var(--space-25) + 5px);
}

.offer-list .select2-container {
    min-width: 320px;
    text-align: left;
}

.select2-dropdown {
    border: none
}

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


.select2-results__options {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 5px 15px 10px rgba(0, 0, 0, 0.2);
}

.select2-results__option {
    border: none;
    padding: 0 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 46px;
    background: #fff;
    display: flex;
    align-items: center;

    line-height: 46px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: scale(-1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    width: unset;
    height: unset;
    margin: 0 0 0 1px;
    position: static;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    content: "\f078";
    font-size: 13px;
    font: normal normal normal 14px/1 FontAwesome;
    font-weight: 400;
}

.select2-container .select2-selection--single {
    height: 46px;
    border-radius: 0;
    border: none;
    background-color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px;
    padding: 0 40px 0 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    border: 1px solid var(--color-primary);
}

.search form div.search-box div.input {
    margin: 0;
}

.products-list .sorting-box .select2 {
    width: 300px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.search .btn.has-icon {
    min-width: 179px;
    padding: 0 20px;
    font-weight: 500;
    font-size: 15px;
}

.search .btn .caption {
    margin: 0 auto;
}

.search .btn .icon {
    width: 17px;
    height: 17px;
    color: currentColor;
    display: block;
}

.search label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-align: left;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search .inputs-wrapper .form-element-name {
    font-size: 15px;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search form div.search-box div.input2 {
    display: inline-block;
    margin: 0;
    padding-right: 10px;
}


.search form div.search-box span.span2 {
    padding-left: 5px;
}

.inputs-wrapper .form-element-name {
    padding-right: 15px;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    padding-left: 0;
}

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

.inputs-wrapper .form-element-container {
    display: flex;
    align-items: center;
}

.search-box input, .search-box select {
    font-size: 14px;
    padding: 0 20px;
    color: #000;
    font-weight: 300;
}

.search-box .inputs-wrapper .form-element-container:not(:last-child) {
    padding-right: 15px;
}

.search-box.search-box-3 input {
    padding: 0 14px;
}

.form-element-floatNumber-container:nth-child(1) {
    padding-right: 10px;
}

.search-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search form {
    display: flex;
    gap: calc(var(--space-25) + 5px);
    justify-content: center;
    flex-grow: 1;
    padding-left: 0;
}

.opinion-item-content .opinion-text {
    display: flex;
    flex-direction: column;
}

.opinion-text .text.txt {
    flex-grow: 1;
}

.opinion-item-content {
    flex-direction: column;
    display: flex;
}

.fancybox-inner .opinion-item-content {
    background-color: #fff;
    max-width: 700px;
}

.opinion-item-content .more {
    text-transform: lowercase;
    cursor: pointer;
}

.fancybox-inner .opinion-short,
.fancybox-inner .opinion-item-content .more {
    display: none;
}

.fancybox-inner .text.txt.opinion-hidden {
    display: block;
}


.page-top-box.no-photo .page-heading-title {
    color: #000;
}

.page-top-box.no-photo .page-heading-title + .text.txt {
    color: #000;
}

.logo img {
    animation: flash-min 5s infinite;
    animation-timing-function: linear;
}

.logo-min {
    animation: flash-bigger 5s infinite;
    animation-timing-function: linear;
}

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

.opinion-box-right-wrapper .affixHandler-middle {
    position: fixed;
}

.search-big-box .search {
    border: 2px solid transparent;
    border-image-source: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    border-image-slice: 1;
    backdrop-filter: blur(9px);
    background: rgba(255, 255, 255, 0.24);
    padding: var(--space-25) var(--space-60) var(--space-50);
}

.search-big-box .search .inputs-wrapper .form-element-name {
    color: #000;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #000;
    background: transparent;
    font-weight: 400;
    font-size: 15px;
}

.search-big-box .select2-selection {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.search-big-box .search form .search-box:last-child {
    padding-left: calc(var(--space-25) + 5px);
}

.search-big-box .search label {
    color: #000;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #000;
    background: transparent;
}

.animate-shine, .btn.btn-primary:before, .social-icon:before {
    opacity: 1;
    transition: background, opacity, box-shadow, text-shadow, filter;
    transition-duration: var(--shine-duration);
    pointer-events: auto;
    background-size: 50%;
    background-repeat: repeat;
    transition-timing-function: ease-in-out;
    background-position: -300px 0;

}

.btn.btn-primary:before {
    background-position: -100px 0;
    transition: all var(--shine-duration), opacity 300ms;

    background-size: 100%;
}

.social-icon:before {
    background-position: -30px 0;
    transition: all var(--shine-duration), opacity 300ms;
    background-size: 100%;

}

.animate-shine.shine, .btn.btn-primary.shine:before, .social-icon.shine:before {
    background-size: 100%;
    background-position: 0 0;
}

.social-icon {
    opacity: 1;
    pointer-events: auto;
}

.btn-primary {
    opacity: 1;
    pointer-events: auto;
}

.opinion-box-container .box-header {
    display: flex;
    align-items: center;
}

.opinion-box-container .box-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slick-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    width: 46px;
    border: 1px solid transparent;
    background: transparent;
    border-image-source: linear-gradient(117deg, #FADD8D 8.08%, #F6D484 28.18%, #DEB662 49.84%, #EFCB7A 74.3%);
    border-image-slice: 1;
}

.slick-arrow .icon {
    color: var(--color-primary);
    width: 20px;
    height: 20px;
    display: block;
}

.about-text .text::-webkit-scrollbar-thumb,
.services-box::-webkit-scrollbar-thumb,
.subpage .stand-out-box-left::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

.about-text .text::-webkit-scrollbar,
.services-box::-webkit-scrollbar,
.subpage .stand-out-box-left::-webkit-scrollbar {
    width: 4px;
}


@-moz-document url-prefix() {
    .subpage .stand-out-box-left, .services-box,.about-text .text {
        scrollbar-width: thin;
        scrollbar-color: var(--color-primary) transparent;
    }
}

.opinion-box .slick-slide .opinion-item {
    height: 100%;
}

.opinion-box .slick-slide {
    display: grid;
    grid-template-rows: 1fr 1fr;
}

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

.slick-slide > div:not([class]) {
    height: 100%;
    display: flex;
}

.form-box-container {
    scroll-margin-top: 88px;
}

.about-text .text {
    margin-right: -10px;
    padding-right: 10px;
    max-height: 400px;
    overflow-y: auto;
}
.grid-photo{
    position: relative;
}
.imagePeeler__mask{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left center;
}
.grid-box-container .grid-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.imagePeeler__handler {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    z-index: 100;
    width: 4px;
    background-color: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagePeeler__handler .imagePeeler__icon {
    width: 40px;
    height: 40px;
    padding: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    color: #000;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.imagePeeler__handler .imagePeeler__icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.arrow-wrapper .icon{
    width: 20px;
    height: 20px;
    display: block;
    color: inherit;
}
.arrow-wrapper{
    position: absolute;
    bottom: -2px;
    right: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-primary);
}

.fancybox-slide--current{
    display: flex;
    align-items: center;
    justify-content: center;
}

.fancybox-container .glyphicon {
    display: none;
}

.fancybox-close-small{
    border: 0 !important;
}



.fancybox-close-small{
    border: 1px solid var(--color-primary) !important;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    overflow: hidden;
}

.fancybox-close-small:before{
    content: '';
    position: absolute;
    border-radius: 50%;
    inset: 0;
    background-size: 100%;
    background-position: 0 0;
    transition: all var(--shine-duration), opacity 300ms;
    pointer-events: auto;
    background-size: 50%;
    background-repeat: repeat;
    border-image-slice: 1;
    background: var(--gradient-primary);

}

.fancybox-close-small:hover::before {
    opacity: 0 !important;

}

.fancybox-close-small:hover{
    background-color: #fff;
}
.fancybox-close-small:after{
    font: initial;
    font-size: 50px;
    color: #000;
    line-height: 0.6;
    width: 28px;
    background-color: transparent !important;
    border: 0 !important;
}

.fancybox-close-small:hover:after{
    color: var(--color-primary);
}

.fancybox-container .form-box-wrapper{
    padding: 0px 5% var(--space-60);
}

.iframe-virtual-tour {
    width: 100%;
}

.iframe-virtual-tour iframe {
    width: 100%;
    height: 528px;
}
