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

    --font-50: 50px;
    --font-48: 48px;
    --font-40: 40px;
    --font-36: 36px;
    --font-35: 35px;
    --font-30: 30px;
    --font-26: 26px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;
    --font-18: 18px;
    --container-padding: 40px;
    --row-gap: 5px;

    /** SPECIFIC **/
    --color-primary: #EEBE10;
    --color-default: #16244e;
    --second-family: "Tenor Sans", sans-serif;
}

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

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1, h2, h3, h4, h5, h6{
    overflow: visible;
}

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: visible;
}

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

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


.container--noClear {
    clear: none;
}

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

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

/**
 * BUTTONS
 */

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

.btn-lg {
    border: 0 none;
    padding: 0 34px;
    height: 46px;
    line-height: 44px;
    border-radius: 0;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}

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


.btn.has-icon {
    display: flex;
    align-items: center;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
}

.btn.has-icon .btn-icon {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    margin-left: 20px;
}

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

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


/**
 * 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-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-default);
    border-radius: 23px;
    padding-left: 23px;
    padding-right: 4px;
}

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

.btn.btn-secondary .btn-icon {
    margin-left: 24px;
    width: 44px;
    height: 44px;
    padding: 0;
}

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

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

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

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

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

.btn.btn-white .btn-icon {
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
}

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

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

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

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


@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: var(--color-default);
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

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

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

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

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

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

    .btn.btn-white:hover .btn-icon {
        background-color: transparent;
    }

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

}


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

.panel {
    box-shadow: none;
}

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

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

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

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

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

/**
 * TITLES
 */


.text.txt h1 {
    font-size: var(--font-48);
    line-height: 1.5;
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    margin-bottom: var(--space-30);
    font-weight: 400;
}

.text.txt h2 {
    font-size: var(--font-24);
    line-height: 1.5;
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    margin-bottom: var(--space-30);
    font-weight: 400;
}

.text.txt h3 {

    font-size: var(--font-24);
    line-height: 1.5;
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    margin-bottom: var(--space-30);
    font-weight: 400;
}

.text.txt h4 {
    font-size: var(--font-20);
    line-height: 1.5;
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    margin-bottom: var(--space-30);
    font-weight: 400;
}

.text.txt h5 {
    font-size: var(--font-18);
    line-height: 1.5;
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    margin-bottom: var(--space-30);
    font-weight: 400;
}


.text.txt h6 {
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    margin-bottom: var(--space-30);
    font-weight: 400;
}


/**
 * TEXT
 */

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

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

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

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

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


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

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


/**
 * TEXT
 */

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

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ul > li,
.text ol > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}

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

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

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

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

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


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

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

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

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

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

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

.buttons-center {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-50);
}

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

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    transition: all 300ms ease-out;
}

header.sticky {
    background: #1A234D;
}

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

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

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

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

.logo {
    float: none;
}
header.sticky .logo a{
    width: 60px;
}
.logo a {
    display: block;
    width: 84px;
    transition:  width 300ms;
}

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


.mainpage .logo {
    display: none;
}

.mainpage header.sticky .logo {
    display: block;
}

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

}




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

#main-menu li {
    position: relative;
    padding: 0 25px 0 26px;
}

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

#main-menu li a {
    position: relative;
    padding: 10px 0;
    display: block;
    transition: all 300ms ease-out;
    font-weight: 300;
    font-size: 16px;
    -webkit-text-stroke: 0.5px transparent;
    text-transform: uppercase;
    color: #fff;
}

#main-menu li a:hover {
    color: #fff;
    -webkit-text-stroke: 0.5px currentColor;
}

#main-menu li.active > a {
    color: #fff;
    -webkit-text-stroke: 0.5px currentColor;
}

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

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

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 0 0 10px 10px;
    width: 310px;
    box-shadow: 4px 5px 7px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
}

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

#main-menu li li a {
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    color: #082355;
    transition: none !important;
    -webkit-text-stroke: currentColor !important;
    padding: 21px 30px;
}


#main-menu li li {
    padding: 0;
    border-bottom: 1px solid #ccc;
}

#main-menu li li:last-child {
    border-bottom: 0 none;
}

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

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

#main-menu li li:last-child a:hover {
    border-radius: 0 0 10px 10px;
}

.btn-danger:hover {
    background-color: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

.mainpage #main-menu li a {
}

.mainpage #main-menu li li a {
    padding: 21px 30px;
}

.mainpage header.sticky #main-menu > li > a {
    padding: 47px 0;
}


.contact-links {
    display: flex;
    margin: 0;
    flex-direction: column;
}

.contact-link {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 227%;
    color: #fff;
    margin-bottom: calc(var(--space-60) + 5px);
}

.contact-link .btn-icon {
    margin-right: 39px;
    position: relative;
    border-radius: 50%;
    flex-shrink: 0;
    text-align: center;
}

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

.contact-link strong {
    font-size: var(--font-30);
    display: block;
}

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

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

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

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

}

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

.main-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 0;
    top: 0;
}
.main-menu-button{
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    width: 46px;
    margin-left: 15px;
    height: 46px;
}
.main-menu-button span {
    background-color: currentColor;
    width: 24px;
    height: 2px;
    display: block;
    transition: all 300ms;
    position: absolute;
    inset: 0;
    margin: auto;
}


.mainsearch.rwdPanel {
    display: block;
}

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

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

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

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

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

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

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


/**
 * FOOTER
 */


footer {
    position: relative;
    overflow: visible !important;
    background-size: 100%;
}
.footer-top + .footer-wrapper .footer-bar{
    background: transparent;
}
.footer-bar{
    background: var(--color-default);
}
.mainpage .footer-top{
    background: transparent;
}
.footer-top{
    background: url(../images/footer_bg.png) no-repeat right top;
    background-size: 100%;
}
.mainpage footer {
    background: transparent
}

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


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

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

.footer-col-title {
    font-weight: 700;
    font-size: var(--font-22);
    line-height: 1.63636;
    color: var(--color-primary);
    margin-bottom: calc(var(--space-40) + 5px);
}


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

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

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

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

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


img.logo-min {
    display: block;
    margin-bottom: calc(var(--space-40) + var(--space-30));
    max-width: 100%;
}

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

.contact-link-bottom {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 227%;
    color: #fff;
    margin-bottom: 73px;
}

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

.contact-link-bottom strong {
    font-size: var(--font-30);
    display: block;
}

.footer-top-title {
    font-weight: 400;
    font-size: var(--font-50);
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    max-width: 46%;
    margin-bottom: 53px;
    line-height: 118%;
}

.footer-top {
    padding-top: var(--space-30);
    padding-bottom: var(--space-60);
}

.footer-wrapper {
    position: relative;
}

.footer-box:last-child {
    padding-right: 0;
}

img.she {
    position: absolute;
    bottom: 0;
    margin: 0 !important;
    right: 7%;
    max-width: 37%;
}

/*img.he {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    margin: 0!important;*/
/*    right: 3%;*/
/*    max-width: 37%;*/
/*    opacity: 0;*/
/*}*/

span.mask.footer-mask {
    background: rgba(22, 36, 78, 0.80);
}

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

.footer-bar-content {
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}


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

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

.footer-bar-content > *:not(:last-child) {
    margin-right: 40px;
}

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

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

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

@media screen and (min-width: 1140px) {
    .footer-bar-links a:hover {
        text-decoration: underline
    }
}

.footer-bar-links:has(li) + .copyright:before {
    content: '';
    width: 1px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: -25px;
    top: 50%;
    margin-top: -5px;
}

.copyright {
    position: relative;
}

.copyright-undicom {
    display: flex;
    float: right;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    position: relative;
    z-index: 2;
    letter-spacing: inherit;
    line-height: inherit;
    align-items: center;
    color: #fff;
}

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

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


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


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

/* 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;
    text-align: justify;
    color: #16244e;
}

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


.form .consent-row .error {
    /* font-size: 12px; */
    /* letter-spacing: 0; */
}

/* CAPTCHA */
.form .captcha-image-wrapper, .form .form-group-sm .captcha-image-wrapper, .form .form-group-lg .captcha-image-wrapper {
    box-shadow: none;
    background: #fff;
    border-radius: 23px;
}

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

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

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

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

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


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

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

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

.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 {
    background: var(--color-primary);
    color: var(--space-60);
    border-radius: 23px;
    margin: 0 auto;
    border: 1px solid transparent;
    display: block;
}
 .form .alert-block .error{
    color: red !important;
}
.form-service-container{
    padding-bottom:  var(--space-50);
}


@media screen and (min-width: 1140px) {
    .form-box-wrapper button.btn.btn-primary.btn-lg:hover {
        background-color: var(--color-default);
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

}

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

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #6d6e71;
}

.breadcrumb > li > a {
    font-size: 12px;
}

.breadcrumb > li > a:not([href]),
.breadcrumb > li > a:not(:hover) {
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}

.breadcrumb > li > a.last {
    color: var(--color-primary);
}




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

.logotypes-box-title {
    color: #00306d;
    font-size: var(--font-22);
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.1em;
}

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

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
    top: 50%;
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    position: relative;
}


/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}

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

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

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

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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


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

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

.langs-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

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

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

.lang-button {
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

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

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

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {
        color: #fff;
        background-color: var(--color-primary);
    }

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

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

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

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

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

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

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

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

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

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
    padding-bottom: calc(var(--space-30) + 5px);
}

.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: 70px;
    margin-bottom: 20px;
}

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

.article-content time.news-date {
    width: 135px;
    height: 135px;
    font-size: 22px;
    padding: 0 23px;
    top: 20px;
    left: 20px;
}

.article-subtitle {
    padding-bottom: var(--space-30);
    font-weight: 400;
    font-size: var(--font-24);
    line-height: 1.5;
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    padding-top: 20px;
}

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

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

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

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

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: opacity 0.3s;
    background: rgba(22, 36, 78, 0.65);
}

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


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

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

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

/**
* PAGINATION
*/

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

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

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

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    line-height: 46px;
    padding: 0 25px;
    font-weight: 400;
    font-size: 16px;
    color: #16244e;
}


.pagination-wrapper ul li.prev a, .pagination-wrapper ul li.next a {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 transparent;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
}

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

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

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

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

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

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

    .pagination-wrapper ul li a:hover {
        font-weight: bold;
    }
}

.main-slider, .slider .slide, .slider .slider-photo, .main-slider .slick-list {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.main-slider .slick-slide{
    height: unset !important;
}
.main-slider .slick-track{
    display: flex;
    width: 100%;
    align-items: stretch;
    height: 100%;
}
.slider {
    height: 100vh;
    min-height: 670px;
    position: relative;
}

.slider .slide {
    padding-top: 50px;
}


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

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

.mask.slider-mask {
    background: url(../images/slider_mask.png) top center;
}

.mask.slider-mask2 {
    background: url(../images/slider_mask2.png) no-repeat bottom center;
    background-size: 100%;
}

.slide-box {
    display: flex;
    justify-content: space-between;
    z-index: 1;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    padding-top: 134px;
}

.slide-text {
    display: flex;
    flex-direction: column;
    width: 49.5%;
    position: relative;
    z-index: 2;
}
.slide-left + .slide-text{
    margin-left: 8%;
}
.slide-left {
    width: 42%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-grow: 1;
    z-index: 2;
}

.slide-left img {
    display: block;
    max-width: 53%;
}

.title1 {
    font-style: normal;
    line-height: 118%;
    position: relative;
    margin-bottom: 25px;
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    font-size: 3.385vw;
}

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

.description {
    font-style: normal;
    margin-bottom: var(--space-40);
    font-weight: 300;
    font-size: var(--font-18);
    line-height: 2;
    color: #fff;
    max-width: 86%;
    padding-left: 4px;
}

.slider .btn {
    margin-left: 6px;
}

.mask-about{
    position: absolute;
    top: 0;
    right: 0;
    background: url("../images/mask_about.png") no-repeat top right / contain;
}
.about-box-container{
    position: relative;
}
.about-box-title {
    font-weight: 400;
    font-size: var(--font-50);
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    max-width: 50%;
    margin-bottom: var(--space-50);
    line-height: 118%;
}

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

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

.about-text {
    width: 40.9%;
}

.about-photo {
    width: 53.4%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

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

.counter-box {
    position: absolute;
    background: #16244e;
    width: 37%;
    padding-bottom: 37%;
    border-radius: 0 50% 50% 50%;
    left: 0;
    top: 61.5%;
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.counter-box-content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-left: 22%;
    padding-right: 15%;
}

.counter-nb-box {
    font-weight: 700;
    font-size: var(--font-50);
    line-height: 0.9;
    color: #fff;
    display: flex;
}

.counter-text {
    color: #fff;
    font-weight: 400;
    font-size: var(--font-26);
    line-height: 1.34615;
}

.counter-text strong {
    font-weight: 700;
    font-size: var(--font-50);
    line-height: 0.9;
    color: #fff;
}

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

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

.offer-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-50);
    text-transform: uppercase;
    color: #fff;
    line-height: 108%;
    padding-bottom: calc(var(--space-50) + var(--space-50));
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.offer-box-container {
    padding-top: calc(var(--space-50) + var(--space-50));
    padding-bottom: 190px;
    position: relative;
}

.offer-box {
    display: flex;
    margin-left: -3.4%;
    margin-right: -3.4%;
}

.offer-item {
    width: 33.33%;
    padding-right: 3.4%;
    padding-left: 3.4%;
}

.offer-link {
    display: flex;
    flex-direction: column;
    border-top: 6px solid transparent;
    padding-top: calc(var(--space-60) + 5px);
    padding-bottom: calc(var(--space-60) + 5px);
}

.offer-title .offer-name {
    font-weight: 400;
    font-size: var(--font-26);
    line-height: 1.38462;
    text-transform: uppercase;
    word-break: break-word;
    hyphens: auto;
    color: #fff;
    font-family: var(--second-family), sans-serif;
}
.offer-title {
    font-weight: 400;
    font-size: var(--font-26);
    line-height: 1.38462;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--second-family), sans-serif;
    display: flex;
    margin-bottom: var(--space-30);
}

span.offer-icon {
    flex-shrink: 0;
    width: 20%;
    margin-right: 10px;
}

.offer-text {
    padding-left: 20%;
    opacity: 0;
    transition: all 300ms ease-out;
}

.offer-text .text.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #fff;
    margin-bottom: 42px;
}

.offer-link:hover {
    border-color: #fff;
}

.offer-link:hover .offer-text {
    opacity: 1;
}

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

.mask.offer-mask {
    background: rgba(22, 36, 78, 0.65) url(../images/offer_mask.png) no-repeat bottom left;
    background-size: 100%;
}

.offices-box-container {
    background: url(../images/office_mask.png) no-repeat bottom left, url(../images/office_mask_top.png) no-repeat top right;
    padding-top: 115px;
    padding-bottom: 270px;
    background-size: 100%;
}

.offices-box-title {
    font-weight: 400;
    font-size: var(--font-50);
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    max-width: 50%;
    margin-bottom: calc(var(--space-50) + var(--space-60));
    line-height: 118%;
}

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

.grid-photo {
    width: 40.7%;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

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

.grid-text {
    width: 49.1%;
}

.grid-text .text.txt h3 {
    font-weight: 400;
    font-size: var(--font-26);
    line-height: 1.38462;
    text-transform: uppercase;
    font-family: var(--second-family), sans-serif;
    color: #16244e;
    margin-bottom: var(--space-40);
}

.grid-item .counter-box {
    padding-bottom: 0;
    width: 200px;
    height: 200px;
    top: 50%;
}

.grid-item .counter-nb-box {
    font-weight: 700;
    font-size: var(--font-30);
    line-height: 1.21504;
    color: #fff;
}

.grid-item .counter-text {
    font-size: 15px;
    line-height: 1.73333;
}

.grid-photo .counter-text strong {
    font-size: var(--font-30);
}

.grid-item .counter-box-content {
    padding-left: 15%;
    padding-right: 5px;
}

.grid-text-content {
    width: 100%;
    max-width: 665px;
}

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

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

.grid-item:nth-child(even) .grid-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.grid-item:nth-child(even) .grid-photo {
    justify-content: flex-start;
}

.grid-item:nth-child(even) .counter-box {
    left: auto;
    right: 0;
}

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

.benefits-box {
    display: flex;
    flex-wrap: wrap;
    margin: -70px -90px;
    justify-content: center;
}

.benefit-item {
    width: 33.33%;
    align-items: center;
    display: flex;
    padding: 70px 90px;
}

.benefit-icon {
    width: 88px;
    height: 88px;
    border-radius: 50% 50% 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-default);
    margin-right: 50px;
    flex-shrink: 0;
}

.benefit-text .text.txt {
    font-size: var(--font-20);
    line-height: 179%;
    color: #16244e;
}

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

.subpage header.stickable {
    background: #1A234D;
}

.subpage #content {
    padding-top: 100px;
    background: url(../images/content_bg.png) no-repeat left 100px;
    background-size: 100%;
}

.page-heading-title {
    font-weight: 400;
    font-size: var(--font-50);
    text-transform: uppercase;
    text-align: center;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    margin-bottom: calc(var(--space-30) + var(--space-40));
}

.about-subpage {
    padding-top: var(--space-60);
    padding-bottom: var(--space-40);
}

.about-text .text.txt h2 {
    font-weight: 400;
    font-size: var(--font-35);
    line-height: 1.31429;
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    margin-bottom: var(--space-30);
}

.about-subpage .about-text .text.txt {
    margin-bottom: 0;
}

.subpage .benefit-item {
    padding: 55px 90px;
}

.benefits-box-title {
    font-weight: 400;
    font-size: var(--font-35);
    line-height: 1.31429;
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
    text-align: center;
    max-width: 45%;
    margin: 0 auto calc(var(--space-40) + var(--space-40));
}

.about-subpage + .benefits-box-container {
    padding-top: var(--space-30);
}

.subpage .benefits-box {
    margin: -55px -90px;
}

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

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

.service-details-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.service-details-photo {
    width: 100%;
    position: relative;
}

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

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

.service-details-header .btn {
    color: #fff;
    border: var(--color-default);
    background: var(--color-default);
    border-radius: 23px;
    padding: 0 23px !important;
    margin-bottom: calc(var(--space-30) + var(--space-40));
    margin-left: 10px;
}

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


.mask.service-mask {
    background: rgba(0, 0, 0, 0.40);
}

.service-details-header .page-heading-title {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 10px;
}

.service-details-package-title {
    font-weight: 400;
    font-family: var(--second-family), sans-serif;
    font-size: var(--font-35);
    line-height: 1.31429;
    text-transform: uppercase;
    text-align: center;
    color: #16244e;
    margin-bottom: var(--space-50);
}

.service-details-package {
    padding-top: calc(var(--space-50) + 5px);
}

.package-box {
    display: flex;
    justify-content: space-between;
    width: 66.66%;
    margin: -30px;
}

.package-item {
    width: 100%;
    height: 100%;
}

.package-box .package-item {
    width: 50%;
}

.package-box-wrapper {
    display: flex;
}

.package-slider {
    display: flex;
    margin: -30px;
}

.package-slide {
    width: 33.33%;
    padding: 30px;
}

.package-title-box {
    min-height: 177px;
    width: 100%;
    padding: 10px 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #16244e;
}
.package-slider .slick-track .package-slide{
    height: unset;
}
.package-slider .slick-track{
    display: flex;
    align-items: stretch;
}
.package-title {
    font-weight: 700;
    font-size: var(--font-26);
    line-height: 150%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-bottom: 7px;
}
.package-item-inner .btn:not(:has(.btn-icon)){
    padding: 0 var(--space-25) !important;
}
.package-desc {
    font-weight: 400;
    font-size: 16px;
    /* line-height: 24px; */
    line-height: 1.5;
    text-align: center;
    color: #fff;
}

.package-item-inner {
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 29px;
    justify-content: space-between;
    height: 100%;
}
.package-price-box .price{
    display: flex;
    margin: 5px 0 -4px;
    line-height: 0.8;
    align-items: flex-end;
    gap: 5px;
}
.price .caption{
    font-weight: 400;
    font-size: 16px;
    display: inline-block;
}

.package-price-box {
    min-height: 166px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
    padding-top: 17px;
}

.package-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 34px;
    text-align: center;
    color: #fff;
    border-radius: 0 0 10px 10px;
    width: 172px;
    height: 34px;
    background: #77c806;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.old-price {
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 100%;
    text-transform: uppercase;
    text-decoration: line-through;
    text-align: center;
    color: #16244e;
    opacity: 0.6;
    padding-top: var(--space-30);
    margin-bottom: 5px;
}

.price {
    font-weight: 700;
    font-size: var(--font-50);
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #16244e;
    margin-bottom: -9px;
}

.price-time {
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 2.55556;
    text-align: center;
    color: #16244e;
}

.package-offer ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color: #16244e;
    padding-top: 13px;
    padding-bottom: 15px;
    left: 25px;
    position: relative;
    padding-right: 25px;
}

.package-offer ul li:after {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    content: '';
    left: -25px;
    top: 0;
}

.package-offer {
    padding: 0 28px;
}

.package-offer ul li:before {
    content: "";
    display: inline-block;
    left: -14px;
    margin-left: -12px;
    font-family: sans-serif;
    position: relative;
    top: 1px;
    width: 13px;
    height: 13px;
    background: url(../images/icons/li.svg) no-repeat center center;
}

.plate .btn.btn-secondary {
    background: var(--color-default);
    border-radius: 23px;
    padding-left: 27px;
    padding-right: 6px;
    border: 1px solid var(--color-default);
    color: #fff;
}

.package-offer ul {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.package-item-content {
    margin-bottom: 26px;
    width: 100%;
}

.plate .btn.btn-secondary .btn-icon svg *,
.plate .btn.btn-primary .btn-icon svg {
    fill: none;
}

.plate .btn.btn-secondary .btn-icon svg circle {
    fill: #fff;
}

.plate .btn.btn-secondary:hover {
    background: #fff;
    color: var(--color-default);
}

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

.plate .btn.btn-secondary:hover .btn-icon svg circle {
    fill: var(--color-default);
}


.plate .package-item-inner {
    height: auto;
}

.section-title {
    font-weight: 400;
    font-family: var(--second-family), sans-serif;
    font-size: var(--font-35);
    line-height: 1.31429;
    text-transform: uppercase;
    text-align: center;
    color: #16244e;
    margin-bottom: var(--space-50);
}

.work-box-container {
    padding-top: calc(var(--space-60) + 5px);
    padding-bottom: calc(var(--space-50) + 5px);
    background: #fafafa;
}

.work-box-container .section-title {
    max-width: 49%;
    margin: 0 auto var(--space-50);
}

.steps-box {
    display: flex;
}

.step {
    width: 33.33%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.step-nb {
    font-weight: 700;
    font-size: var(--font-24);
    text-align: center;
    color: #fff;
    width: 72px;
    height: 72px;
    background: var(--color-default);
    border-radius: 50px 50px 0 50px;
    line-height: 72px;
    margin: 0 auto 27px;
}

.step-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-24);
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    color: #16244e;
    margin-bottom: 6px;
}

.step-photo {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

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

.step-text .text.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    text-align: center;
    color: #16244e;
    margin-bottom: 24px;
}

.step:last-child {
    border: 0 none;
}

.step-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.profit-box {
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
    justify-content: space-between;
    margin: -35px 0;
}

.profit-item {
    width: 42%;
    display: flex;
    padding: 35px 0;
}

.profit-icon {
    width: 87px;
    height: 87px;
    display: flex;
    justify-content: flex-start;
    align-items: c;
    flex-shrink: 0;
    margin-right: 50px;
    margin-top: 10px;
}

.profit-text strong {
    font-size: var(--font-22);
    line-height: 254%;
}

.profit-text {
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 2;
    color: #16244e;
}

.profit-text p:first-child {
    margin-bottom: 10px;
}

.faq-box-container {
    background: url(../images/faq_bg.png) no-repeat right top;
    padding-top: 300px;
    padding-bottom: var(--space-60);
    background-size: 100%;
}

.accordion-box {
    padding-top: 25px;
}

.accordion-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 32px 10px 28px;
}

span.accordion-arrow {
    width: 29px;
    height: 29px;
    display: flex;
    margin-left: 10px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: normal;
    font-family: var(--second-family), sans-serif;
    border: 1px solid rgba(22, 36, 78, 0.2);
    border-radius: 50% 50% 0 50%;
    transition: all 300ms ease-out;
}

span.accordion-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #16244e;
}

.accordion {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.accordion .text.txt {
    font-weight: 400;
    font-size: 16px;
    /* line-height: 36px; */
    line-height: 2.25;
    color: #16244e;
}

.accordion-content {
    padding: 30px;
    background: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    display: none;
}

.accordion:hover .accordion-arrow {
    background: var(--color-default);
    color: #fff;
    font-size: 14px;
}

.accordion:hover .accordion-arrow:after {
    content: '-';
    padding-top: 1px;
    font-size: 16px;
}

span.accordion-arrow:after {
    content: '+';
    padding-top: 3px;
}

.accordion.active-accordion .accordion-arrow {
    background: var(--color-default);
    color: #fff;
    font-size: 14px;
}

.accordion.active-accordion .accordion-arrow:after {
    content: '-';
    padding-top: 1px;
    font-size: 16px;
    transition: all 300ms ease-out;
}

.accordion-header {
    cursor: pointer;
}

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

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

.news {
    padding: 20px;
    width: 33.33%;
}

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

.news-photo {
    position: relative;
    margin-bottom: 24px;
}

time.news-date {
    width: 85px;
    height: 85px;
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    color: #fff;
    background: var(--color-default);
    border-radius: 50% 50% 0 50%;
    text-align: center;
    padding: 10px;
    position: absolute;
    top: 11px;
    left: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 1.5;
    text-transform: uppercase;
    color: #16244e;
    margin-bottom: 11px;
}

.news .text.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #16244e;
    margin-bottom: 24px;
}

.form-service-container .section-title {
    color: #fff;
    margin-bottom: var(--space-60);
}

.form-service-container {
    padding-top: calc(var(--space-40) + var(--space-40) + 5px);
    background: rgba(22, 36, 78, 0.85);
}

.form-box-wrapper {
    max-width: 1090px;
    margin: 0 auto;
    position: relative;
}

.form-service-container .form .form-element-name {
    color: #fff;
}

.form-service-container .form-control,
.form-service-container .form .form-control {
    border-color: #fff;
}

.form-service-container .form .before-consent-row,
.form-service-container .form .after-consent-row,
.form-service-container .form .consent-row label,
.form-service-container .form .consent-all {
    color: #fff;
}

.form-service-container .form-box-inner {
    padding-bottom: var(--space-50);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: var(--space-50);
}

.service-details-page img.she {
    display: none;
}

.service-details-page .footer-top {
    display: none;
}

.service-details-page footer .photo-bg {
    display: none;
}

.service-details-page .footer-box-container {
    display: none;
}

.service-details-page .footer-bar {
    background: rgba(22, 36, 78, 1);
}

.form-img {
    position: absolute;
    z-index: 3;
    right: 50%;
    bottom: calc(-90px - var(--space-50));
    margin-right: -915px;
}

.reservation-box-container {
    padding-top: var(--space-60);
    background-size: 100%;
    padding-bottom: 0 !important;
}
.reservation-info{
    margin-bottom: var(--space-60);
}
.reservation-mask img{
    max-width: 100%;
    display: block;
}
@media screen and (min-width: 1921px){
    .reservation-mask {
    margin-left: calc(((1455px - 2 * var(--container-padding) - 1920px) / 2));
    }
}
.reservation-mask{
    margin-left: min(calc(((1455px - 2 * var(--container-padding) - 100vw) / 2)), calc(-1 * var(--container-padding)));
    width: 100vw;
}
.register-iframe-wrapper{
    margin-bottom: var(--space-60);
}
.reservation-photo img {
    display: block;
    max-width: 100%;
}

.reservation-photo {
    display: block;
    margin-bottom: calc(var(--space-50) + 5px);
}

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

.reservation-info-warning {
    border: 2px solid #eebe10;
    padding: 3.3%;
    margin-bottom: calc(var(--space-40) + var(--space-40));
}

.info-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 24px;
}

.info-title {
    font-weight: 400;
    font-size: var(--font-24);
    line-height: 1.5;
    text-transform: uppercase;
    color: #16244e;
    font-family: var(--second-family), sans-serif;
}

.info-icon {
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #16244e;
    border-radius: 50% 50% 0 50%;
    color: #fff;
    flex-shrink: 0;
    margin-right: 40px;
}

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

.calendar-box {
    padding: 0 var(--container-padding);
    text-align: center;
}

.subpage .news-box-container {
    background: transparent;
    padding-top: var(--space-60);
    padding-bottom: 10px;
}

.mainpage .news-box {
    padding-top: 28px;
}

.subpage .news {
    margin-bottom: var(--space-30);
}

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

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

.article-text.text.txt {
    font-weight: 400;
    font-size: 16px;
    /* line-height: 30px; */
    line-height: 1.875;
    color: #16244e;
}

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

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

.contact-box-container .page-heading-title {
    color: #fff;
    margin-bottom: -9px;
}

.contact-box {
    display: flex;
    padding-top: calc(var(--space-40) + 5px);
    align-items: flex-end;
}

.contact-left {
    width: 50%;
    margin-bottom: var(--space-50);
}

.contact-right {
    width: 50%;
}

.contact-title {
    font-weight: 400;
    font-size: var(--font-50);
    text-transform: uppercase;
    color: #fff;
    font-family: var(--second-family), sans-serif;
    margin-bottom: calc(var(--space-40) + var(--space-40));
}

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

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

.mask.contact-mask {
    background: rgba(22, 36, 78, 0.80) url(../images/contact_mask.png) no-repeat center 38%;
    background-size: 100%;
}

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

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

.form-box-container .form-box-wrapper {
    padding-top: 20px;
}

.package-item .btn.btn-secondary:hover svg path {stroke: var(--color-primary);fill:none!important;}

.package-item .btn-btn-seconary:hover  .btn-icon  svg path {
    stroke: var(--color-primary)!important;
    fill:none!important;
}

.package-item .btn-btn-seconary:hover  .btn-icon  svg circle {
    fill: var(--color-primary)!important;
    stroke: none!important;
}

time.news-date-static{
    position: static;
}

.whatsapp-button{
    width: 70px;
    position: fixed;
    z-index: 12;
    bottom: var(--container-padding);
    right: var(--container-padding);
    display: block;
    transition: all .2s linear;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}
.whatsapp-button svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.slick-arrow .btn-icon{
    margin: 0 !important;
}
.package-slider-wrapper{
    position: relative;
    padding: 0 calc(var(--space-40) + 46px);
}
.package-slider-nav-inner{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;

}
.package-slider-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
}

.slick-hidden{
    display: none !important;
}

.opinions-list{
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--space-25) * -1);
    padding-bottom: var(--space-60);
}
.opinion-box:last-child,
.opinion-box:nth-child(3n){
    border-right: 1px solid rgba(0,0,0,0.1);
}
.opinion-box{
    width: 33.3333%;
    border-left: 1px solid rgba(0,0,0,0.1);
    padding: var(--space-25);
}
.opinion-header{
    margin-bottom: var(--space-25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-25);
}
.opinion-name{
    font-size: 20px;
    font-weight: 700;
}
