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

    --font-65: 65px;
    --font-60: 60px;
    --font-48: 48px;
    --font-45: 45px;
    --font-40: 40px;
    --font-36: 36px;
    --font-35: 35px;
    --font-32: 32px;
    --font-30: 30px;
    --font-26: 26px;
    --font-25: 25px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;
    --font-18: 18px;
    --container-padding: 40px;
    --row-gap: 5px;

    /** SPECIFIC **/
    --color-primary: #DA001A;
    --color-secondary: #00ff00;
    --color-default: #002758;
}

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

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

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

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

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

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

.grayscale {
    filter: grayscale(1);
}

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

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

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

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

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

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

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


/**
 * BUTTONS
 */

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

.btn-lg {
    border: 1px solid transparent;
    padding: 0 21px;
    height: 46px;
    line-height: 44px;
    border-radius: 23px;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    min-width: 188px;
}

.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: calc(var(--space-30) + 6px);
}


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

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

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

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


/**
 * THEMES
 */

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

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

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

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

.btn.btn-default,
.btn.btn-default:focus,
.btn.btn-default:active,
.btn.btn-default:focus:active {
    background-color: transparent;
    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: #fff;
    color: #fff;
}


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

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

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


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

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

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

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

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

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

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

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

}


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

.panel {
    box-shadow: none;
}

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

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

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

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

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


/**
 * Modal
 */

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

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

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

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

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


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

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


/**
 * TITLES
 */


.text.txt h1 {
    font-size: var(--font-30);
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 1.5;
    color: #002758;
}

.text.txt h2 {
    font-size: var(--font-24);
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 1.5;
    color: #002758;
}

.text.txt h3 {
    font-size: var(--font-22);
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 1.5;
    color: #002758;
}

.text.txt h4 {
    font-size: var(--font-20);
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 1.5;
    color: #002758;
}

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


.text.txt h6 {
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 1.5;
    color: #002758;
}


/**
 * TEXT
 */

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

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

/** 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: -3px;
    width: 6px;
    height: 6px;
    background-color: var(--color-default);
    border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * HEADER
 */

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

.top {
}

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

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

.logo {
    float: left;
}

.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;
    padding: 38px 7px 38px;
    font-size: 16px;
    text-transform: uppercase;
    color: #002758;
    font-weight: 500;
    display: block;
    text-align: center;
}

#main-menu li a:hover {
    color: #DA001A;
    font-weight: 700;
}

#main-menu li.active > a {
    color: #DA001A;
}

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

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

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

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

#main-menu > ul > li > a:only-child {
    font-weight: 500;
    padding-right: 21px;
    padding-left: 21px;
}

#main-menu li a:after {
    content: "\f107";
    display: inline-block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
    margin-left: 19px;
}

#main-menu li a:only-child:after {
    display: none;
}

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

#main-menu li li {
    border-bottom: 1px solid #4b688a;
}

#main-menu li li a {
    color: #fff;
    display: block;
    padding-top: 17px;
    padding-bottom: 17px;
    font-weight: normal;
    padding-left: 20px;
    padding-right: 20px;
}

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

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

.main-menu-button {
    float: right;
    width: 40px;
    margin: 18px 0 18px var(--container-padding);
    border: none;
    background: transparent;
}

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


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

.contact-link {
    display: flex;
    padding: 8px;
    align-items: center;
    font-weight: 700;
    font-size: var(--font-18);
    color: var(--color-default);
}

.contact-needs .contact-link {
    color: #fff;
}

.contact-link .btn-icon {
    margin-right: 20px;
    position: relative;
    border-radius: 50%;
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.contact-links .contact-link svg, .contact-links .contact-link svg * {
}

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

}

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

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

.mainsearch.rwdPanel {
    display: block;
    padding-top: 0;
    margin-right: 30px;
}

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

.mainsearch-search {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

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

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

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 0 none;
    background: transparent;
}

@media screen and (min-width: 1140px) {
    button.mainsearch-submit:hover {
        color: var(--color-primary);
    }
}

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

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


/*
* USER NAV
*/

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


/**
 * FOOTER
 */

footer {
    position: relative;
}

.footer-boxes {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding-top: calc(var(--space-25) + var(--space-60));
}


.footer-box-container {
    position: relative;
    padding-top: var(--space-60);
    padding-bottom: calc(var(--space-30) + var(--space-40));
    background-position: center top;
}

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

.footer-col-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 55px;
}

.footer-box-top {
    display: flex;
    justify-content: space-between;
    padding-right: 17px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: calc(var(--space-60) + 5px);
}

.footer-text {
    width: 34%;
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 2;
    color: #fff;
    padding-left: 42px;
}

.contact-link-bottom:first-child {
    margin-left: 0;
}

@media screen and (min-width: 1700px) {
    .benefits-title {
        width: 51%;
    }
}


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

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

.footer-box ul li a {
    display: block;
    line-height: 120%;
    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: 100%;
}

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

@media screen and (min-width: 1700px) {
    .footer-box .text.txt {
        max-width: 280px;
    }
}

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

.contact-link-bottom {
    align-items: center;
    font-size: var(--font-18);
    line-height: 200%;
    display: flex;
    padding: 10px;
    font-weight: 700;
    color: #fff;
    margin-left: 50px;
}

.contact-link-bottom .btn-icon {
    margin-right: 19px;
    position: relative;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid var(--color-primary);
    padding: 14px;
    text-align: center;
    width: 55px;
    height: 55px;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-link-bottom svg, .contact-link-bottom svg * {
}

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


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

.footer-bar-left {
    display: flex;
    align-items: center;
    flex-grow: 1;
    flex-wrap: wrap;
}

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

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

.footer-bar-links a {
    text-transform: uppercase;
}

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

.footer-bar-links:has(li) + .copyright:before {
    content: "|";
    color: currentColor;
    margin-right: 10px;
    display: inline-block;
}

.footer-bar-links > li + li:before {
    content: "|";
    color: currentColor;
    margin-right: 16px;
    display: inline-block;
}

.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 13px;
    line-height: 2;
    font-weight: 300;
}

.footer-bar-links a:hover {
    text-decoration: underline;
}

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

.copyright + .author-photo:before {
    content: "|";
    color: currentColor;
    margin-right: 8px;
    display: inline-block;
    margin-left: 8px;
}


.copyright-undicom {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

.copyright-undicom svg {
    max-width: 15px;
    fill: currentColor;
}

/**
 * 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: 19px;
}

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


/* 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;
    background-color: rgb(255, 255, 255);
    border: 1px solid #fff;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    color: #002758;
}

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

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

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


.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 {
    box-shadow: none;
    background: #fff;
    border-radius: 5px;
}

/* 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-default);
    border-radius: 0 5px 5px 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
}

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

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

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

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


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

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

.form .consent-all-row {
    color: var(--color-default);
    margin-bottom: calc(var(--space-40));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-box-wrapper button.btn.btn-primary.btn-lg {
    border-radius: 5px;
    margin: 0 auto;
    display: block;
}


@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: var(--color-default);
    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 {
    margin-top: var(--space-40);
}

.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-radius: 50%;
    border: 1px solid var(--color-primary);
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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

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

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

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

.langs-menu li {
}

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

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

.langs-menu-icon {
    line-height: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

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

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

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

.lang-button {
    cursor: pointer;
    position: relative;
    border: 0 none;
    background-color: transparent;
    padding: 0;
}

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

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

span.langs-menu-icon {
    width: 46px;
    height: 46px;
    background: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {

    }

    a.lang:hover span.langs-menu-icon {
        background: var(--color-primary);
        z-index: 1
    }

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

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

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

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

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

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

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

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

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

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}

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

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50%;
    margin-right: 50px;
    margin-bottom: 20px;
}

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

.article-subtitle {
    padding-bottom: var(--space-30);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #002758;
}

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

.gallery-list-item {
    display: flex;
    flex-wrap: wrap;
    width: 33.33%;
    padding: 5px;
}

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

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

.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;
    background-color: rgba(22, 53, 103, 0.50);
    transition: opacity 0.3s;
}

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

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

/**
* 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 45px;
    vertical-align: middle;
    float: none;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    line-height: 60px;
    padding: 0 26px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #002758;
}


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

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

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

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

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

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

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

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

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

#content {
    padding-top: 100px;
}


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

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

.slider .slider-photo {
}

.slider-photo img {
    max-width: 100%;
}

.mask.slider-mask {
    background: rgba(22, 53, 103, 0.50) url("../images/slider_mask.webp") no-repeat center center;
}

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


.slide-box {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.slide-text {
    display: flex;
    flex-direction: column;
    width: 37%;
    position: relative;
    z-index: 2;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: calc(var(--space-30) + var(--space-40));
}

.slide-left {
    width: 42%;
    display: flex;
    justify-content: center;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
}

.slide-right {
    width: 41%;
}

.title1 {
    font-weight: 700;
    font-size: var(--font-65);
    line-height: 1.23077;
    color: #fff;
    margin-bottom: calc(var(--space-30) + 2px);
}

@media screen and (min-width: 1921px) {
    .title1 {

    }
}


.title2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
}

@media screen and (min-width: 1921px) {
    .title2 {

    }
}

.description {
    font-weight: 300;
    font-size: var(--font-18);
    line-height: 2;
    color: #fff;
    margin-bottom: var(--space-40);
}


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

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

ul.slick-dots li span {
    display: block;
    border-radius: 50%;
    font-size: 16px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #fff
}

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

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

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

.about-title {
    font-weight: 700;
    font-size: var(--font-60);
    color: #da001a;
    margin-bottom: -1px;
    line-height: 130%;
}

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

.about-subtitle {
    font-weight: 300;
    font-size: var(--font-36);
    color: #002758;
}

.about-subtitle strong {
    font-weight: 600;
}

.about-image {
    width: 20%;
}

.about-image img {
    display: block;
    max-width: 75%;
}

.about-title-box {
    width: 80%;
    padding-right: 15%;
    padding-top: 16px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: var(--space-30);
}

.about-photo {
    width: 49.5%;
}

.about-photo img {
    display: block;
    border-radius: 15px;
    max-width: 100%;
}

.about-text {
    width: 42%;
}

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

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

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

span.mask.rent-mask {
    background: rgba(22, 53, 103, 0.50);
}

.rent-title {
    font-weight: 700;
    font-size: var(--font-60);
    color: #fff;
    line-height: 130%;
}

.rent-subtitle {
    font-weight: 300;
    font-size: var(--font-36);
    color: #fff;
    line-height: 130%;
}

.rent-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(var(--space-50) + var(--space-60));
}

.rent-title-box {
    width: 50%;
}

.rent-text {
    width: 41%;
    padding-top: 20px;
}


.rent-text .text.txt {
    font-size: var(--font-18);
    line-height: 2;
    color: #fff;
    margin-bottom: calc(var(--space-30) + 6px);
}

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

.rent-item {
    width: 18%;
}

.rent-icon {
    width: 73px;
    height: 73px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: var(--space-30);
}

.rent-info p:first-child {
    font-size: var(--font-22);
    line-height: 1.5009;
    color: #fff;
    margin-bottom: 19px;
}

.rent-info p:first-child strong {
    font-weight: 600;
}

.rent-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #fff;
}

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

.benefits-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(var(--space-50) + var(--space-50));
}

.benefits-title-box {
    width: 50%;
}

.benefits-text {
    width: 41%;
    padding-top: 14px;
}

.benefits-title {
    font-weight: 700;
    font-size: var(--font-60);
    color: #002758;
    line-height: 130%;
    margin-bottom: 7px;
}

.benefits-subtitle {
    font-weight: 300;
    font-size: var(--font-36);
    color: #002758;
    line-height: 130%;
}

.benefits-text .text.txt {
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 2;
    color: #002758;
}

.benefits-box {
    display: flex;
    flex-wrap: wrap;
    width: 83%;
    justify-content: space-between;
}

.benefit-item {
    width: 50%;
    display: flex;
    justify-content: space-between;
    padding-right: 40px;
    margin-bottom: var(--space-40);
    align-items: flex-start;
}

.benefit-item-inner {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
}

.benefit-icon {
    width: 35.5%;
    padding-bottom: 35.5%;
    position: relative;
    border-radius: 15px;
    background: rgba(185, 185, 185, 0.2);
    flex-shrink: 0;
}

.benefit-info {
    width: 54%;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #002758;
    align-self: center;
}

.benefit-icon img,
.benefit-icon svg {
    max-width: 45%;
    max-height: 92%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.benefit-info p:first-child {
    font-weight: 600;
    font-size: var(--font-22);
    line-height: 1.5009;
    margin-bottom: 20px;
}

.benefit-man {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 32%;
    margin-right: -6%;
}

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


.opinion-title {
    font-weight: 700;
    font-size: var(--font-60);
    color: #fff;
    line-height: 130%;
    margin-bottom: 7px;
}

.opinion-subtitle {
    font-weight: 300;
    font-size: var(--font-36);
    color: #fff;
    line-height: 130%;
}

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

.opinion-box-title {
    margin-bottom: calc(var(--space-40) + var(--space-40));
}

.opinion-item {
    margin: 0 27px;
}

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

.opinion-link {
    display: flex;
    flex-direction: column;
    padding: 28px 40px 40px;
    border: 1px solid rgba(255, 255, 255, 0.01);
    border-radius: 15px;
    backdrop-filter: blur(25.200000762939453px);
    background: rgba(0, 39, 88, 0.66);
}

.opinion-header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

span.item-rating-star {
    font-size: 19px;
    color: #FFC81E;
}

span.opinion-rating {
    margin-right: 29px;
}

.opinion-date {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #fff;
}

.opinion-text .text.txt {
    color: #fff;
    margin-bottom: var(--space-30);
}

span.text-toggle,
span.more {
    font-weight: bold;
    color: #fff;
    text-transform: lowercase;
}

.opinion-author {
    font-weight: bold;
    color: #fff;
}

.opinion-slider ul.slick-dots {
    width: 50%;
    text-align: right;
    right: 12px;
    bottom: auto;
    top: -158px;
    left: auto;
}

.opinion-slider ul.slick-dots li {
    margin: 0 15px;
}

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

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

.news-title {
    font-weight: 700;
    font-size: var(--font-60);
    color: #002758;
    line-height: 130%;
    margin-bottom: 7px;
}

.news-subtitle {
    font-weight: 300;
    font-size: var(--font-36);
    color: #002758;
    line-height: 130%;
}

.news-slider {
    margin-bottom: calc(var(--space-40) + var(--space-40));
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.news-link {
    display: flex;
    padding-left: 50px;
    padding-right: 50px;
    justify-content: space-between;
    padding-top: var(--space-50);
    padding-bottom: var(--space-50);
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.news-name {
    font-weight: 700;
    font-size: var(--font-18);
    line-height: 1.66667;
    color: #002758;
    margin-bottom: 20px;
}

.news-content {
    width: 39%;
    padding-right: 4%;
}

.news-photo {
    width: 36%;
    position: relative;
}

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

.slick-slider-dots {
    position: relative;
    margin-right: -15px;
    padding-top: 55px;
}

.news-box-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding-bottom: calc(var(--space-30) + var(--space-40));
}

.news-box-header ul.slick-dots li span {
    border-color: var(--color-default);
}

.news-link:hover .btn {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.slick-slider-dots ul.slick-dots {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: auto;
    max-width: none;
}

.slick-slider-dots ul.slick-dots li {
    display: inline-block;
}

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


.news-slider ul.slick-dots {
    display: none !important;
}

.mask.footer-mask {
    background: rgba(22, 53, 103, 0.65);
}

.industry {
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    border-radius: 5px;
    position: absolute;
    top: 8px;
    background: #fff;
    left: 8px;
    line-height: 20px;
    padding: 0 8px;
}

.page-heading-title {
    font-weight: 700;
    font-size: var(--font-45);
    color: #002758;
    line-height: 167%;
    margin-bottom: var(--space-50);
}

.subpage header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.subpage .about-box-container {
    padding-top: var(--space-50);
    padding-bottom: 0;
}

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

.subpage .about-image {
    width: 18%;
}

.subpage .about-title-box {
    padding-left: 4%;
    padding-right: 0;
    padding-top: 22px;
}

.subpage .about-box {
    margin-top: -14px;
    margin-bottom: var(--space-30);
}

.subpage .about-header {
    margin-bottom: calc(var(--space-30) + 5px);
}

.history-title {
    font-weight: 700;
    font-size: var(--font-35);
    color: #002758;
    margin-bottom: calc(var(--space-50) + var(--space-50) + var(--space-60));
    line-height: 122%;
}

.history-box-wrapper {
    padding-top: var(--space-30);
    height: 717px;
    background: url("../images/map.webp") no-repeat center 121px;
    margin-bottom: var(--space-50);
}

.history-box {
    display: flex;
}

.history-item {
    width: 25%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.history-top {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-bottom: 23px;
}

.history-info {
    font-weight: 400;
    font-size: 16px;
    /* line-height: 30px; */
    line-height: 1.875;
    text-align: center;
    color: #002758;
}

.year {
    font-weight: 700;
    font-size: var(--font-30);
    text-align: center;
    color: #002758;
    margin-bottom: calc(var(--space-30) + 6px);
}

.history-dot {
    width: 23px;
    height: 23px;
    display: block;
    border-radius: 50%;
    background: var(--color-default);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.values-title {
    font-weight: 700;
    font-size: var(--font-35);
    color: #002758;
    margin-bottom: var(--space-60);
    line-height: 124%;
}

.values-box-container {
    padding-top: var(--space-60);
    position: relative;
    background: #f1f1f1;
}

.values-box {
    display: flex;
    flex-wrap: wrap;
    width: 81%;
    padding-bottom: 25px;
}

.value-man {
    position: absolute;
    width: 25%;
    right: 3%;
    bottom: 0;
}

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

.value-item {
    width: 50%;
    display: flex;
    align-items: center;
    margin-bottom: var(--space-50);
}

.value-icon {
    border-radius: 15px;
    width: 141px;
    height: 141px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: #fff;
}

.value-info p:first-child {
    font-weight: 600;
    font-size: var(--font-22);
    line-height: 1.5009;
    color: #002758;
    margin-bottom: 20px;
}

.value-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #002758;
    padding-left: 50px;
    padding-right: 50px;
    align-self: center;
}

@media screen and (min-width: 1700px) {
    .value-info {
        width: 72%;
    }
}

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

.team-title-box {
    font-weight: 700;
    font-size: var(--font-35);
    color: #002758;
    margin-bottom: var(--space-60);
    line-height: 124%;
}

.team-photo {
    margin-bottom: var(--space-60);
}

.team-photo img {
    border-radius: 15px;
    display: block;
    max-width: 100%;
}

.team-text .text.txt h3 {
    font-weight: 700;
    font-size: var(--font-35);
    color: #002758;
    text-transform: none;
    margin-bottom: 20px;
}

.team-text .text.txt {
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 2;
    color: #002758;
}

.team-box {
    padding-bottom: var(--space-60);
}

.person-item {
    width: 46%;
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-50);
}

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

.person-photo img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.person-name {
    font-weight: 700;
    font-size: var(--font-22);
    color: #002758;
    margin-bottom: 6px;
}

.person-position {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #002758;
}

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

.person-photo {
    width: 40.637%;
}

.person-content {
    width: 51%;
    padding-top: calc(var(--space-30) + 7px);;
}

.person-item.person-item-first {
    padding: 11px 11px 12px;
    width: 100%;
    align-items: center;
    border-radius: 15px;
    background: #f1f1f1 url("../images/person_bg.webp") no-repeat bottom right;
    margin-bottom: calc(var(--space-30) + var(--space-40));
}

.person-item-first .person-photo {
    width: 39.24%;
}

.person-item-first .person-name {
    font-size: var(--font-32);
    margin-bottom: 10px;
}

.person-item-first .person-position {
    font-size: var(--font-20);
}

.person-item-first .person-text .text.txt {
    font-weight: 500;
    font-size: 16px;
    /* line-height: 32px; */
    line-height: 2;
    color: #002758;
}

.person-item-first .person-info {
    width: 60%;
    padding-left: 8%;
    margin-bottom: 0;
}

.person-item-first .person-text {
    width: 47.5%;
}

.person-left {
    display: flex;
    width: 48%;
    align-items: center;
}

.person-info {
    margin-bottom: var(--space-30);
}

.person-info {
    margin-bottom: var(--space-30);
}

.history-item:after {
    width: 100%;
    height: 7px;
    background: #f1f1f1;
    content: '';
    position: absolute;
    bottom: 7px;
}

.realization-box-container {
    padding-top: var(--space-50);
}

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

.page-box-header-wrapper {
    padding-top: calc(var(--space-60) + 5px);
    padding-bottom: calc(var(--space-60) + 5px);
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
}

.page-box-header-title {
    font-weight: 700;
    font-size: var(--font-35);
    color: #fff;
    margin-bottom: var(--space-30);
}

.page-box-header-right .text.txt {
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 2;
    color: #fff;
}

.page-box-header-left {
    width: 36%;
    margin-bottom: 17px;
    text-align: center;
}

.page-box-header-right {
    width: 58%;
}

.page-box-header-left img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.page-box-header-right .text.txt {
    margin-bottom: var(--space-40);
    padding-right: 13%;
}

.page-box-header-right .btn {
    padding: 0 37px;
    font-weight: 500;
}

.realization-box-content-wrapper {
    padding-top: calc(var(--space-50) + 5px);;
    padding-bottom: var(--space-60);
}

.realization-box-content-title {
    font-weight: 700;
    font-size: var(--font-35);
    color: #002758;
    margin-bottom: calc(var(--space-30) + 5px);
}

.realization-box-content .text.txt {
    font-size: var(--font-18);
    line-height: 2;
    margin-bottom: var(--space-60);
}

.realization-info p:first-child strong {
    font-weight: 600;
    font-size: var(--font-22);
    line-height: 1.5009;
    color: #002758;
    margin-bottom: 20px;
    display: inline-block;
}

.realization-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #002758;
    padding-left: 50px;
    padding-right: 57px;
    align-self: center;
}

.special-realization-info {
    padding-right: 105px;
}

.realization-icon {
    border-radius: 15px;
    width: 141px;
    height: 141px;
    background: rgba(185, 185, 185, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.realization-item {
    display: flex;
    width: 49.5%;
    align-items: flex-start;
    padding: 35px 0;
}

.realization-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: -35px 0;
}

.recommended-box-title {
    font-weight: 700;
    font-size: var(--font-35);
    color: #002758;
    line-height: 139%;
    margin-bottom: var(--space-60);
}

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

.recommended-box {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.recommend-item {
    width: 25%;
    padding: 16px;
}

.recommended-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 14px;
    height: 100%;
    justify-content: space-between;
}

.recommended-photo {
    width: 100%;
    height: 61px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-30);
    padding: 0 10px;
}

.recommended-info {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.73333;
    text-align: center;
    color: #002758;
    padding: 0 25px;
    margin-bottom: 21px;
}

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

.recommended-box-container:nth-child(even) .recommended-link {
    border: 1px solid rgba(0, 0, 0, 0.2);
}


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

.recommended-name {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-18);
    line-height: 1.5009;
    text-align: center;
    color: #002758;
    padding: 15px 47px 0;
    margin-bottom: 22px;
    height: 70px;
}

.recommended-box-container:nth-child(odd) {
    background: #f1f1f1;
}

.page-box-header-wrapper .container {
    position: relative;
}

.mask.realization-mask {
    background: rgba(22, 53, 103, 0.60);
}

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

.mask.certificates-mask {
    background: url("../images/cert_mask.webp") no-repeat center center / 100% auto;
    background-color: rgba(22, 53, 103, 0.60);
}

.page-box-header-wrapper {
}

.certificates-box-title {
    font-weight: 700;
    font-size: var(--font-35);
    color: #002758;
    margin-bottom: calc(var(--space-30) + 5px);
}

.certificates-box {
    padding-top: var(--space-50);
    display: flex;
    justify-content: space-between;
}

.certificates-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.certificates-right {
    width: 39%;
    padding-top: 12px;
}

.certificates-left .text.txt {
    font-size: var(--font-18);
    line-height: 2;
    margin-bottom: var(--space-60);
}

.about-award {
    font-style: italic;
    font-weight: 300;
    font-size: var(--font-22);
    line-height: 1.81818;
    margin-bottom: var(--space-30);
    color: #002758;
}

.certificate-icon {
    border-radius: 15px;
    width: 141px;
    height: 141px;
    background: rgba(185, 185, 185, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.certificate-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: var(--space-30);
}

.certificate-info {
    font-weight: 600;
    font-size: var(--font-22);
    line-height: 1.5009;
    color: #002758;
    padding-left: 50px;
}

.realization-box-content-title + .realization-box {
    margin-top: 15px;
    margin-bottom: var(--space-30);
}

.realization-box-content-title + .realization-box .realization-item {
    padding: 25px 0;
}

.personnel-box-container .realization-box-content-wrapper {
    padding-bottom: 13px;
}

.personnel-box-container {
    padding-top: var(--space-50);
}

.trust-box-title {
    font-weight: 700;
    font-size: var(--font-35);
    color: #002758;
    line-height: 135%;
    margin-bottom: var(--space-30);
}

.trust-box-container {
    padding-top: var(--space-60);
    padding-bottom: var(--space-40);
    background: #F1F1F1;
}

.trust-slider {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -45px;
}

.trust-slide {
    width: 33.33%;
    padding: 0 45px;
}


.trust-item {
    display: flex;
    flex-direction: column;
    padding: calc(var(--space-40) + 5px) 28px 75px;
    align-items: center;
    border-radius: 15px;
    box-shadow: 5px -1px 26px -7px rgba(0, 0, 0, 0.25);
    margin-bottom: var(--space-30);
    background: #fff;
    margin-top: 30px;
}

.trust-info {
    font-style: italic;
    font-weight: 300;
    font-size: 15px;
    line-height: 2;
    text-align: center;
    color: #002758;
    margin-bottom: calc(var(--space-60) + 7px);
}

.trust-logo {
    width: 100%;
    height: 76px;
    margin-bottom: var(--space-30);
}

.trust-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.author-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: #002758;
}

.author-position {
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    color: #002758;
}

button.prev.slick-arrow {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    z-index: 1;
    margin-top: -45px;
    border: 1px solid var(--color-default);
    border-radius: 50%;
    left: -94px;
    color: var(--color-default);
    font-size: var(--font-22);
}

button.next.slick-arrow {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    z-index: 1;
    margin-top: -45px;
    border: 1px solid var(--color-default);
    border-radius: 50%;
    right: -94px;
    color: var(--color-default);
    font-size: var(--font-22);
}

button.prev.slick-arrow:hover, button.next.slick-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.grid-box-container {
    padding-top: calc(var(--space-30) + var(--space-40));
}


.job-offers-form-wrapper .form .checkboxradio-container {
    padding-right: calc(var(--space-50) + 5px);
}

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

@media screen and (min-width: 1700px) {
    .section-box .grid-item {
        gap: calc(var(--space-50) * 3);
    }
}

.grid-photo {
    width: 50.736%;
}

.grid-photo img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.grid-text {
    width: 43.5%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.grid-text:only-child {
    width: 100%;
}

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

.grid-text .text.txt h3 {
    font-weight: 700;
    font-size: var(--font-26);
    line-height: 1.5009;
    color: #002758;
}

.needs-box-title {
    font-weight: 700;
    font-size: var(--font-45);
    color: #fff;
    line-height: 130%;
    margin-bottom: 18px;
}

.needs-box-subtitle {
    font-weight: 300;
    font-size: var(--font-25);
    color: #fff;
    line-height: 130%;
    margin-bottom: calc(var(--space-30) + 6px);
}

.needs-box {
    padding: var(--space-60) 160px;
    background: #163567 url("../images/needs_bg.webp") no-repeat left bottom;
    border-radius: 15px;
}

.contact-needs {
    display: flex;
    justify-content: space-between;
    margin: -10px;
    padding-right: 8%;
    align-items: center;
}

.btn.btn-lg.btn-big {
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    text-align: center;
    height: 55px;
    line-height: 53px;
    border-radius: 30px;
}

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

.advantages-box-container {
    padding-top: var(--space-50);
}

.advantages-box-container .realization-item {
    margin-bottom: 20px;
}

.advantages-box-container .realization-box-content-wrapper {
    padding-bottom: 0;
    margin-bottom: -15px;
}

.other-box-title {
    font-weight: 700;
    font-size: var(--font-35);
    color: #002758;
    line-height: 135%;
    margin-bottom: var(--space-30);
}

.other-box-container {
    padding-top: var(--space-60);
    padding-bottom: var(--space-40);
    background: #F1F1F1;
    margin-bottom: calc(var(--space-30) + var(--space-40));
}

.other-slider {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -45px;
}

.other-slide {
    width: 33.33%;
    padding: 0 45px;
}

.other-item {
    display: flex;
    flex-direction: column;
    padding: calc(var(--space-40) + 5px) 30px 50px;
    align-items: center;
    border-radius: 15px;
    box-shadow: 5px -1px 26px -7px rgba(0, 0, 0, 0.25);
    margin-bottom: var(--space-30);
    background: #fff;
    margin-top: 30px;
}

.other-info {
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.875;
    color: #002758;
    margin-bottom: calc(var(--space-40) + 2px);
}

.author-photo {
    display: flex;
}

.author-content {
    width: 59%;
    text-align: left;
}

.author-photo img {
    display: block;
    border-radius: 15px;
}


.jobs-box-container {
    padding-top: var(--space-50);
}

.accordion-box {
    margin-bottom: calc(var(--space-50) + 6px);
    padding-top: 5px;
}

.accordion {
    margin-bottom: 18px;
}

.accordion-header {
    background: var(--color-default);
    border-radius: 10px;
}

.accordion-header-content {
    clear: both;
    margin: 0 auto;
    width: auto;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 5px 70px 5px 27px;
    cursor: pointer;
}

.accordion-name {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 15px 0 15px;
    font-weight: 600;
    font-size: 17px;
    color: #fff;
    line-height: 130%;
}

.accordion-arrow {
    text-align: center;
    transition: all 300ms ease-out;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    right: 18px;
}


.accordion-icon {
    display: block;
    width: 33px;
    margin-right: 30px;
    flex-shrink: 0;
}

.accordion-content {
    display: none;
    padding: calc(var(--space-40) + 3px) 48px calc(var(--space-40) + 3px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-top: 0 none;
    border-radius: 0 0 10px 10px;
}

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

.accordion-icon svg {
    display: block;
}

.accordion .text.txt h3 {
    font-weight: 600;
    font-size: var(--font-18);
    line-height: 1.5009;
    color: #002758;
    margin-bottom: 22px;
}

.accordion .text ul {
    margin-bottom: calc(var(--space-30) + 5px);
}

.accordion .text table tr:nth-child(even) {
    background: transparent;
}


.accordion-header.active {
    background: var(--color-primary);
    border-radius: 10px 10px 0 0;
}

.accordion-header.active .accordion-name {
    color: #fff;
}

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

.accordion-header.active .accordion-icon {
    filter: brightness(0) invert(1);
}

@media screen and (min-width: 1140px) {
    .accordion-header:hover .accordion-arrow {


    }

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

    .accordion-header:hover .accordion-icon {
        filter: brightness(0) invert(1);
    }
}

.benefit-small-title {
    font-weight: 600;
    font-size: var(--font-18);
    line-height: 1.5009;
    color: #002758;
    margin-bottom: calc(var(--space-40) + 4px);
}

.benefit-small-icon {
    border-radius: 11px;
    width: 107px;
    height: 107px;
    background: rgba(185, 185, 185, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.benefits-small-item {
    width: 45.5%;
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-30);
}

.benefits-small {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.benefit-small-text {
    flex-grow: 1;
    padding-left: 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #002758;
    align-self: center;
}

.benefit-small-text p:first-child {
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 600;
}

.benefit-small-text p:first-child strong {
    font-weight: 600;
}

.about-small-title {
    font-weight: 600;
    font-size: var(--font-18);
    line-height: 1.5009;
    color: #002758;
    margin-bottom: calc(var(--space-40) + 4px);
}

.benefit-small-wrapper {
    margin-bottom: 16px;
}

.about-small-photo img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.about-small-photo {
    position: relative;
    margin-bottom: var(--space-40);
}

img.logo-big {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 38%;
    border-radius: 0;
}

.about-small .text.txt {
    margin-bottom: calc(var(--space-40) + 2px);
}

.rodo-box {
    padding-bottom: var(--space-60);
}

.accordion-content .buttons-center {
    margin-bottom: 10px;
}

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

.regulations-box-container .text.txt h2 {
    font-weight: 600;
    font-size: var(--font-22);
    line-height: 1.5009;
    color: #002758;
    text-transform: none;
    margin-bottom: 19px;
}

.regulations-box-container .page-heading-title {
    margin-bottom: calc(var(--space-40) + 2px);
}

.regulations-box-container .text.txt ol {
    margin-left: -17px;
    margin-bottom: 22px;
}

.regulations-box-container .text.txt ol ul {
    margin-top: 23px;
    margin-bottom: 23px;
}

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

.business-box-container {
    padding-top: var(--space-50);
}


.page-submenu-inner {
    padding-top: 22px;
    padding-bottom: 22px;
}

.page-submenu-inner ul {
    display: flex;
    justify-content: space-between;
}

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

.page-submenu-inner ul li a {
    border: 1px solid #fff;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    display: block;
    padding: 11px 19px 12px;
    min-width: 186px;
}

.page-submenu-inner ul li a.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.page-submenu-inner ul li a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.section-box-wrapper {
    padding-top: var(--space-60);
    padding-bottom: calc(var(--space-30) + var(--space-40));;
    position: relative;
}

.section-box-title {
    font-weight: 700;
    font-size: var(--font-35);
    color: #002758;
    margin-bottom: 26px;
}


.section-box .text.txt {
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 2;
    color: #002758;
    margin-bottom: calc(var(--space-40) + 7px)
}

.section-box-inner .section-box-title {
    margin-bottom: calc(var(--space-30) + 7px);
}

.section-box .realization-box .realization-item {
    padding: 18px 0;
}

.section-box .realization-box {
    margin: -18px 0;
}

.section-box {
    padding-bottom: var(--space-60);
}

.medal-box {
    display: flex;
    padding: 68px 102px 62px;
    justify-content: space-between;
    background: #163567;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.medal-left {
    width: 20%;
    padding-top: 18px;
}

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

.medal-text {
    width: 73.5%;
}

.medal-box-title {
    font-weight: 700;
    font-size: var(--font-45);
    color: #fff;
    margin-bottom: var(--space-30);
    line-height: 130%;
}

.medal-text .text.txt {
    font-size: var(--font-18);
    line-height: 2;
    color: #fff;
}

.medal-box-bg {
    position: absolute;
    left: 10%;
    top: 0;
    max-width: 35%;
}

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

.ethics-box {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
}

.ethics-left {
    width: 39.3%;
}

.ethics-right {
    width: 49.5%;
}

.ethics-left-title {
    font-weight: 700;
    font-size: var(--font-35);
    color: #002758;
    line-height: 151%;
    margin-bottom: calc(var(--space-50) + var(--space-50));
}


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

.files-list {
}

.files-list ul {
    margin: -20px;
}

.files-list ul li {
    padding: 20px;
}

.files-list ul li a {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
    background: transparent;
    justify-content: space-between;
    padding: 18px 0 18px 32px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    min-height: 110px;
}

.file-icon {
    display: block;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
}

.file-name {
    display: flex;
    align-items: flex-start;
    padding-left: 24px;
    padding-right: 20px;
    flex-grow: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5009;
    color: #002758;
    text-align: left;
    flex-direction: column;
}


.file-name-box {
    display: flex;
    align-items: center;
}

.file-download {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #002758;
    position: relative;
    width: 140px;
    flex-shrink: 0;
}

.file-download:before {
    content: '';
    background: #fff;
    width: 1px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
}


.file-download:before {
    width: 1px;
    content: '';
    height: 24px;
    background: rgba(0, 0, 0, 0.2);
    top: 50%;
    margin-top: -12px;
}

@media screen and (min-width: 1140px) {

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

.realization-item-inner {
    display: flex;
}

.ethics-right .realization-item {
    width: 100%;
}

.page-submenu {
    background: #163567;
    display: flex;
    justify-content: space-between;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
}

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

.section-box .grid-box {
    padding-top: 12px;
    padding-bottom: var(--space-50);
}

.section-box .grid-item:last-child {
    margin-bottom: 0;
}

.goals-box {
    position: relative;
    display: flex;
    padding-left: 10.5%;
    padding-top: calc(var(--space-50) + 3px);;
    justify-content: space-between;
    align-items: flex-end;
}

.goal-bg {
    position: absolute;
    left: 11.5%;
    max-width: 23%;
    top: 0;
}

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

.goal-person {
    width: 11.667%;
    position: relative;
    z-index: 1;
}

.goal-person img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.goal-text {
    display: flex;
    flex-direction: column;
    width: 83%;
    align-items: self-end;
}

.goal-text .text.txt {
    font-style: italic;
    font-size: 24px;
    line-height: 1.5;
    color: #002758;
    padding-right: 30%;
    margin-bottom: 10px;
}

.goal-author {
    margin-right: 35px;
    padding-bottom: 4px;
}

.goal-author .author-name {
    font-size: var(--font-18);
    margin-bottom: -2px;
}

.goal-author .author-position {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #002758;
}

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

.commitments-box-wrapper .section-box-title {
    margin-bottom: calc(var(--space-30) + 6px);
}

.commitments-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: -25px -3%;
    margin-bottom: calc(var(--space-30) + 5px);
}

.commitments-box .realization-item {
    width: 33.33%;
    padding: 25px 0;
    padding-right: 0.5%;
    padding-left: 3%;
}

.commitments-box .realization-info {
    padding-right: 0;
}

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

.commitments-bottom-text {
    width: 51%;
}

.commitments-bottom-files-list {
    width: 39.5%;
}

.commitments-bottom-text .text.txt {
    margin-bottom: 0;
}

.commitments-bottom-text .text.txt {
    margin-bottom: 0;
}

.grid-text .text.txt {
    font-size: 16px;
    line-height: 1.875;
}

.section-box-wrapper:last-child {
    padding-bottom: 0;
}

.grid-box + .commitments-bottom {
    padding-top: 20px;
    padding-bottom: 10px;
}

.page-submenu {
    width: 100%;
}

.page-submenu-box {
    position: relative;
    width: 100%;
    background: #fff;
    z-index: 1;
}

.page-submenu.affix {
    top: 100px;
}

html {
    scroll-behavior: smooth;
}

.subpage .news-box-container {
    padding-top: var(--space-50);
    padding-bottom: 20px;
}

.news-box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.news-box:last-child {
    margin-bottom: var(--space-60);
}

.gallery {
    margin-bottom: calc(var(--space-30) + var(--space-40));;
}

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

.other-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-60);
}

.other-news-title {
    font-weight: 700;
    font-size: var(--font-35);
    color: #002758;
    line-height: 130%;
}

.other-news-box-container {
    padding-top: calc(var(--space-60) + 3px);;
    padding-bottom: 10px;
    background: #f1f1f1;
}

.other-news-box-container .news-link {
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
    padding-right: 27px;
}

.other-news-box-container .news-name {
    margin-bottom: var(--space-40);
}

.other-news-box-container + .needs-box-container {
    padding-top: calc(var(--space-30) + var(--space-40));;
}

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

.contact-box {
    display: flex;
    justify-content: space-between;
    padding-bottom: calc(var(--space-30) + var(--space-40));;
}

.contact-box .text.txt {
    font-size: var(--font-18);
    line-height: 2;
}

.contact-left .text.txt {
    margin-top: -8px;
    margin-bottom: var(--space-40);
}

.contact-left {
    width: 37%;
}

.contact-right {
    width: 59.5%;
}

.contact-box-title {
    font-weight: 700;
    font-size: var(--font-45);
    color: #002758;
    line-height: 130%;
    margin-bottom: calc(var(--space-50) + 7px);
}

.form-box-wrapper {
    padding: 38px 48px;
    border-radius: 15px;
    background: #f1f1f1 url(../images/form_bg.webp) no-repeat bottom right;
}

.map-box iframe {
    display: block;
    height: 486px;
    width: 100%;
    border-radius: 15px;
}

.value-item-content {
    display: flex;
}

.benefits-small-item-content {
    display: flex;
}

.text-more,
.text-toggle {
    display: inline;
}

.active .text-toggle-ellipsis,
.text-toggle.active,
.text-less:not(.active) .text-more {
    display: none !important;
}

.job-offers-form-wrapper .form .form-control {
    background-color: #F1F1F1;
}

.form-title {
    font-size: var(--font-30);
    font-weight: 700;
    line-height: 1.5em;
}

.form-name {
    font-size: var(--font-18);
    margin-top: 8px;
}

.form-header {
    padding-bottom: var(--space-50);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.job-offers-form-wrapper .form {
    padding-top: var(--space-40);
}

.job-offers-form-wrapper .form .row-flex-center {
    display: flex;
    justify-content: center;
    padding-top: 0;
    margin-top: calc(var(--space-40) + 5px);
}

.job-offers-form-wrapper .form .form-element-checkbox.has-success .form-element-option-text {
    font-weight: 700;
}

.job-offers-form-wrapper .form .form-element-select span.select2 {
    width: calc(25% - 2 * var(--row-gap)) !important;
}

.job-offers-form-wrapper .form .form-element-select .select2-container .select2-selection--single {
    border-color: transparent;
}

.job-offers-form-wrapper .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #002758;
}

.job-offers-form-wrapper .btn.btn-file {
    width: calc(25% - 2 * var(--row-gap)) !important;
    text-align: unset;
    background-color: #F1F1F1;
    color: #002758;
    border-color: transparent;
    border-radius: 5px;
    padding: 7px 20px;
    transition: .3s all;
}

@media screen and (min-width: 1140px) {
    .job-offers-form-wrapper .btn.btn-file:hover {
        background-color: var(--color-default);
        color: #fff;
    }
}

.job-offers-form-wrapper .btn.btn-file .text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.job-offers-form-wrapper .dropzone-uploader {
    border-color: transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.job-offers-form-wrapper .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-color: var(--color-default);
}

.job-offers-form-wrapper .select2-dropdown {
    border-color: var(--color-default);
}

@media screen and (min-width: 1140px) {
    .job-offers-form-wrapper .form .form-element-select .select2-container .select2-selection--single:hover {
        border-color: var(--color-default);
    }
}

.job-offers-form-wrapper .form-element-captcha .controls.captcha-container {
    width: 100%;
}

.job-offers-form-wrapper .form-element-captcha .captcha-container .row > * {
    width: 25%;
}

@media screen and (min-width: 1140px) {
    .job-offers-form-wrapper .form button.captcha-refresh:hover {
        color: #fff;
        border-color: #e5e5e5;
        background: var(--color-default)
    }
}

.job-offers-form-wrapper .job-offers-form-wrapper::placeholder {
    color: var(--color-default);
}

.modal.modal-wide .modal-dialog {
    width: 100%;
    max-width: 1100px;
}

.modal.modal-wide .modal-header {
    background-color: transparent;
    padding: 0;
    border: none;
}

.modal.modal-wide .modal-header button.close {
    top: 40px;
    right: 20px;
    width: 58px;
    height: 58px;
    background-color: var(--color-default);
    color: #fff;
    border-color: var(--color-default);
    z-index: 100;
}

@media screen and (min-width: 1140px) {
    .modal.modal-wide .modal-header button.close:hover {
        background-color: #fff;
        color: var(--color-default);
    }
}

.modal.modal-wide .modal-content {
    border-radius: 15px;
}

.modal.modal-wide .modal-body {
    padding: calc(var(--space-40) + 3px) var(--space-50) calc(var(--space-50) + 6px);
}

.job-offers-form-wrapper .form-element.form-element-checkbox .checkboxradio-container .row {
    display: flex;
    flex-wrap: wrap;
    row-gap: calc(var(--space-25) + 4px);
}

.job-offers-form-wrapper .form-element.form-element-checkbox .checkboxradio-container .row > * {
    width: unset !important;
    padding-right: calc(var(--space-25) + 9px);
}

.job-offers-form-wrapper .checkboxradio-container .form-element-option-text {
    font-size: 14px;
    color: var(--color-default);
}

.form-section-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: calc(var(--space-50) - 5px);
}

.row + .form-section-label {
    margin-top: calc(var(--space-40) - 5px);
}

.job-offers-form-wrapper .form-element-captcha-container {
    margin-top: calc(var(--space-50) + 3px - 19px);
}

.job-offers-form-wrapper .form-group-skills .form-element-label-wrapper {
    display: none;
}

.opinion-site .opinion-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-50);
}

.opinion-site .opinion-item, .opinion-site .opinion-link {
    height: 100%;
    margin: 0;
}

.opinion-site .opinion-link {
    background: rgba(0, 39, 88, 1);
}

.opinion-site .opinion-title {
    color: var(--color-default) !important;
}

.job-offers-form-wrapper .uploaded-file {
    border-radius: 5px;
    margin: 0;
    background-color: #f5f5f5;
    border-color: transparent;
    display: flex;
    align-items: center;
}

.job-offers-form-wrapper .uploaded-file-container .uploaded-file-name {
    display: flex;
    align-items: center;
}

.job-offers-form-wrapper .uploaded-file-container .uploaded-file-name .fa {
    color: var(--color-default);
}

.job-offers-form-wrapper .uploaded-file .right-nav {
    margin-left: auto;
}

.job-offers-form-wrapper .uploaded-file .right-nav .btn {
    margin: 0;
    border-color: var(--color-primary);
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    border-radius: 5px;
    background-color: var(--color-primary);
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .job-offers-form-wrapper .uploaded-file .right-nav .btn:hover {
        border-color: var(--color-primary);
        color: var(--color-primary);
        background-color: #fff;
    }


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

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

.benefit-trust-info {
    text-align: start;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.875em; /* 187.5% */
}

@media screen and (min-width: 1700px) {
    .jobOffer-title {
        width: 51%;
    }
}

.job-offers-form-wrapper .uploaded-file-container .uploaded-file-name .file-name {
    word-break: break-all;
}

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

.trust-slider .trust-info.benefit-trust-info {
    text-align: center;
}

.trust-slider .author-box {
    justify-content: center;
    text-align: center;
}

.trust-slider .author-content {
    text-align: center;
}

.trust-item .author-photo {
    display: flex;
    width: 32%;
}

.trust-item .author-photo img {
    width: 100%;
}

.trust-box-container + .needs-box-container {
    margin-top: calc(var(--space-30) + var(--space-40));
}

.page-heading-title + .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #002758;
    margin-top: calc(-1 * var(--space-50));
    margin-bottom: var(--space-50);
}


.container.container-search {
    padding-bottom: calc(var(--space-40) + var(--space-40));
    margin-top: calc(-1 * var(--space-30) + 5px);
    margin-bottom: 0;
}

.media-heading a:hover {
    color: #000;
}

.result-list .media {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    margin-top: -1px !important;
}


.media-body h6 {
    font-size: 14px;
    margin-bottom: 15px;
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: var(--font-26);
    margin-bottom: 0px;
}

.container-search h2 {
    font-weight: 700;
    font-size: var(--font-45);
    color: #002758;
    line-height: 167%;
    margin-bottom: var(--space-50);
}

.container.container-search {
    padding-bottom: calc(var(--space-40) + var(--space-40));
    margin-top: 0;
    margin-bottom: 0;
    padding-top: var(--space-50);
}

.media-heading a:hover {
    text-decoration: underline;
    color: var(--color-primary);
}

header.sticky #main-menu li a {
    padding-top: 37px;
    padding-bottom: 37px;
}

header.sticky #main-menu li li a {
    padding-top: 15px;
    padding-bottom: 15px;
}

.logo {
    padding-top: 22px;
    padding-bottom: 22px;
}

.subpage .about-box-container .about-box:last-child {
    padding-bottom: calc(var(--space-40));
}

.opinion-box-container span.mask.rent-mask {
    background: rgba(22, 53, 103, 0.60);
}


.grid-text {
    width: 39.45%;
}

.reference-item-image img {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.reference-item-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #F5F5F5;
    border: 1px solid #F5F5F5;
    transition: all .2s linear;
}

.reference-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 25%;
    padding: 20px;
}

.reference-item-name {
    font-size: 18px;
    font-weight: 300;
    color: var(--color-default);
    text-transform: uppercase;
    margin-top: var(--space-30);
    margin-bottom: var(--space-25);
}

.reference-item .btn {
    padding: 0;
}

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

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

.reference-list {
    margin: -20px;
    display: flex;
    flex-wrap: wrap;
}


.section-box-wrapper:nth-child(even) {
    background: #f1f1f1;
}

.business-box-container + section {
    margin-top: calc(var(--space-30) + var(--space-40));
}

.contact-needs-links {
    display: flex;
}

.author-photo a{
    width: 100%;
}
.grid-title{
    font-size: var(--font-26);
    font-weight: 700;
    margin-bottom: 16px;
}