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

    /** SPECIFIC **/
    --color-primary: #f3991f;
    --color-secondary: #d9d9d9;
    --color-default: #000;
}

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


/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

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

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

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

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

.grayscale {
    filter: grayscale(1);
}

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

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

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

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

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


.container--noClear {
    clear: none;
}

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

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

/**
 * BUTTONS
 */

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

.btn-lg {
    border: 0 none;
    padding: 0 10px;
    height: 46px;
    line-height: 44px;
    border-radius: 5px;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 300;
    font-size: 16px;
}

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


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

.btn.has-icon .btn-icon {
    width: 40px;
    height: 40px;
    padding: 5px;
    border: 1px solid transparent;
    border-radius: 5px;
    margin-left: 19px;
}

.btn.btn-secondary .btn-icon {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn.btn-white .btn-icon {
    border-color: #fff;
}

.btn.btn-default .btn-icon {
    border-color: #000;
}

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

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


/**
 * THEMES
 */

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

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

.btn.btn-secondary,
.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary:focus:active {
    color: #000;
}

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

.btn.btn-default,
.btn.btn-default:focus,
.btn.btn-default:active,
.btn.btn-default:focus:active {
    color: #000;
}

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

.btn.btn-white,
.btn.btn-white:focus,
.btn.btn-white:active,
.btn.btn-white:focus:active {
    color: #fff;
}


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

.btn.btn-secondary .btn-icon svg,
.btn.btn-secondary .btn-icon svg * {
    stroke: #fff;
}


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

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


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

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

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

    .btn-secondary:hover .btn-icon svg,
    .btn-secondary:hover .btn-icon svg * {
        stroke: #000;
    }

    .btn-secondary:hover .btn-icon {
        background: #fff;
        border-color: #000;
    }

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

    .btn-default:hover .btn-icon {
        background: var(--color-primary);
        border-color: var(--color-primary)
    }

    .btn-default:hover .btn-icon svg,
    .btn-default:hover .btn-icon svg * {
        stroke: #fff;
    }

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

    .btn-white:hover .btn-icon {
        background: #fff;
    }

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

}


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

.panel {
    box-shadow: none;
}

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

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

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

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

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

/**
 * TITLES
 */


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

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

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

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

.text.txt h5 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}


.text.txt h6 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}


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

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

.photo-bg {
    position: absolute;
    left: 0;

    width: 100%;

    z-index: -1;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    pointer-events: none;
}

.contact-box-container .photo-bg {
    top: -88px;
    height: calc(100% + 88px);
}

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

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


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

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

/**
 * 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: 20px; */
    /* padding-bottom: 20px; */
}

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

.top-right {
    display: flex;    align-items: center;
    margin-left: 0px;
}

.logo {
    float: none;
    margin-left: -7px;
}

.logo a {
    display: block;
}

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

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

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

#main-menu li {
    position: relative;
}

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

#main-menu li a {
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    position: relative;
    display: block;
    padding: 34px 31px 35px;
}

#main-menu li a:hover {
    color: var(--color-primary);
}

#main-menu li.active > a {
    color: var(--color-primary);
}

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

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

.contact-link {
    align-items: flex-start;
    font-size: var(--font-18);
    line-height: 200%;
    font-weight: 400;
    display: flex;
    padding: 40px;
}

.contact-link .btn-icon {
    margin-right: 39px;
    position: relative;
    border-radius: 50%;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 1px solid #e5e5e5;
    padding: 14px;
    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 {
        text-decoration: underline;
        color: #fff;
    }

    .contact-link:hover .btn-icon {
        background: #fff;
    }
}

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

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


.mainsearch.rwdPanel {
    display: block;
}

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

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

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

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

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

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

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


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


/**
 * FOOTER
 */


footer {
    position: relative;
}

.footer-boxes {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
}


.footer-box-container {
    position: relative;

}

.footer-box .social-list > ul {
    width: 272px;
}

.footer-boxes-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: calc(var(--space-25) + var(--space-50));
    padding-top: 111px;
}

.footer-left {
    width: 56%;
}

.footer-right {
    width: 33%;
    padding-top: 50px;
}

.footer-slogan {
    font-weight: 300;
    font-size: var(--font-26);
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    padding-top: 32px;
    padding-left: 10px;
    position: relative;
    margin-top: 30px;
    margin-left: 37px;
    padding-right: 0;
}

.footer-slogan:before {
    content: '';
    background: url(../images/icons/plus.svg) no-repeat center center / contain;
    width: 26px;
    height: 26px;
    display: block;
    position: absolute;
    left: -40px;
    top: 0;
}

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

.footer-col-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 168%;
    color: #fff;
    margin-bottom: var(--space-30);
}


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

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

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

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

.footer-box .text a {
    color: #fff;
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 100%;
}


img.logo-min {
    display: block;
    max-width: 93%;
    margin-bottom: var(--space-60);
}

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

.footer-box .social-icon {
    color: #fff;
    background: #969a9e;
    border-color: #969a9e;
}

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

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


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

.footer-bar-content {
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-weight: 400;
}


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

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

.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: 0 8px;
    font-size: 14px;
    line-height: 30px;
}

.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;
    line-height: 30px;
}

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

.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: 400;
    font-size: var(--font-20);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: var(--space-60);
}

form.form {
    padding: 0;
}

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

.form .form-element-name {
    margin-bottom: 14px;
    color: var(--color-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}


/* 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: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

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

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.57143;
    color: #000;
}

.form .before-consent-row {
}


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

.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: #ccc;
    border-radius: 6px;
    text-align: left;
    padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-box-wrapper button.btn.btn-secondary.btn-lg {
    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: 586px;
    border-radius: 20px;
}

/**
 * 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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logotypes-slider-wrapper {
    flex-wrap: wrap;
}



.logotypes-box-title {
    font-weight: 400;
    font-size: var(--font-30);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: var(--space-50);
}

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

.logotype img {
    opacity: 0.8;
    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: -9px;
    font-size: 0;
}

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    padding: 0;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    width: 50px;
    height: 50px;
}

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

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

.social-icon img {
    display: block;
}

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


/**
 * LANGUAGES MENU
 */

.langs-menu {
    position: relative;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
    padding-left: 0;
}


.langs-menu ul {
    overflow: hidden;
    position: relative;
    top: auto;
    width: auto;
    background-color: transparent;
    transition: all 0.3s;
    display: flex;
}

.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 {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.lang span.langs-menu-icon {
    line-height: 0;
    margin-right: 12px;
    flex-shrink: 0;
    display: none;
}

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

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #fff;
    text-transform: uppercase;
}

.lang span.langs-menu-icon span.flag-icon {
    font-size: 26px;
    border-radius: 50%;
}

.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: var(--font-18);
    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) {

    .langs-menu li.active a.lang {
        color: var(--color-primary);
        background-color: transparent;
        border-color: var(--color-primary);
    }

    .langs-menu a.lang:hover .langs-menu-long,
    .langs-menu a.lang:focus .langs-menu-long {
        color: var(--color-primary);
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 1;
        position: relative;
        top: auto;
        width: auto;
        display: flex;
    }

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

    .langs-menu li {
        border-bottom: 0 none;
        margin-left: 9px;
        position: relative;
        padding-left: 12px;
    }

    .langs-menu li:first-child:before {
    display: none;
}

.langs-menu li:before {
    content: '';
    width: 2px;
    height: 11px;
    background: var(--color-primary);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
}


    span.langs-menu-short {
        display: none;
    }
}

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

@media screen and (min-width: 1140px) {
    .lang-button {
        display: none;
    }

    .langs-menu ul {
        overflow: hidden;
        position: relative;
        top: auto;
        width: auto;
        background-color: transparent;
        display: flex;
    }
}

/**
 * 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: 50%;
    margin-right: 68px;
    margin-bottom: 20px;
}

.article-image img {
    max-width: 100%;
    display: block;
    border-radius: 25px;
}

.article-subtitle {
    padding-bottom: var(--space-30);
    font-weight: 400;
    font-size: var(--font-24);
    color: #000;
    padding-top: 26px;
}

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

.article-text {
    margin-bottom: var(--space-30);
}

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

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

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

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

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.gallery-picture-hover > * {
    background: url(../images/zoom.png) no-repeat center center;
    text-indent: -20000px;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 72px;
    height: 72px;
    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);
    top: 6px;
}

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

/**
* PAGINATION
*/

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

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

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

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    line-height: 40px;
    padding: 0 25px;
    font-weight: 400;
    font-size: 15px;
    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: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #000;
}

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

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

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

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

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

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

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

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

.main-slider {

}

.char {
    animation: an 1s ease-out 1 both;
    display: inline-block;
}

@keyframes an {
    from {
        opacity: 0;
        transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
    }
    to {
        opacity: 1;
        transform: perspective(500px) translate3d(0, 0, 0);
    }
}

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

.slider-photo {
    border-radius: 0 0 40px 30px;
}


.slider-photo img {
    display: block;
    max-width: 100%;
    transform: none !important;
}

.mask.slider-mask {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.slider-text-box {
    position: absolute;
    display: flex;
    height: 100%;
    top: 0;
    align-items: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1640px;
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.slider-text-box-inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
}

.slider-text-box-inner {
    flex-direction: column;
}







.slider-text-left {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 10px;
}

.slider-text-right {
    width: 43%;
    padding-right: 7%;
}


.title1 {
    font-weight: 300;
    font-size: 3.4vw;
    line-height: 1.1;
    color: #fff;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.title2 {
    font-weight: 300;
    font-size: 3vw;
    line-height: 1.1;
    color: #fff;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.title3 {
    font-weight: 300;
    font-size: 2vw;
    line-height: 1.3;
    color: #fff;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.slider-text-right .btn {
    background: var(--color-primary);
    color: #fff;
    padding: 0 20px;
    margin-top: 60px;
    margin-bottom: 70px;
}

.slider-text-right {
    width: 100%;
    padding: 0;
    text-align: center;
}


.slider-text-left {
    width: 100%;
    padding: 0;
    flex-direction: row;
    padding-top: 40px;
}

@media screen and (min-width: 1921px) {
    .title1 {
        font-size: 65px;
    }
	  .title2 {
        font-size: 57px;
    }
	  .title3 {
        font-size: 38px;
    }
}


.line.text-line1 {
    width: 33.33%; padding:20px;    font-weight: 400;
    font-size: var(--font-18);
    line-height: 1.875;
    color: #fff;
    text-transform: none;
    text-align: center;
    margin-bottom: 0; position:relative;
}

.line.text-line2 {
    width: 33.33%;padding:20px;    font-weight: 400;
    font-size:  var(--font-18);
    line-height: 1.875;
    color: #fff;
    text-transform: none;
    text-align: center;
    margin-bottom: 0;
	 position:relative;
	  
}

.line.text-line3 {
    width: 33.33%;padding:20px;    font-weight: 400;
    font-size: var(--font-18);
    line-height: 1.875;
    color: #fff;
    text-transform: none;
    text-align: center;
    margin-bottom: 0;position:relative;
}


.slider-text-left .line:before {
    background: url(../images/icons/plus2.svg) no-repeat center center;
    content: '';
    width: 21px;
    height: 21px;
    display: inline-block;
    left: -15px;
    top: -15px;
    position: relative;
}

.description {
    font-weight: 300;
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-bottom: 37px;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

ul.slick-dots {
    padding-left: 5px;
    max-width: 1670px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 56px;
    text-align: center;
}

ul.slick-dots li {
    display: inline-block;
    margin: 0 10px;
    transition: all 0.2s;
}

ul.slick-dots li span {
    display: block;
    border: 1px solid #fff;
    border-radius: 2px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

ul.slick-dots li.slick-active span {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

ul.slick-dots li span:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}


.services-box-title {
    font-weight: 400;
    font-size: var(--font-30);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: calc(var(--space-25) + var(--space-60));
}


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

.services-box {
    display: flex;
    margin: -10px;
    flex-wrap: wrap;
    justify-content: center;
}

.mainpage .services-box { display:block}

.service-item {
    width: 25%;
    padding: 10px;
}

.service-link-wrapper{
    height: 100%;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary));
    position: relative;
    overflow: hidden;
    transition: background-size 0.4s ease;
    background-size: 0% 100%;
    background-repeat: no-repeat;
}

.service-link {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 34px 13% calc(var(--space-40) + 8px) 38px;
    position: relative;
}

.service-icon {
    width: 78px;
    height: 78px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 34px;
}

.service-icon svg {
    stroke-dashoffset: 500;
    stroke-dasharray: 500;
    transition: all 3s linear;
    transition-delay: 1s;
}

.service-link{
    opacity: 1 !important;
}

.service-link.draw-svg .service-icon svg{
    stroke-dashoffset: 0;

}

.service-text {
    font-weight: 400;
    font-size: 16px;
    /* line-height: 30px; */
    line-height: 1.875;
    color: #000;
    margin-bottom: var(--space-40);
}

.service-text h3 {
    font-weight: 400;
    font-size: var(--font-30);
    line-height: 130%;
    text-transform: uppercase;
    color: #000;
    margin-bottom: calc(var(--space-30) + 3px);
}

.btn.btn-square {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #000;
    padding: 0;
}

.btn.btn-square svg, .btn.btn-square svg * {
    stroke: #000;
}

.btn.btn-square:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn.btn-square:hover svg {
    stroke: #fff;
}


.service-item.service-item-slogan {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}


.slogan-text {
    font-weight: 300;
    font-size: var(--font-26);
    line-height: 1.53846;
    color: #000;
    padding-left: 50px;
    position: relative;
    overflow: visible;
    padding-top: 30px;
}

.slogan-text strong {
    font-weight: 600;
}

/*.slogan-text:before {
    content: '';
    background: url(../images/icons/plus.svg) no-repeat center center / contain;
    width: 27px;
    height: 27px;
    display: block;
    position: absolute;
    left: 5px;
    top: 5px;
}
*/



.about-box-title {
    font-weight: 400;
    font-size: var(--font-30);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0;
    line-height: 110px;
    min-width: 295px;
}

.footer-slogan p > span {
    display: block;
}

.about-header {
    display: flex;
    flex-direction: row-reverse;
    /*justify-content: space-between;*/
    align-items: flex-start;
    margin-bottom: calc(6px + var(--space-50));
}

.about-slogan {
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
    color: #000;
    /* max-width: 65%; */
    flex-grow: 1;
    font-size: 4.5088vw;
}

@media screen and (min-width: 1921px) {
    .about-slogan {
        font-size: 86px;
    }
}

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

.about-box {
    max-width: 840px;
    padding-left: 9.4%;
    margin: 0 auto calc(var(--space-40) + var(--space-30));
}

.about-box .text.txt {
    font-weight: 300;
    line-height: 2;
    margin-bottom: calc(var(--space-30) + 6px);
}


.about-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-bottom-title {
    font-weight: 300;
    font-size: var(--font-26);
    line-height: 1.53846;
    color: #000;
    padding-left: 50px;
    position: relative;
    overflow: visible;
    padding-top: var(--space-30);
    width: 28%;
}

.about-bottom-title strong {
    font-weight: 600;
}

.about-bottom-title:before {
    content: '';
    background: url(../images/icons/plus.svg) no-repeat center center / contain;
    width: 27px;
    height: 27px;
    display: block;
    position: absolute;
    left: 5px;
    top: 5px;
}


.about-photo {
    width: 66.22%;
    -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;
    pointer-events: none;
}

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

.logotypes-slider-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logotype-slider {
    width: 100%;
}

.slogan-box {
    font-weight: 300;
    font-size: 7.43vw;
    line-height: 1;
    text-transform: uppercase;
    text-align: right;
    color: #d9d9d9;
}

@media screen and (min-width: 1921px) {
    .slogan-box {
        font-size: 161px;
    }
}

.slogan-line1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slogan-box-container {
    padding-top: 16px;
    padding-bottom: calc(var(--space-25) + var(--space-50));
}

.text-line1 {
    padding-right: 10px;
}

.slogan-line3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.photo-small {
    width: 42.033%;
    -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;
    pointer-events: none;
}

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

.text-line3 {
    width: 60%;
    padding-left: 30px;
}


.subpage header {
    background: #000;
}

header.sticky {
    background: #000;
}

.news-box-title {
    font-weight: 400;
    font-size: var(--font-30);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    width: 100%;
    text-align: center;
}

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

.news-box-left {
    width: 49.6%;
}

.news-box-right {
    width: 41.2%;
}

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

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

.news-photo img {
    display: block;
    max-width: 100%;
    border-radius: 20px;
    width: 100%;
    transform: scale(1);
    transition: transform 0.3s;
}

.news-box-left .news-photo img {

    width: 100%;
}

.news-photo {
    margin-bottom: var(--space-50);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

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

.news-title {
    font-weight: 400;
    font-size: var(--font-24);
    color: #000;
    line-height: 120%;
    margin-bottom: 21px;
    transition: all 300ms ease-out;
}

.news-link:hover .news-title {
    color: var(--color-primary);
}

.news-box-left .news {
    width: 88.023%;
}

.news .text.text {
    line-height: 200%;
}

.more {
    font-weight: bold;
    transition: all 300ms ease-out;
}

.news-link:hover .more {
    color: var(--color-primary);
}

.news {
    width: 79.33%;
}

.news-wrapper:nth-child(odd) {
    display: flex;
    justify-content: flex-start;
    margin-bottom: calc(var(--space-25) + var(--space-50) + 3px);
}

.news-wrapper:nth-child(even) {
    display: flex;
    justify-content: flex-end;
}

.news-box-left .news-wrapper {
    justify-content: flex-start;
}

.strategy-box-container {
    margin-top: -134px;
}


.strategy-box-container .slogan-box {
    font-size: 6.6042vw;
}

@media screen and (min-width: 1921px) {
    .strategy-box-container .slogan-box {
        font-size: 126px;
    }
}

.photo-small-box {
    width: 21%;
    text-align: center;
}

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

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

.slogan-line-box-text {
    width: 71%;
}

.slogan-line-box-text .slogan-line2 {
    width: 100%;
    text-align: left;
}

.slogan-text-last {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.slogan-text-last .text-line3 {
    text-align: left;
    padding-left: 13%;
    width: 75%;
}

.slogan-small {
    font-weight: 300;
    font-size: var(--font-26);
    line-height: 1.53846;
    color: #000;
    padding-left: 50px;
    position: relative;
    overflow: visible;
    padding-top: 30px;
    width: 33%;
    text-transform: initial;
    text-align: left;
    margin-bottom: -29px;
    margin-left: -4%;
}

.slogan-small strong {
    font-weight: 600;
}
/*
.slogan-small:before {
    content: '';
    background: url(../images/icons/plus.svg) no-repeat center center / contain;
    width: 27px;
    height: 27px;
    display: block;
    position: absolute;
    left: 5px;
    top: -5px;
}
*/
.content-box {
    background: url(../images/bg.jpg) no-repeat top center / 100%;
    padding-bottom: 320px;
    margin-bottom: -330px;
    scroll-snap-align: start;
}

.service-link:hover {
    border: 1px solid #f3991f;
    background: rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: inset 0 0 0 1px rgba(243, 153, 31, 1);
    -moz-box-shadow: inset 0 0 0 1px rgba(243, 153, 31, 1);
    box-shadow: inset 0 0 0 1px rgba(243, 153, 31, 1);
}

.service-link:hover .btn.btn-square {
    background: #f3991f;
    border-color: #f3991f
}

.service-link:hover .btn.btn-square svg, .service-link:hover .btn.btn-square svg * {
    stroke: #fff
}

body.sticky-footer footer {
    z-index: 1;
}

#page, #content {
    overflow: visible;
}


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

.subpage .about-header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.page-heading-title {
    text-align: center;
    margin-bottom: calc(var(--space-25) + var(--space-50));
    font-weight: 400;
    font-size: var(--font-20);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
}

.about-box-container .page-heading-title {
    color: #fff;
    margin-bottom: var(--space-50);
}

/*.subpage .about-slogan:before {
    background: url(../images/icons/plus.svg) no-repeat center center;
    content: '';
    width: 71px;
    height: 71px;
    display: block;
    position: absolute;
    left: -100px;
    top: -45px;
}

*/
.subpage .about-slogan {
    color: #fff;
    position: relative;
    margin-top: 0;
    font-size: 4.2088vw;
}

@media screen and (min-width: 1921px) {
    .subpage .about-slogan{
        font-size: 80px;
    }
}

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


.about-bottom-left {
    width: 33%;
}

.subpage .about-photo {
    width: 57.9%;
}

.subpage .about-bottom {
    align-items: flex-start;
    padding-bottom: var(--space-40);
}

.about-bottom-left .text.txt {
    color: #fff;
    line-height: 2;
    margin-bottom: 0;
    font-weight: 300;
}

.subpage .about-bottom-title {
    margin-top: 50px;
    margin-left: 0;
    margin-bottom: var(--space-60);
    color: var(--color-primary);
}

.about-sub-box {
    max-width: 1360px;
    margin: 0 auto 5px;
}

.about-sub-box .text.txt {
    line-height: 2;
}

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

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

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

.grid-photo {
    width: 50%;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    pointer-events: none;
}

.grid-text {
    width: 39%;
}

.grid-text .text.txt h3 {
    font-weight: 600;
    font-size: var(--font-26);
    line-height: 1.53846;
    color: #000;
}

.grid-text .text.txt {
    line-height: 2;
}

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

.subpage .logotypes-slider-wrapper {
    display: block;
    max-width: 1360px;
    margin: 0 auto;
}

.logotypes-slider-wrapper {
}

.subpage .logotypes-box-title {
    font-size: var(--font-20);
    width: auto;
    padding-right: 0;
    margin-bottom: calc(var(--space-60) + 6px);
}

.subpage .logotype-slider {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.subpage .logotype-slider a {
    width: 16.66%;
    height: 100px;
    position: relative;
    margin-bottom: 22px;
}

.subpage .logotype-slider a:nth-child(7) {
    margin-left: 8.33%;
}

.logotype img {
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.subpage .strategy-box-container {
    margin-top: 0;
    padding-top: calc(var(--space-60) + var(--space-50));
}

.subpage .about-box-container:before {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 0 0 50px 50px;
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
}

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

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

.services-header .page-heading-title {
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
    color: #000;
    font-size: 4.2088vw;
    position: relative;
    overflow: visible;
    margin-bottom: var(--space-30);
    text-align: left;
}
@media screen and (min-width: 1921px) {
.services-header .page-heading-title{ font-size:80px}
}
/*.services-header .page-heading-title:before {
    background: url(../images/icons/plus.svg) no-repeat center center;
    content: '';
    width: 71px;
    height: 71px;
    display: block;
    position: absolute;
    left: -100px;
    top: -45px;
}*/

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

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

.subpage .services-details-container:before {
    width: 100%;
    height: 55%;
    background: #000;
    border-radius: 0 0 50px 50px;
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
}

.services-desc {
    font-weight: 400;
    font-size: var(--font-24);
    line-height: 1.91667;
    color: #fff;
    position: relative;
}

.services-header {
    margin-left: 31%;
    max-width: 46%;
    margin-bottom: 10px;
}

.service-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-30);
}

.service-bottom-left {
    max-width: 1360px;
    margin: 0 auto var(--space-60);
}

.services-details-container2 .service-icon {
    display: none;
}

.service-bottom .service-icon {
    width: 150px;
    height: 150px;
    margin-left: 60px;
    margin-bottom: 311px;
}

.service-bottom .service-icon svg {
    width: 100%;
    max-height: 100%;
}

.buttons-center {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: calc(var(--space-25) + var(--space-50));
    padding-bottom: calc(var(--space-25) + var(--space-50));
}

.btn.has-icon.btn-back .btn-icon {
    margin-left: 0;
    margin-right: 19px;
}

.subpage .news-box-container {
    padding-top: calc(var(--space-25) + var(--space-50));
}

.news-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -35px -35px -6px;
}

.news-box .news {
    width: 33.33%;
    padding: 35px;
    margin-bottom: 10px;
}

.photo-label {
    border-radius: 0 5px 5px 0;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    position: absolute;
    top: 17px;
    line-height: 25px;
    text-align: left;
    padding: 0 29px;
    background: #fff;
    z-index: 2;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
    max-width: 90%;
}

.news-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 300ms ease-out;
}

span.play {
    display: block;
    width: 18%;
}

.news-link:hover .news-hover {
    opacity: 1
}

.news-box .news-photo {
    margin-bottom: var(--space-40);
}

.text-box-container .article-image .photo-label {
    font-size: 16px;
    line-height: 56px;
    top: 28px;
}

.text-box-container {
    padding-top: calc(var(--space-25) + var(--space-50) + 7px);
}

.article-text.text.txt {
    font-weight: 300;
    line-height: 2;
}

.article-content {
    padding-bottom: var(--space-40);
}

.other-box-container {
    padding-top: calc(var(--space-60) + 6px);
    padding-bottom: 290px;
    margin-bottom: -260px;
    background: #000;
}

.other-box-title {
    font-weight: 400;
    font-size: var(--font-20);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: calc(var(--space-40) + var(--space-30));
}

.other-box-container .news-title {
    color: #fff;
}

.other-box-container .news .text.text {
    color: #fff;
}

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

.contact-header .page-heading-title {
    color: #fff;
    margin-bottom: var(--space-60);
}

.contact-header-left {
    width: 34%;
}

.contact-header-left .text.txt h2 {
    font-weight: 700;
    font-size: var(--font-20);
    /* line-height: 50px; */
    line-height: 108%;
    color: #fff;
    margin-bottom: calc(var(--space-30) + 7px);
}

.contact-header-left .text.txt {
    color: #fff;
    line-height: 250%;
}

.contact-header-left .text.txt a {
    line-height: 185%;
    color: #fff;
    font-weight: 700;
    font-size: var(--font-20);
}

.contact-header {
    display: flex;
    justify-content: space-between;
}

.contact-header-right {
    width: 60.3%;
}

.subpage .contact-header .about-slogan {
    width: 95%;
    max-width: 95%;
    margin-bottom: calc(var(--space-60) + 4px);
    margin-left: 0;
    font-size: 2.2088vw;
}

.contact-header .social-icon {
    background: #969a9e;
    color: #fff;
    border-color: #969a9e;
}

.contact-header a:hover .social-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.contact-header a:hover .social-icon svg {
    fill: #ffff;
}

.contact-box-container .photo-bg img {
}

.mask.contact-mask {
    background: rgba(0, 0, 0, 0.7);
}

.form-box-container {
    padding-top: calc(var(--space-25) + var(--space-50));
    padding-bottom: calc(var(--space-25) + var(--space-50));
}

.form-boxes {
    display: flex;
    justify-content: space-between;
}

.form-box-wrapper {
    width: 57.3%;
}

.form-right {
    width: 33%;
    margin-top: 77px;
}

.contact-slogan {
    padding-top: 32px;
    padding-left: 72px;
    padding-right: 0;
    position: relative;
    font-weight: 300;
    font-size: var(--font-26);
    line-height: 1.1;
    text-transform: uppercase;
    color: #000;
}


.contact-slogan:before {
    content: '';
    background: url(../images/icons/plus.svg) no-repeat center center / contain;
    width: 26px;
    height: 26px;
    display: block;
    position: absolute;
    left: 5px;
    top: 0;
}

.map-box-title {
    font-weight: 400;
    font-size: var(--font-20);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: calc(var(--space-40) + var(--space-30));
}

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


.map {
    width: 57.3%;
}

.map-right {
    width: 33%;
    padding-top: 17px;
}

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

article.article:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    margin-bottom: calc(-1 * var(--space-40));
}

.content-box.content-box-services {
    background: url(../images/zakres.jpg) no-repeat top center / 100%;
}

.content-box.content-box-contact {
    background: url(../images/kontakt.jpg) no-repeat top center / 100%;
}

.contact-header-left .text ul > li {
    left: 0;
    padding-right: 0;
}

.contact-header-left .text ul > li:before {
    display: none;

}

.article-image.article-video {
    width: 50%;
}

.article-image.article-video .iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    height: 0;
}

.article-image.article-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

.about-box-container .about-slogan span {
    display: block;

}

.about-box-container .about-slogan span:first-of-type {
    float: left;
    margin-right: 14px;
}

.about-box-container .about-slogan:after {
    content: '';
    clear: both;
}



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

footer .photo-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 80px 0 0 0;
    overflow: hidden;
    mask-position: right top;
    inset: 0;
}

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


.contact-box-container .photo-bg {
    height: 100%;
    border-radius: 0 0 0 80px;
    overflow: hidden;
    inset: 0;
    width: 100%;
    mask-position: bottom right;
}

.contact-box-container .photo-bg img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}


.mask.contact-mask {
    background: rgba(0, 0, 0, 0.7) url(../images/contact_bg.png) no-repeat right bottom;
}

#main-menu li li {
    background: #000;
}

#main-menu li li a {padding: 10px 30px;}

#main-menu li li {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.faq-box-container {
    padding-top: calc(var(--space-25) + var(--space-50));
    padding-bottom: calc(var(--space-25) + var(--space-50));
}

.services-box-container .news-box-left-header .services-box-title {
    margin-bottom: 0;
    width: 100%;
    text-align: center;
}

.services-box-container .news-box-left-header {    margin-bottom: calc(var(--space-50)  + var(--space-50));}

.services-box-container .news-box-left-header .btn {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -23px;
}

.services-box-container .news-box-left-header {
    position: relative;
}


.needs-box-title {
    font-weight: 400;
    font-size: var(--font-30);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

.needs-section {
    padding-top: calc(var(--space-25) + var(--space-60));
    padding-bottom: 0;
}

.needs-subtitle {
    font-weight: 400;
    font-size: var(--font-24);
    letter-spacing: 0.05em;
    color: #000;
    text-align: center;
    margin-bottom: calc(var(--space-25) + var(--space-60));
}

.needs-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    margin: 0 auto 30px;
}

.needs-name {
    font-weight: 400;
    font-size: var(--font-30);
    line-height: 130%;
    text-transform: uppercase;
    color: #000;
    margin-bottom: calc(var(--space-30) + 3px);
}

.needs-grid {
    display: flex;
}

.needs-box {
    width: 25%;
    text-align: center;
}

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

.solution-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.solution-text {
    width: 50%;
}

.solution-photo {
    width: 40%;
}

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

.mainBenefits {
    padding-top: calc(var(--space-25) + var(--space-60));
    padding-bottom: var(--space-30);
}

.mainSteps-container {
    padding-top: calc(var(--space-25) + var(--space-60));
    padding-bottom: var(--space-30);
}

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


.mainSteps-img {
    width: 40%;
}

.mainSteps-text {
    width: 50%;
}

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

.step-name {
    font-weight: 400;
    font-size: var(--font-30);
    line-height: 130%;
    text-transform: uppercase;
    color: #000;
    margin-bottom: var(--space-30);
}

.mainReviews {
    padding-top: calc(var(--space-25) + var(--space-60));
    padding-bottom: var(--space-60);
}


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

.review-item {
    width: 48%;
    padding: 20px;
}

.mainpage .review-item {
    padding: 0 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.review-author {
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 130%;
    text-transform: uppercase;
    color: #000;
    flex-grow: 1;
    padding-right: 10px;
}

.item-rating-container {
    color: #FFC73A;
    width: 120px;
    flex-shrink: 0;
}

.accordion-header-content {
    position: relative;
}

.accordion {
    margin-top: -1px;
}

.accordion-header-content {
    clear: both;
    margin: 0 auto;
    width: auto;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 4px 60px 5px 23px;
}

.accordion-name {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 10px 0 10px;
    font-weight: 500;
    font-size: var(--font-18);
    line-height: 2.14286;
    color: #000;
}

.accordion-arrow {
    text-align: center;
    transition: all 300ms ease-out;
    position: absolute;
    top: 50%;
    margin-top: -23px;
    right: 13px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}

@media screen and (min-width: 1140px) {
    .accordion-header:hover .accordion-arrow {
        transform: rotate(180deg);
        -ms-transform: rotate(180deg);
    }
}

.accordion-content {
    display: none;
    padding: 0 23px 14px;
}

.accordion-header {
    border-top: 1px solid #e5e5e5;
    cursor: pointer;
    border-bottom: 1px solid #e5e5e5;
}


@media screen and (min-width: 1140px) {
    .accordion-header:hover .accordion-name {
        color: var(--color-primary);
    }
}

.accordion-header.active {
    border-bottom: 1px solid #fff;
}



.step-box {
    margin-bottom: var(--space-40);
}

.needs-section .needs-name {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.875;
    color: #000;
    text-transform: none;
    text-align: left;
    margin-bottom: 0;
}


.needs-section .needs-icon img {
    display: block;
    max-width: 100%;
}

.needs-section .needs-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-right: 20px;
    flex-shrink: 0;
}

.needs-grid {
    margin: -20px;
    justify-content: center;
}


.mainSteps {
    align-items: center;
}

.step-name {
    margin-bottom: 10px;
}

.needs-grid {
    margin: -20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 30px;
}

.needs-box {
    padding: 20px;
}


.mainBenefits .needs-box-title {
    margin-bottom: calc(var(--space-50) + var(--space-50));
}

.mainSteps-container .needs-box-title {
    margin-bottom: calc(var(--space-50) + var(--space-50));
}

.news-box-left-header {
    margin-bottom: calc(var(--space-50) + var(--space-50));

}

.mainReviews .needs-box-title{    margin-bottom: calc(var(--space-50) + var(--space-50));}

.news-main  .news{ width:100%;}


.news-main {
    padding: 0 20px;
}

.news-wrapper-slider {
    margin: 0 -20px;
}

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

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


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

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

.review-slider .slick-slide {
                   height: inherit !important;
               }
			   
			   
			   .review-slider .slick-track {
    display: flex !important;
}

button.slick-arrow {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 transparent;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #000;
    position: absolute;
    top: 50%;
    margin-top: -20px;
}


button.slick-arrow:hover{background:var(--color-primary);}

button.slick-arrow.next span {
    background: url(../images/icons/arrow_right.svg) no-repeat center center;
    width: 100%;
    height: 100%;
    display: block;
}

button.slick-arrow.prev span {
    background: url(../images/icons/arrow_left.svg) no-repeat center center;
    width: 100%;
    height: 100%;
    display: block;
}

button.slick-arrow.next:hover span {
    background: url(../images/icons/arrow_right_white.svg) no-repeat center center
}

button.slick-arrow.prev:hover span {
    background: url(../images/icons/arrow_left_white.svg) no-repeat center center;
}

button.prev.slick-arrow {
    left: -60px;
}

button.next.slick-arrow {
    right: -60px;
}

.needs-section .needs-box-title {
    margin-bottom: var(--space-40);
}

.needs-box-subtitle {
    font-weight: 400;
     font-size: var(--font-20);
    letter-spacing: 0.05em;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.needs-box-subtitle2 {
    font-weight: 400;
    font-size: var(--font-20);
    letter-spacing: 0.05em;
    color: #000;
    text-align: center;
    margin-bottom: var(--space-60);
}

.needs-section .needs-box {
    width: 45%;
}

.needs-section .needs-grid {
    justify-content: space-between;
}

.services-header-box {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-60);
    align-items: center;
}

.services-header {
    margin-left: 0;
}

.service-bottom {
    width: 50%;
    flex-direction: column;
}

.subpage  .service-bottom .about-photo {
    width: 100%;
}


.services-details-container1 {
    padding-bottom: var(--space-60);
    position: relative;
}


.subpage .services-details-container1:before {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 0 0 50px 50px;
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
}

.review-item-content {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background: #fff;
    display: flex
;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    padding: 34px 13% calc(var(--space-40) + 8px) 38px;
    position: relative;
}

.needs-section .needs-box {
    width: 45%;
    display: flex;
    align-items: center;
}

.news-box-left-header .btn {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -23px;
}

.news-box-left-header {
    position: relative;
}

.price-list-container {
    padding-top: calc(var(--space-25) + var(--space-50));
    padding-bottom: calc(var(--space-25) + var(--space-50));
}

.packages-box-container .price {
    font-size: var(--font-24);
    text-align: center;
    color: var(--color-primary);
    border-bottom: 1px solid #e5e5e5;
    padding: 0 15px 15px 15px;
}

.packages-box-container .panel-default>.panel-heading {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    font-size: var(--font-30);
}

.packages-box-container .text.text p {
    padding: 6px;
}

.packages-box-container .price:last-child {
    border-bottom: 0 none;
}

.packages-box-container .panel-default {
    border-color: #e5e5e5;
    height: 100%;
}

.packages-box-container .col-xs-4 {
    padding: 25px;
}

.packages-box-container .row{ margin:-25px;}


.page-heading-title + .text.txt {
    margin-bottom: calc(var(--space-25) + var(--space-50));
}

.top .btn.btn-lg.btn-primary {
    font-size: 14px;
    height: 40px;
    line-height: 38px;
}

.text.txt.address-box h2 {
    color: #fff;
    font-weight: bold;
}
.text.txt.address-box {
    color: #fff;
}

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

.text.txt.address-box ul li:before {
    display: none;
}

.text.txt.address-box ul > li {
    left: auto;
    padding-right: 0;
    font-size: 18px;
}

.contact-header-left .page-heading-title {
    text-align: left;
}

.price-list-container .page-heading-title + .text{
    text-align: center;
}

.rwdPanel + .btn{
    margin-left: var(--space-40);
}


.text.txt.address-box a strong {
    color: #fff;
    margin-left: 6px;
    border-bottom: 1px solid var(--color-primary);
    font-weight: normal;
}

.text.txt.address-box a:hover strong { color: var(--color-primary)}
.text.txt.address-box a:hover{ text-decoration:none;}

.text.txt.address-box a[href^="tel:"] strong {
    margin-left: 0;
}