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

    --font-55: 55px;
    --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: #8B0030;
    --color-secondary: #00ff00;
    --color-default: #333;
}

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: 0.7s;
    animation-duration: 0.7s;
}

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

.grayscale {
    filter: grayscale(1);
}

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

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

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

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

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


.container--noClear {
    clear: none;
}

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

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

/**
 * BUTTONS
 */

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

.btn-lg {
    border: 1px solid transparent;
    text-transform: uppercase;
    padding: 0 34px;
    height: 54px;
    line-height: 54px;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.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: 0;
    background: transparent !important;
    border: transparent !important;
    padding-right: 0;
}

.btn.has-icon .btn-icon {
    border: 1px solid;
    height: 54px;
    padding: 6px;
    width: 54px;
    border-radius: 50%;
    margin-left: 28px;
}

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

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


/**
 * THEMES
 */

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

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

.btn.btn-secondary, .btn.btn-secondary:focus, .btn.btn-secondary:active, .btn.btn-secondary:focus:active {
    background: linear-gradient(209deg, #505b7f 0%, #1f273c 100%);
    border-color: transparent;
    color: #fff;
}

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

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

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

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


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

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

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

.btn.btn-white .btn-icon {
    border-color: #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: #fff;
        border-color: #505b7f;
        color: #505b7f;
    }

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

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

    .btn-default:hover .btn-icon {
        background: linear-gradient(209deg, #505b7f 0%, #1f273c 100%);
    }

    .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: var(--color-default);
        border-color: var(--color-default);
        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: 600;
    line-height: 1.5;
    text-transform: uppercase;
    color: #000;
}

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

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

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

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


.text.txt h6 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    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%;
    color: #fff;
    text-shadow: 0 0 transparent;
    font-size: 30px;
}

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


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

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


/**
 * TEXT
 */

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

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}
.text.txt ul{
    margin-bottom: 12px;
}
.text ul > li,
.text ol > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}

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

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

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

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

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


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

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

.photo-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* opacity: 0; */
}

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

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.top {
    padding-top: 45px;
    padding-bottom: 45px;
    transition: all 300ms ease-out;
}

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

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

.logo {
    float: none;
    margin-right: 21px;
}

.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 {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    display: block;
    padding: 25px;
}

#main-menu li a:hover {
    color: #fff;
    font-weight:600
}

#main-menu li.active a {
    color: #fff;
  font-weight:600
}

#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;
    background: rgba(0, 0, 0, 0.3);
}

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

.footer-bg {
    display: flex;
}

.footer-left {
    width: 50%;
    padding: 105px 7.5% 135px;
    background: linear-gradient(-43deg, #505b7f 0%, #1f273c 100%);
}

.footer-right {
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: flex-start;
    padding-top: 262px;
    padding-left: 46px;
    position: relative;
}

.footer-left .form .form-control {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff
}

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


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

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

.footer-col-title {
    font-weight: 500;
    font-size: var(--font-30);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: var(--space-50);
}


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


img.logo-min {
    display: block;
    max-width: 65%;
    position: absolute;
    right: -17%;
    top: -11%;
}

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

.footer-circle {
    background: linear-gradient(212deg, #505b7f 0%, #1f273c 100%);
    border-radius: 50%;
    position: relative;
    padding: 95px 55px 19px 100px;
    width: 530px;
    height: 530px;
}

.footer-right .text.txt {
    font-weight: 200;
    font-size: 15px;
    line-height: 174%;
    color: #fff;
    margin-bottom: 24px;
}

.footer-right .text.txt strong {
    font-weight: 600;
    line-height: 200%;
}

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

.contact-link-bottom {
    display: flex;
    align-items: center;
    padding: 4px 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 2.14286;
    color: #fff;
    margin-bottom: 4px;
}

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


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

span.mask.footer-mask2 {
    background: url(../images/footer_bg.png) no-repeat right top;
    opacity: 0.50;
    mix-blend-mode: screen;
}

/* FOOTER BAR */
.footer-bar {
    line-height: 30px;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer-bar-content {
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}


.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: 3px 8px;
    font-size: 14px;
    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;
}

.copyright-undicom {
    display: flex;
    float: right;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    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;
}

.scroll {
    width: 90px;
    height: 90px;
    background: #8b0030;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 100px;
    right: 50%;
    margin-right: -820px;
}

/**
 * FORM
 */

.form-box-title {
    font-size: var(--font-40);
    color: #000;
    font-weight: 700;
    margin-bottom: var(--space-40);
}

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

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

.form .form-element-name {
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
}

.footer-left .form-element-name {
    color: #fff;
}


/* 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;
    border-radius: 0;
    border: 1px solid #e5e5e5;
    font-weight: 400;
    font-size: 14px;
    color: #000;
}

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

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

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


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

/*---- 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: #e5e5e5;
    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: 14px;
    padding-right: 44px;
    color: #555;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000;
}

.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-primary.btn-lg {
}


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

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

/**
 * 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: #fff;
    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: 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;
}

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 1);
    padding: 4px;
    border-radius: 0;
    border-radius: 6px;
}

@media screen and (min-width: 1140px) {
    .social:hover .social-icon {
        color: #fff;
        border-color: #8b0030;
        background: #8b0030;
    }
}

.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: 14px;
    margin-left: 18px;
}

.langs-menu:before {
    content: '';
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
}

.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;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
}

.lang span.langs-menu-icon {
    vertical-align: middle;
    line-height: 0;
    margin-right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    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;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
}

.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: 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 {
        background-color: #8b0030;
        border-color: #8b0030;
        color: #8b0030;
    }

    .langs-menu a.lang:hover,
    a.lang:focus {
        background-color: #8b0030;
        border-color: #8b0030;
        color: #8b0030;
    }

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


    span.langs-menu-short {
        display: block;
        font-weight: 400;
        font-size: 15px;
        text-transform: uppercase;
        text-align: justify;
        color: #fff;
    }
}

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

.news-details-container .article-image {
    margin-bottom: 25px;
    margin-right: 150px;
}

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

.article-subtitle {
    padding-bottom: 13px;
    font-weight: 600;
    font-size: var(--font-24);
    color: #000;
    padding-top: 12px;
}

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
    margin-bottom: var(--space-50);
}

.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: url(../images/gal_hover.png);
}

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

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

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

/**
* PAGINATION
*/

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

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

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

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

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

.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: linear-gradient(209deg, #505b7f 0%, #1f273c 100%);
    }

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

    .pagination-wrapper ul li.prev a:hover {
        background: linear-gradient(209deg, #505b7f 0%, #1f273c 100%);
    }

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

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

.slider {
    height: 100vh;
    min-height: 600px;
    position: relative;
    max-height: 950px;
}

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

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

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

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

.mask.slider-mask3 {
    background: url(../images/slider_mask.png) no-repeat top center;
    mix-blend-mode: color-dodge;
}

.slide-box {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: flex-end;
    padding-bottom: var(--space-60);
}

.slide-left {
    width: 50%;
}

.slide-right {
    width: 31.8%;
    padding-bottom: 3.5%;
}

.slide-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
}


.title1 {
    font-weight: 500;
    font-size: var(--font-55);
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    margin-bottom: calc(var(--space-40) + 5px);
}

.description {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #fff;
    padding: calc(var(--space-30) + var(--space-40));
}

img.slide-logo {
    position: absolute;
    max-width: 37%;
    right: -8px;
    top: -54px;
}

.circle-description {
    background: linear-gradient(207deg, #505b7f 0%, #1f273c 100%);
    border-radius: 50%;
    width: 523px;
    height: 523px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


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

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

ul.slick-dots li span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    background: transparent;
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
}

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

@media screen and (min-width: 1140px) {
    ul.slick-dots li:hover span {
        background: var(--color-primary);
        border-color: var(--color-primary);
    }
	
	.slider .btn.btn-white:hover .btn-icon {
    background: #fff;
}
}

header.sticky {
    background: linear-gradient(-61deg, #505b7f 0%, #1f273c 100%);
    border-bottom: transparent;
}

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

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

.mainpage .news-box-container {
    padding-top: var(--space-50);
    padding-bottom: calc(var(--space-40) + var(--space-40));
}

.section-box-title {
    font-weight: 500;
    font-size: var(--font-30);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
}

.mainpage .news-box {
    margin: -60px;
}

.mainpage .news {
    padding: 60px;
}

.news-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.news-box {
    display: flex;
    flex-wrap: wrap;
    margin: -40px -60px;
}


time.news-date {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    display: block;
    margin-bottom: 22px;
}

.news-title {
    font-weight: 500;
    font-size: var(--font-18);
    line-height: 1.66667;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 22px;
}

.news .text.txt {
    margin-bottom: var(--space-30);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 150px;
}

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

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

.news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}

.subpage .top {
    padding-top: 18px;
    padding-bottom: 18px;
}

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

.page-heading-title {
    font-weight: 500;
    font-size: var(--font-30);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    margin-bottom: var(--space-60);
}

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

.support-box-wrapper {
    position: relative;
    margin-bottom: var(--space-60);
}

.support-box {
    display: flex;
    flex-wrap: wrap;

}

.support-item {
    width: 20%;
    padding-bottom: 20%;
    position: relative;
    transition: all 300ms ease-out;
}

.support-link {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: calc(var(--space-50) + var(--space-40));
    align-items: center;
    background-position: center center;
}

.support-title {
    font-weight: 400;
    font-size: var(--font-18);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    padding: 0 39px;
    transition: all 300ms ease-out;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.support-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 27px;
    flex-shrink: 0;
}

.support-item:nth-child(10n+9),
.support-item:nth-child(10n+8),
.support-item:nth-child(10n+6),
.support-item:nth-child(10n+4),
.support-item:nth-child(10n+2),
.support-item:nth-child(10n) {
    background: #e4e4e4;
}


.support-item:nth-child(10n+9),
.support-item:nth-child(10n+7),
.support-item:nth-child(10n+5),
.support-item:nth-child(10n+3),
.support-item:nth-child(10n+1) {
    background: #fff;
}

.support-item.support-item-empty {
    background: transparent !important;
}

.support-item .support-icon img{
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .support-item:hover {
        background-color: transparent;
        background-image: url(../images/support_hover.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 87%;
    }


    .support-icon svg, .support-icon svg * {
        stroke: #000;
        transition: all 300ms ease-out;
    }

    .support-item:hover .support-icon svg, .support-item:hover .support-icon svg * {
        stroke: #fff;
    }

    .support-item:hover .support-icon img{
        filter: brightness(0) invert(1);
    }

    .support-item:hover .support-title {
        color: #fff;
    }

    .support-item.support-item-empty:hover {
        background: transparent;
    }
}

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

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

.text-bottom .text.txt h2 {
    font-weight: 600;
    font-size: var(--font-20);
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: var(--space-30);
}

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

.what-box-container {
    position: relative;
    background: linear-gradient(-137deg, #505b7f 0%, #1f273c 100%);
    padding-top: var(--space-60);
}

span.mask.support-mask2 {
    background: url(../images/what_mask.png) no-repeat top center;
    mix-blend-mode: screen;
    opacity: 0.3;
}

.what-box-container .page-heading-title {
    color: #fff;
}

.what-box {
    display: flex;
    flex-wrap: wrap;
    padding-top: var(--space-40);
}

.what-item {
    width: 25%;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: -1px;
    margin-right: -1px;
    position: relative;
}

.what-link {
    display: flex;
    align-items: center;
    padding-left: 10%;
    padding-right: 4%;
    min-height: 212px;
}

.what-box .support-title {
    flex-grow: 1;
    padding: 0;
    text-align: left;
    font-size: var(--font-20);
    color: #fff;
}

.what-box .support-icon {
    margin-bottom: 0;
    margin-right: 36px;
}


.what-box .support-icon svg, .what-box .support-icon svg * {
    stroke: #fff;
}

.what-item:nth-child(4n+1) {
    border-left: 0 none;
}

.what-item:nth-child(4n+1):last-child {
    border-bottom: 0 none;
}

.what-item:nth-child(4n+1):nth-last-child(2),
.what-item:nth-child(4n+2):last-child {
    border-bottom: 0 none;
}

.what-item:nth-child(4n+1):nth-last-child(3),
.what-item:nth-child(4n+2):nth-last-child(2),
.what-item:nth-child(4n+3):last-child {
    border-bottom: 0 none;
}

.what-item:nth-child(4n+1):nth-last-child(4),
.what-item:nth-child(4n+2):nth-last-child(3),
.what-item:nth-child(4n+3):nth-last-child(2),
.what-item:nth-child(4n):last-child {
    border-bottom: 0 none;
}

@media screen and (min-width: 1140px) {
    .what-link:hover {
        background: rgba(18, 39, 82, 0.6);
    }

    .what-item:hover {
        border-color: rgba(18, 39, 82, 0.6);
    }
}

.what-item:after {
    content: '';
    width: 2px;
    height: 24px;
    left: 0;
    top: 0;
    background: #fff;
    display: block;
    position: absolute;
    z-index: 1;
    opacity: 0;
}


.what-item:before {
    content: '';
    height: 2px;
    width: 24px;
    left: 0;
    top: 0;
    background: #fff;
    display: block;
    position: absolute;;
    z-index: 1;
    opacity: 0;
}


.what-link:after {
    content: '';
    width: 2px;
    height: 24px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    display: block;
    position: absolute;
    z-index: 1;
    opacity: 0;
}


.what-link:before {
    content: '';
    height: 2px;
    width: 24px;
    right: 0;
    bottom: -2px;
    background: #fff;
    display: block;
    position: absolute;;
    z-index: 1;
    opacity: 0;
}

@media screen and (min-width: 1140px) {
    .what-item:hover:after {
        opacity: 1
    }

    .what-item:hover:before {
        opacity: 1
    }

    .what-link:hover:before {
        opacity: 1
    }

    .what-link:hover:after {
        opacity: 1
    }
}

.how-item {
    width: 50%;
    padding-bottom: 50%;
    position: relative;
}

.how-box {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.how-box .support-title {
    font-weight: 500;
    font-size: var(--font-22);
    text-align: left;
    padding: 0;
    margin-bottom: calc(var(--space-50) + 5px);
}

.how-box .support-link {
    align-items: flex-start;
    padding: 20px 50px;
    justify-content: center;
}

.more-arrow {
    width: 55px;
    height: 55px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text.txt {
    font-weight: 400;
    font-size: 15px;
    line-height: 2;
    color: #000;
}

.how-item .text.txt {
    margin-bottom: var(--space-50);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*.how-item:nth-child(4n+2),
.how-item:nth-child(4n+3) {
    background: #fff;
}


.how-item:nth-child(4n),
.how-item:nth-child(4n+1) {
    background: linear-gradient(220deg, #505b7f 0%, #1f273c 100%);
}

.how-item.how-item-empty {
    background: transparent
}

.how-item:nth-child(4n) .support-title,
.how-item:nth-child(4n+1) .support-title {
    color: #fff
}

.how-item:nth-child(4n) .text.txt,
.how-item:nth-child(4n+1) .text.txt {
    color: #fff
}

.how-item:nth-child(4n) .more-arrow,
.how-item:nth-child(4n+1) .more-arrow {
    border-color: #fff
}


.how-item:nth-child(4n) .more-arrow svg,
.how-item:nth-child(4n+1) .more-arrow svg {
    stroke: #fff
}

@media screen and (min-width: 1140px) {
    .how-item:nth-child(4n):hover .more-arrow,
    .how-item:nth-child(4n+1):hover .more-arrow {
        background: #fff
    }

    .how-item:nth-child(4n):hover .more-arrow svg,
    .how-item:nth-child(4n+1):hover .more-arrow svg {
        stroke: #000
    }


    .how-item:nth-child(4n+2):hover .more-arrow,
    .how-item:nth-child(4n+3):hover .more-arrow {
        background: linear-gradient(209deg, #505B7F 47.03%, #1F273C 98.63%);
        border-color: #fff
    }

    .how-item:nth-child(4n+2):hover .more-arrow svg,
    .how-item:nth-child(4n+3):hover .more-arrow svg {
        stroke: #fff
    }
}
*/


.how-item:nth-child(4n+3),
.how-item:nth-child(4n+4) {
    background: #fff;
}


.how-item:nth-child(4n+2),
.how-item:nth-child(4n+1) {
    background: linear-gradient(220deg, #505b7f 0%, #1f273c 100%);
}

.how-item.how-item-empty {
    background: transparent
}

.how-item:nth-child(4n+2) .support-title,
.how-item:nth-child(4n+1) .support-title {
    color: #fff
}

.how-item:nth-child(4n+2) .text.txt,
.how-item:nth-child(4n+1) .text.txt {
    color: #fff
}

.how-item:nth-child(4n+2) .more-arrow,
.how-item:nth-child(4n+1) .more-arrow {
    border-color: #fff
}


.how-item:nth-child(4n+2) .more-arrow svg,
.how-item:nth-child(4n+1) .more-arrow svg {
    stroke: #fff
}

@media screen and (min-width: 1140px) {
    .how-item:nth-child(4n+1):hover .more-arrow,
    .how-item:nth-child(4n+2):hover .more-arrow {
        background: #fff
    }

    .how-item:nth-child(4n+1):hover .more-arrow svg,
    .how-item:nth-child(4n+2):hover .more-arrow svg {
        stroke: #000
    }


    .how-item:nth-child(4n+3):hover .more-arrow,
    .how-item:nth-child(4n+4):hover .more-arrow {
        background: linear-gradient(209deg, #505B7F 47.03%, #1F273C 98.63%);
        border-color: #fff
    }

    .how-item:nth-child(4n+3):hover .more-arrow svg,
    .how-item:nth-child(4n+4):hover .more-arrow svg {
        stroke: #fff
    }
}



span.mask.support-mask3 {
    background: rgba(0, 0, 0, 0.4);
}

.person-photo {
    border-radius: 50%;
    margin-bottom: var(--space-30);
    border-radius: 50%;
    overflow: hidden;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

.person-box {
    display: flex;
    flex-wrap: wrap;
    margin: -30px -36px;
}

.person-item {
    width: 25%;
    padding: 30px 36px;
}

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

.search-box {
    padding: 20px 50px 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: var(--space-40);
}

.search-box .col-sm-4 {
    padding: 0 35px;
    margin-bottom: 15px;
}

.search-box .row {
    margin: 0 -35px;
}

form#search-form {
    padding: 0;
}

.person-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.person-box-title {
    font-weight: 600;
    font-size: var(--font-20);
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: var(--space-50);
}

.person-box-wrapper {
    padding-top: 15px;
    padding-bottom: var(--space-60);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: var(--space-40);
}

.person-name {
    font-weight: 600;
    font-size: var(--font-20);
    text-align: center;
    color: #000;
    line-height: 113%;
    margin-bottom: 7px;
}

.position {
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}

.person-box-wrapper:last-child {
    border-bottom: 0 none;
    margin-bottom: 5px;
}

.person-box-wrapper:last-child {
    border-bottom: 0 none;
    margin-bottom: 5px;
}

.person-item:nth-child(even) .person-photo {

}

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

.news {
    width: 33.33%;
    padding: 40px 60px;
}

.article-content-right {
    width: 42.3%;
}

.article-content-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-50);
}

.article-content-left {
    width: 50%;
}

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

.article-content .page-heading-title {
    text-align: left;
    line-height: 1.53333;
    margin-bottom: var(--space-30);
}

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

.news-details-container {
    padding-bottom: var(--space-50);
}


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

.contact-box-container {
    display: flex;
}

.contact-box-container .footer-right {
    padding-top: var(--space-60);
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 7.5%;
    padding-right: 7.5%;
    align-items: center;
}

.contact-box-container .page-heading-title {
    width: 100%;
    position: relative;
    color: #fff;
    text-align: left;
    margin-bottom: calc(var(--space-60) + var(--space-60));
}

.contact-box-container .footer-left {
    padding-top: var(--space-60);
}

.container.container-next-to {
    clear: none;
    margin-bottom: var(--space-60);
}

.news-details-container time.news-date {
    padding-top: calc(var(--space-60) + 5px);
}

.news-details-container .page-heading-title {
    text-align: left;
    font-weight: 500;
    font-size: var(--font-30);
    line-height: 1.53333;
    text-transform: uppercase;
    color: #000;
    margin-bottom: var(--space-30);
}

.news-details-container {
    padding-bottom: var(--space-50);
}

.subpage header {
    background: linear-gradient(209deg, #505b7f 0%, #1f273c 100%);
}

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

.article-image.article-image-circle {
    margin-bottom: var(--space-30);
    margin-right: 100px;
    position: relative;
    width: 43%;
    flex-shrink: 0;
}

.article-content .position {
    text-align: left;
    margin-bottom: calc(var(--space-40) + 5px);
}


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

.what-details-container .text.txt h2 {
    font-weight: 600;
    font-size: var(--font-20);
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: var(--space-30);
}


.what-details-container .text.txt {
    margin-top: -10px;
}

.team-box-container {
    padding-top: calc(var(--space-50) + 5px);
    padding-bottom: var(--space-60);
    background: linear-gradient(317deg, #505b7f 0%, #1f273c 100%);
    position: relative;
}

.team-box-container .section-title {
    color: #fff;
    margin-bottom: var(--space-50);
}

.section-title {
    font-weight: 600;
    font-size: var(--font-20);
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: var(--space-30);
}

.team-box {
    display: flex;
    flex-wrap: wrap;
    margin: -30px -36px;
    justify-content: center;
}

.team-box .person-name {
    color: #fff;
}

.team-box .position {
    color: #fff;
}

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

.references-box .gallery-list-item {
    width: 25%;
    padding: 20px;
}

.references-box .gallery-list {
    margin: -20px;
}

.references-box .gallery-picture {
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.mask.team-mask {
    background: url(../images/apla_team.png) no-repeat top center;
    mix-blend-mode: screen;
    opacity: 0.3;
}

.credentials-box-container .text.txt {
    margin-bottom: var(--space-40);
}

body.sticky-footer.contact-page footer {
    overflow: visible;
}


body.sticky-footer.contact-page .footer-circle {
    width: 530px;
    height: 530px;
    background: linear-gradient(212deg, #505b7f 0%, #1f273c 100%);
    border-radius: 50%;
    position: relative;
    padding: 95px 55px 19px 100px;
    margin-bottom: 170px;
}


body.sticky-footer.contact-page .page-heading-title {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    padding: 105px 7.5% 135px;
	width: 100%;
    text-align: left;
}

span.form-element-option-text a {
    color: #fff;
    font-weight: bold;
}

span.form-element-option-text a:hover {
    text-decoration: underline;
}

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


.news-link:hover .news-title {
    color: #505b7f;
}

.news-link:hover .btn-icon{background: linear-gradient(209deg, #505b7f 0%, #1f273c 100%);}
.news-link:hover .btn-icon svg{ stroke:#fff}

.news-box:only-child {
    margin-bottom: 0;
}

.slick-track {
    display: flex !important;

}

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


.contact-page .footer-bg {
    min-height: calc(100vh - 115px);
}

.lines {
    position: absolute;
    top: -65px;
    right: 6px;
    font-size: var(--font-36);
    text-transform: uppercase;
    color: #fff;
    line-height: 136%;
    font-weight: 300;
}

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


button.slick-arrow {
    z-index: 5;
    border-radius: 50%;
    padding: 0;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    background-color: transparent;
    font-size: 29px;
    line-height: 58px;
    width: 54px;
    height: 54px;
    text-indent:-20000px;
    border: 1px solid #000;
}
.slick-prev {
    margin-left: -900px;
    left:50%
}

.slick-next {
    margin-right: -900px;
    right:50%
}

.slick-prev.slick-arrow {
    background: #fff url(../images/icons/arrow_left.svg) no-repeat center center;

}

.slick-next.slick-arrow {
    background: #fff url(../images/icons/arrow_right.svg) no-repeat center center;

}

.slick-prev.slick-arrow:hover {
    background: url(../images/icons/arrow_left_white.svg) no-repeat center center, linear-gradient(209deg, #505b7f 0%, #1f273c 100%);
}

.slick-next.slick-arrow:hover {
    background: url(../images/icons/arrow_right_white.svg) no-repeat center center, linear-gradient(209deg, #505b7f 0%, #1f273c 100%);
}

.btn-wrapper .btn {
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    padding-right: 20px;
}

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

.text-box-container.person-details .article-content {
    display: flex;
    align-items: flex-start;
}

.team-box-container + .buttons-center.mb-50 {
    margin-top: var(--space-50);
}



.text.txt p {
    margin-bottom: 12px;
}

.text.txt p:last-child {
    margin-bottom: 0;
}

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

.brand-view-page .what-details-container:not(:last-child){
    padding-bottom: 0;
}
.brand-view-page .credentials-box-container{
    padding-top: 0;


}

.contact-page .footer-left .footer-col-title {
    color: #fff;
    padding: 0 5.5% 110px;
}

.contact-page .footer-circle .text.txt {
    color: #fff;
}

.contact-page .footer-circle .text.txt a {
    color: #fff;
}

body.sticky-footer.contact-page .footer-right .footer-circle {
    display: none;
}

body.sticky-footer.contact-page .footer-right .page-heading-title {
    display: none;
}

.footer-circle .text.txt {
    color: #fff;
}

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

.footer-col-title {
    margin-bottom: 110px;
}

.how-item.how-item-empty {
    background: transparent;
    display: none;
}

.how-box {
    padding-top: 200px;
    padding-bottom: 200px;
}

.btn-wrapper .btn:last-child {
    padding-left: 10px;
    padding-right: 10px;
    opacity: 0.8;
}

.footer-circle .text.txt strong {
    font-weight: 600;
}

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