/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-48: 48px;
    --font-45: 45px;
    --font-40: 40px;
    --font-36: 36px;
    --font-35: 35px;
    --font-30: 30px;
    --font-28: 30px;
    --font-24: 24px;
    --font-22: 22px;
    --font-18: 18px;
    --font-17: 17px;

    --container-padding: 40px;

    --row-gap: 5px;

    /** SPECIFIC **/
    --color-primary: rgb(19, 35, 91);
    --color-secondary: #3ac26c;
    --color-default: #333;
}

body {
    color: #13235b;
    font-family: Poppins, sans-serif;
    font-size: var(--font-18);
}

/**
 * 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-secondary);
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


/**
 * 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;
}

/**
 * THEMES
 */

.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus:active {
    background-color: #fff;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-primary[disabled],
.btn-primary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn-secondary,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:focus:active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.btn-secondary[disabled],
.btn-secondary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn-default,
.btn-default:focus,
.btn-default:active,
.btn-default:focus:active {
    background-color: var(--color-default);
    border-color: var(--color-default);
    color: #fff;
}

.btn-default[disabled],
.btn-default[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn-white {
    background: #fff;
    border-color: #fff;
    color: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .btn-primary:not([disabled]):hover,
    .btn-primary:not([disabled]).active:hover {
        background-color: var(--color-primary);
        color: #fff;
    }

    .btn-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-secondary);
    }

    .btn-default:not([disabled]):hover,
    .btn-default:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-default);
    }

    .btn-white:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
    }
}

/**
 * BUTTONS
 */

.btn, a, button {
    border-radius: 0;
    transition: all 0.2s;
}

.btn.btn-lg {
    border: 1px solid;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 30px;
    height: 46px;
    line-height: 44px;
    border-radius: 0;
    letter-spacing: 0;
}

.btn.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;
}


/**
 * 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;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
    color: #13235b;
    font-size: var(--font-18);
    line-height: 200%;
}

/** 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: -4px;
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
}

.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;
}

.mask {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    pointer-events: none;
}

div#container-page {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

/**
 * HEADER
 */


#main-menu .line {
    z-index: 2;
    bottom: 0;
    width: 0;
    transition-property: width, left;
    transition-duration: 500ms;
    background-color: var(--color-secondary);
    height: 2px;
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
}


header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.2s;
}

.top {
    position: relative;
    margin-top: 18px;
    transition: all 0.2s;
    margin-bottom: 37px;
}

.top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    float: none;
    margin-right: 10px;
}

.logo a {
    display: block;
    width: 260px;
}

.logo a img {
    display: block;
    max-width: 100%;
    transition: all 0.2s;
}

.logo a img.logo-main {
    display: block;
}

.logo a img.logo-sub {
    display: none;
}


#main-menu {
    transition: all 300ms ease-out;
    width: 52%;
    margin-top: 17px;
}

#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 {
    display: block;
    color: #fff;
    position: relative;
    padding: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/*#main-menu li a:after {*/
/*    height: 2px;*/
/*    background-color: #3ac26c;*/
/*    width: 100%;*/
/*    display: block;*/
/*    position: absolute;*/
/*    bottom: -19px;*/
/*    content: '';*/
/*    opacity: 0;*/
/*}*/

/*#main-menu li a:hover:after {*/
/*    opacity: 1;*/
/*}*/

/*#main-menu li.active a:after {*/
/*    opacity: 1;*/
/*}*/

#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%;
}

.top-right {
    padding-top: 17px;
    display: flex;
    align-items: center;
}


header.sticky #main-menu li a {
    color: #13235b;
}

header.sticky {
    background: #fff;
}

header.sticky .top {
    margin-top: 13px;
    margin-bottom: 13px;
}

header.sticky nav#main-menu {
    margin-top: 0;
}

header.sticky .top-right {
    padding-top: 0;
}


header.sticky .logo a img.logo-main {
    display: none;
}

header.sticky .logo a img.logo-sub {
    display: block;
}


.main-menu-button {
    float: right;
    width: 40px;
    margin: 10px 0;
    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-size: cover;
}

.footer-boxes {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.mask.footer-mask {
    background-color: rgba(0, 0, 0, 0.5);
}

.contact-links {
    width: 67%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -10px;
    flex-wrap: wrap;
}

.footer-box-container {
    padding-top: 175px;
    padding-bottom: 194px;
    position: relative;
}

.footer-logo {
    width: 21%;
}

.footer-logo img {
    display: block;
    max-width: 100%;
}

.contact-link {
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 10px;
    line-height: 150%;
}

.contact-link strong a, .contact-link a strong {
    color: #fff;
    font-weight: 600
}

.copyright {
    position: relative;
}

.copyright:before {
    content: '';
    width: 1px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: -12px;
    top: 50%;
    margin-top: -5px;
}


/* FOOTER BAR */

.footer-bar {
    padding: 0;
    line-height: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255);
    font-weight: 300;
    position: relative;
}

.footer-bar-content {
    padding-top: 6px;
    padding-bottom: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bar-content::after {
    content: "";
    display: table;
    clear: both;
}

.footer-bar-content > * {
    float: left;
}

.footer-bar-content > *:not(:last-child) {
    margin-right: 16px;
}

.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;
    font-size: 14px;
}

@media screen and (min-width: 1140px) {
    .footer-bar-links a:hover {
        text-decoration: underline
    }
}

.copyright-undicom {
    float: right;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

.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.form {
    /* padding: 15px 0; */
}

.form-group {
    margin-bottom: 29px;
}

.form .form-element-name {
    margin-bottom: 8px;

    color: rgb(67, 79, 101);
    font-size: 16px;
    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: lato, sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgb(255, 255, 255);
}

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    /* height: 130px; */
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-family: Poppins, sans-serif;
    color: rgb(113, 113, 113);
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}


.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;
    }

    .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;
}

/*---- 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-work-wrapper button.btn.btn-primary.btn-lg {
    padding: 0;
    display: block;
    border-color: var(--color-secondary);
    width: 204px;
    height: 46px;
    border-radius: 5px;
    background-color: var(--color-secondary);
    color: #fff;
    margin: 40px auto 0;
}

.form-box-wrapper button.btn.btn-primary.btn-lg {
    padding: 0;
    display: block;
    border-color: var(--color-primary);
    width: 180px;
    height: 46px;
    border-radius: 0;
    background-color: #fff;
    color: var(--color-primary);
    margin: 40px auto 0;
}

@media screen and (min-width: 1140px) {
    .form-box-wrapper button.btn.btn-primary.btn-lg:hover {
        background-color: var(--color-primary);
        color: #fff;
    }

    .form-box-work-wrapper button.btn.btn-primary.btn-lg:hover {
        background-color: transparent;
        color: var(--color-secondary);
    }
}

.form .consent-all-row strong {
    color: rgb(113, 113, 113);
    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;
}

/**
 * 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: gray;
    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 {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 156px;
    padding: 28px 0;
}

.logotypes .logotypes-title {
    float: left;
    padding-right: 30px;
    font-size: 22px;
    line-height: 100px;
    vertical-align: middle;
}

.logotypes-slider-container {
    height: 100px;
}

.logotype-slider {
    top: 50%;
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.slick-initialized .logotype {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
}

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
}


/**
 * 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: 40px;
    height: 40px;
    border: 1px solid #f0f;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

.social-icon .fa {
    font-size: 20px;
}


/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: none;
    margin: 0;
    transition-duration: inherit;
    transition-property: none;
    z-index: 1001;
}

.langs-menu ul {

}

.langs-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    color: inherit;
    text-decoration: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: auto;
}

.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
}

.lang .langs-menu-long {
    display: none;
}

.lang-button {
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    font-size: 18px;
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

.langs-menu-icon img {
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {
        color: #fff;
        background-color: #f0f;
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

.langs-menu.langs-menu--list a {
    height: auto;
    padding: 5px;
    border: none;
}

.langs-menu--list .lang {
    background: none;
}

.langs-menu--list .langs-menu-icon {
    margin: 0;
}


button.lang.lang-button {
    display: none;
}

.langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
    position: relative;
    opacity: 1;
    transform: none;
    background: transparent;
    top: auto;
    width: auto;
    transition: none;
    pointer-events: auto;
}

.langs-menu a {
    padding: 0;
    transition-property: border-color;
    transition-duration: 500ms;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 58px;
    justify-content: center;
}

.langs-menu li.active a:hover {
    border-color: rgb(255, 255, 255);
}

.langs-menu a:hover, .langs-menu a:focus {
    border-color: rgb(255, 255, 255);
}


span.langs-menu-icon {
    display: none;
}

.langs-menu-short {
    text-align: center;
}

.langs-menu li {
    border: 0 none;
    margin-left: 9px;
}

.lang span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.langs-menu a:hover, .langs-menu a:focus {
    color: #b8cc00;
    background: transparent;
}


.langs-menu li.active .langs-menu-short {
    border-color: #fff;
    color: #fff;
}

.langs-menu li.active a {
    border-color: #fff;
}


header.sticky .lang span {
    color: #13235b;
}

header.sticky .langs-menu a {
    border-color: rgba(19, 35, 91, 0.2);
}

header.sticky .langs-menu a:hover {
    border-color: rgb(19, 35, 91);
}

header.sticky .langs-menu li.active a {
    border-color: rgb(19, 35, 91);
}

header.sticky .langs-menu li .langs-menu-short {
    color: #13235b;
}


@media screen and (min-width: 1140px) {

    .langs-menu ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
}

.article-image-big {
    position: relative;
    z-index: 10;
    display: block;
    vertical-align: top;
    margin-bottom: 95px;
    width: 100%;
    max-width: 100%;
}

.article-image-big img {
    max-width: 100%;
    display: block;
}

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50%;
    margin-right: 100px;
    margin-bottom: 24px;
}

.article-image img {
    max-width: 100%;
    display: block;
}


.mask.big-mask {
    background-color: rgb(0, 0, 0, 0.3);
}

.photo-subtitle {
    color: rgb(255, 255, 255);
    font-size: 6.25vw;
    font-weight: 700;
    text-align: center;
    position: absolute;
    display: block;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 30px;
}

@media screen and (min-width: 1921px) {
    .photo-subtitle {
        font-size: 120px;
    }
}

.article-date {
    font-weight: bold;
}

.article-text {
    margin-bottom: 30px;
}

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

.gallery-list {
    margin: -20px;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 20px;
}

.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-color: rgb(19, 35, 91, 0.7);
}

.gallery-picture-hover > * {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: url(../images/zoom.png) no-repeat center center;
    width: 185px;
    height: 185px;
    margin: 0 auto;
    text-indent: -20000px;
}

@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/minimal.png);
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .icheckbox_minimal-custom,
    .iradio_minimal-custom {
        background-image: url(../images/minimal@2x.png);
    }
}


.slider, .main-slider, .slider .slide, .slider .slider-photo, .main-slider .slick-list, .main-slider .slick-track {
    position: relative;
    overflow: hidden;
    height: 80vh;
    min-height: 764px;
}

.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: #000000;
    opacity: 0.45;
}

.slider-text-box {
    position: absolute;
    display: flex;
    height: 100%;
    top: 0;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--container-padding);
    align-items: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1720px;
    width: 100%;
}

.slider-text {
    text-align: center;
}

.title1 {
    color: #ffffff;
    font-size: 5.25vw;
    font-weight: 500;
    /*text-transform: uppercase;*/
    line-height: 1;
    font-family: "Monsterat",sans-serif;
}

.title2 {
    color: #ffffff;
    font-size: 2.13vw;
    font-weight: 300;
    font-family: "Monsterat",sans-serif;
}

@media screen and (min-width: 1921px) {
    .title1 {
        font-size: 120px;
    }

    .title2 {
        font-size: 60px;
    }
}

ul.slick-dots {
    max-width: 120px;
    width: 100%;
    position: absolute;
    right: 50%;
    margin-right: -820px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: right;
}

ul.slick-dots li {
    display: inline-block;
    width: 61px;
    margin-bottom: 50px;
    transition: all 0.2s;
}

ul.slick-dots li span.slider-line {
    width: 100%;
    height: 2px;
    display: block;
    background: rgba(255, 255, 255, 0.5);
}

ul.slick-dots li.slick-active {
    width: 120px;
}

ul.slick-dots li.slick-active span.slider-line {
    background: rgb(255, 255, 255)
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}

button.mouse {
    animation: scroll 2s forwards infinite linear;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px;
    background: transparent;
    width: 8%;
    height: 52px;
    border: 0 none;
    margin: 0 auto;
}

button.mouse svg path {
    transition: all 0.9s;
}

@media screen and (min-width: 1140px) {
    button.mouse:hover svg path {
        fill: #3ac26c
    }
}


.about-box-container {
    padding-top: 84px;
    padding-bottom: 100px;
}

.about-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 109px;
}

.about-left {
    width: 40%;
}

.about-right {
    width: 45%;
    padding-top: 25px;
    color: rgb(19, 35, 91);
    font-size: 3.23vw;
    font-weight: 300;
    line-height: 113%;
    text-align: right;
}

.about-right p:first-child strong{ display:block}

.about-right p:last-child {
    color: rgb(56, 169, 98);
    font-size: 5.68vw;
    font-weight: 700;
    line-height: 113%;
    text-align: left;
}

.line-right {
    color: rgb(19, 35, 91);
    font-size: 3.23vw;
    font-weight: 300;
    line-height: 113%;
    text-align: right;
}

@media screen and (min-width: 1921px) {
    .line-right {
        font-size: 62px;
    }
}

.line-left {
    color: rgb(56, 169, 98);
    font-size: 5.68vw;
    font-weight: 700;
    line-height: 113%;
}

@media screen and (min-width: 1921px) {
    .line-left {
        font-size: 109px;
    }
}

.about-box-title {
    color: rgb(19, 35, 91);
    font-size: var(--font-45);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 72px;
}

.text.txt a.more {
    font-weight: bold;
    color: #13235b;
}

.about-box-photo img {
    display: block;
    max-width: 85.9%;
}

.investments-box-container {
    padding-top: 84px;
    padding-bottom: 100px;
    background-color: rgb(250, 250, 250);
}

.investments-box-title {
    color: rgb(19, 35, 91);
    font-size: var(--font-45);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.box-header .btn.btn-lg {
    font-weight: bold;
    padding: 0 19px;
}

.investments-box {
    display: flex;
    flex-wrap: wrap;
    margin: -55px -17px 0;
}

.investments-box .investment-item {
    width: 25%;
    padding: 55px 17px;
}

.investment-photo {
    position: relative;
}

.labels {
    position: absolute;
    top: 9px;
    white-space: nowrap;
    left: 9px;
}

.label-sale {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: rgb(56, 169, 98);
    text-align: center;
    padding: 0 8px;
    display: inline-block;
    line-height: 23px;
}

.label-rent {
    color: rgb(19, 35, 91);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: rgb(255, 255, 255);
    text-align: center;
    padding: 0 8px;
    display: inline-block;
    line-height: 23px;
}

.labels .label {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 0 8px;
    display: inline-block;
    line-height: 23px;
}

.investment-name {
    color: rgb(19, 35, 91);
    font-size: var(--font-18);
    font-weight: 500;
    line-height: 118%;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 17px;
}

.investment-photo img {
    display: block;
    max-width: 100%;
}

.investment-content {
    padding: 20px 24px;
}

.investment-data {
    display: flex;
    margin-bottom: 9px;
    flex-wrap: wrap;
}

.investment-data-item {
    display: flex;
    align-items: center;
    color: rgb(19, 35, 91);
    font-size: 15px;
    line-height: 20px;
    margin-right: 22px;
}

.investment-caption strong {
    font-weight: 600;
}

.investment-bottom {
    border-top: 1px solid rgb(230, 230, 230);
    display: flex;
    justify-content: space-between;
    padding-top: 17px;
    align-items: center;
}

.investment-icon img {
    display: block;
    max-width: 100%;
}

.investment-price {
    color: rgb(19, 35, 91);
    line-height: 133%;
    text-align: left;
    font-size: 15px;
    font-weight: 400;
}

.investment-price strong {
    font-size: var(--font-22);
    font-weight: 700;
    white-space: nowrap;
}

.arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgb(19, 35, 91);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
    cursor: pointer;
    flex-shrink: 0;
}

.investment-link {
    display: block;
    max-width: 100%;
    background: #fff;
}

@media screen and (min-width: 1140px) {
    .investment-link:hover {
        box-shadow: 0 3px 6px #00000029;
    }

    .investment-link:hover .arrow {
        color: #fff;
        background: var(--color-secondary);
        border-color: var(--color-secondary);
    }
}

.grid-box-container {
    padding-top: 100px;
}

.grid-item .container {
    clear: right;
}

.grid-box-title {
    color: rgb(19, 35, 91);
    font-size: var(--font-45);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 82px;
}

.grid-photo {
    width: 65.2%;
    position: relative;
}

.grid-photo img {
    display: block;
    max-width: 100%;
}

.grid-desc {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 34.8%;
    padding-left: 4%;
    max-width: 570px;
    padding-right: var(--container-padding);
}

.grid-desc-title-box {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.grid-desc-icon {
    width: 137px;
    margin-right: -18px;
}

.grid-desc-icon img {
    display: block;
    max-width: 100%;
    margin-left: -28px;
}

.grid-desc-title {
    color: rgb(19, 35, 91);
    font-size: var(--font-35);
    font-weight: 300;
    line-height: 114%;
    margin-left: 25px;
}


span.more {
    font-weight: bold;
}

.grid-photo .arrow {
    transition: all 500ms;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    background-color: rgb(19, 35, 91);
    color: #fff;
    font-size: 40px;
}

.grid-item {
    margin-bottom: 100px;
    align-items: center;
    display: flex;
}

.grid-item:nth-child(even) .grid-photo {
    float: right;
    margin-right: 0;
}

.grid-item:nth-child(even) .container {
    clear: left;
}

.grid-item:nth-child(even) .arrow {
    right: auto;
    left: 0;
}

@media screen and (min-width: 1140px) {
    .grid-item:hover .grid-photo .arrow {
        background: var(--color-secondary);
        border-color: var(--color-secondary);
    }
}

.grid-item:nth-child(even) {
    flex-direction: row-reverse;
}

.grid-item:nth-child(even) .grid-desc {
    padding-left: var(--container-padding);
    padding-right: 4%;
}


.realization-box-container .container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
}

.realization-box-container {
    position: relative;
    clear: both;
}

.realization-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

.realization-box-title {
    color: #fff;
    font-size: 6.25vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
    line-height: 1;
}

@media screen and (min-width: 1921px) {
    .realization-box-title {
        font-size: 120px;
    }
}

.realization-box-subtitle {
    color: rgb(255, 255, 255);
    font-size: var(--font-45);
    font-weight: 300;
    margin-bottom: 38px;
}

.realization-box-container img {
    display: block;
    max-width: 100%;
}


.realization-box .btn-white:hover {
    border-color: var(--color-primary);
}

.mask.realization-mask {
    background: rgb(0, 0, 0, 0.5) url(../images/icons/realization_mask.svg) no-repeat center center;
    background-size: 92%;
}


.news-box-container {
    padding-top: 83px;
    padding-bottom: 25px;
    position: relative;
}

.news-box-container .box-header {
}


.news-box-title {
    color: rgb(19, 35, 91);
    font-size: var(--font-45);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.news-box {
    margin: -14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.news {
    padding: 14px;
    width: 33.33%;
    margin-bottom: 75px;
}

.news-link {
    display: block;
    max-width: 100%;
}

.news-photo {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 26px;
}

.news-photo img {
    display: block;
    max-width: 100%;
}

.news-content {
}


.news-date {
    display: block;
    position: relative;
    padding-left: 27px;
    margin-bottom: 16px;
    padding-top: 2px;
    padding-bottom: 2px;
    color: rgb(19, 35, 91);
    font-size: var(--font-18);
    font-weight: 400;
}

.news-date:before {
    background: url(../images/icons/calendar.svg) no-repeat 0 center / contain;
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 21px;
    height: 35px;
}

.news-title {
    position: relative;
    letter-spacing: -0.01em;
    line-height: 150%;
    color: rgb(19, 35, 91);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}


.news-photo .arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    background-color: rgb(19, 35, 91);
    color: #fff;
    font-size: 40px;
}


@media screen and (min-width: 1140px) {
    .news-link:hover .arrow {
        background: var(--color-secondary);
    }
}

.subpage header {
    background: #000;
}

.subpage header.sticky {
    background: #fff;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.16);
}

.subpage #content {
    padding-top: 132px;
}

.page-heading-title {
    color: rgb(19, 35, 91);
    font-size: var(--font-45);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 83px;
    text-align: center;
}

.page-heading-title.normal-case{
    text-transform: unset;
}

.about-box-sub-container {
    padding-top: 90px;
    padding-bottom: 0;
}

.subpage .news-box-container {
    padding-top: 90px;
    padding-bottom: 0;
}

.article-intro p {
    color: rgb(19, 35, 91);
    font-size: var(--font-18);
    font-weight: 400;
    line-height: 200%;
    text-align: center;
}

.article-intro {
    margin-bottom: 87px;
}

.article-content {
    padding-bottom: 50px;
}

.subpage .news-box-container {
    padding-top: 90px;
    padding-bottom: 30px;
}

.news-box-wrapper {
    background: url(../images/news_box_bg.png) repeat-y center top;
    margin: 0 -50px;
    padding: 0 50px;
    background-size: 100% auto;
}

.subpage .news-box {
    padding-top: 8px;
}

.news-box + .pagination-wrapper {
    padding-top: 11px;
}

/**
* PAGINATION
*/

.pagination-wrapper {
    clear: both;
    width: 100%;
    max-width: none;
}

.pagination-wrapper ul li {
    padding: 0 10px;
}

.pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
    float: none;
    margin: 0 166px;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    line-height: 60px;
    padding: 0 13px;
    color: rgb(19, 35, 91);
    font-size: 17px;
    font-weight: 400;
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    position: relative;
    z-index: 2;
    border: 1px solid transparent;
    width: 60px;
    height: 60px;
    border-radius: 0;
    font-size: 50px;
    line-height: 58px;
    box-shadow: 0 0 0 transparent;
    background: transparent;
}

.pagination-wrapper ul li.active a {
    color: var(--color-secondary);
    font-weight: bold;
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li.next a:hover, .pagination-wrapper ul li.prev a:hover {
        border-color: transparent;
        background: transparent;
        color: var(--color-secondary);
    }

    .pagination-wrapper ul li a:hover {
        color: var(--color-secondary)
    }
}

.text-box-container {
    padding-top: 100px;
    padding-bottom: 90px;
}

.text-box-container .page-heading-title {
    text-align: left;
    line-height: 123%;
    margin-bottom: 30px;
}

.text-box-container .news-date {
    color: rgb(19, 35, 91);
    font-size: 21px;
    font-weight: 400;
    overflow: hidden;
    padding-left: 39px;
    padding-top: 0;
    margin-bottom: 31px;
}

.text-box-container .news-date:before {
    width: 26px;
}

.gallery-box {
    margin-bottom: 100px;
}

.buttons-center {
    text-align: center;
}

.investments-slider button.slick-arrow {
    position: absolute;
    z-index: 2;
    border: 1px solid transparent;
    width: 60px;
    height: 60px;
    border-radius: 0;
    font-size: 50px;
    line-height: 58px;
    box-shadow: 0 0 0 transparent;
    background: transparent;
    top: 50%;
    margin-top: -30px;
    color: var(--color-primary)
}

@media screen and (min-width: 1140px) {
    .investments-slider button.slick-arrow:hover {
        color: var(--color-secondary)
    }
}

.investments-slider button.slick-prev.slick-arrow {
    left: -84px;
}

.investments-slider button.slick-next.slick-arrow {
    right: -84px;
}

.investments-slider .investment-item {
    padding: 0 17px;
}

.investments-slider {
    margin: 0 -17px;
}

.subpage .investments-box-container {
    background: transparent;
    padding-top: 100px;
    padding-bottom: 20px;
}

.investment-details-container {
    padding-top: 89px;
}

.investment-info {
    color: rgb(19, 35, 91);
    font-size: var(--font-28);
    line-height: 132%;
    display: flex;
    align-items: center;
    padding: 35px;
}

.investment-info-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -35px -35px 66px;
}

.investment-info .investment-icon {
    margin-right: 17px;
}

.investment-details-container .page-heading-title {
    margin-bottom: 32px;
}

.form-box-container {
    padding-top: 108px;
    padding-bottom: 60px;
    background-color: rgba(0, 9, 30, 0.05);
    position: relative;
    margin-bottom: 50px;
}

.form-box-title {
    color: rgb(19, 35, 91);
    font-size: var(--font-45);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
    text-align: center;
}

.form-box-wrapper {
    max-width: 970px;
    margin: 0 auto 60px;
}

.mask.form-mask {
    background-color: rgba(0, 0, 0, 0.05);
}

.buttons-center {
    margin-bottom: 100px;
}

.gallery-box + .buttons-center {
    margin-bottom: 0;
}

.realization-details-container {
    padding-top: 88px;
}

.contact-box-container {
    padding-top: 88px;
}

.grid-photo iframe {
    display: block;
    width: 100%;
    height: 491px;
}

.form-box-container:last-child {
    margin-bottom: 0;
}

.investment-icon {
    flex-shrink: 0;
    margin-right: 4px;
}

.about-right p span {
    font-size: 3.5vw !important;
}

.about-right p:last-child span {
    font-size: 5.5vw !important;
}

.more:hover {
    text-decoration: underline
}
footer a{
    transition: color, 500ms;
}
.footer-boxes a:hover, .footer-boxes a:focus{
    color: var(--color-secondary);
}

.article-text.text a, .text.txt a {
    color: var(--color-secondary);
}

.contact-link a {
    text-transform: none;
}