/**
 * 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;
    --second-family: "Playfair Display", sans-serif;
    --row-gap: 5px;

    /** SPECIFIC **/
    --color-primary: #51A9DB;
    --color-secondary: #082355;
    --color-default: #082355;
}

body {
    color: #082355;
    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 34px;
    height: 55px;
    line-height: 55px;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.05em;
    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;
    border: transparent;
    padding-left: 0;
    padding-right: 0;
}

.btn.has-icon .btn-icon {
    width: 55px;
    height: 55px;
    padding: 6px;
    transition: all 200ms;

    border-radius: 50%;
    margin-left: 26px;
}

.btn.has-icon .btn-icon:first-child {
    margin-left: 0;
    margin-right: 26px;
}


.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: #082355;
}

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

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


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

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

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

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

.btn.btn-white .btn-icon {
    border: 1px solid #fff;
}

.btn.btn-default .btn-icon {
    border: 1px solid #082355;
}


@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]):not(.has-icon):hover {
        color: #fff;
        background-color: var(--color-secondary);
    }

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

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

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

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

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

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

}


/**
 * 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 > *:first-child {
    margin-top: 0;
}

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

.text.txt h1 {
    font-size: var(--font-24);
    margin: 20px 0;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.63636;
    color: #082355;
}

.text.txt h2 {
    font-size: 16px;
    margin: 20px 0;
    font-weight: 600;
    line-height: 1.63636;
    text-transform: uppercase;

    color: #082355;
}

.text.txt h3 {
    font-size: 16px;
    margin: 20px 0;
    font-weight: 600;
    line-height: 1.63636;
    color: #082355;
}

.text.txt h4 {
    font-size: 16px;
    margin: 20px 0;
    font-weight: 600;
    line-height: 1.63636;
    color: #082355;
}

.text.txt h5 {
    font-size: 16px;
    margin: 20px 0;
    font-weight: 700;
    line-height: 1.63636;
    color: #082355;
}


.text.txt h6 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.63636;
    color: #082355;
}


/**
 * 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: 24px;
    position: relative;
    padding-right: 24px;
}

.text ul > li::before {
    content: "";
    display: inline-block;
    left: -10px;
    margin-left: -4px;
    font-family: sans-serif;
    position: relative;
    top: -1px;
    width: 4px;
    height: 4px;
    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;
}

@media screen and (min-width: 1140px) {
    .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;
}

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

/**
 * HEADER
 */

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


.top {
    /* padding-top: 36px; */
    /* padding-bottom: 36px; */
}

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

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

.logo {
    float: none;
    width: 94px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo a {
    display: block;
    width: 94px;
}

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

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

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

#main-menu li a {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    text-align: justify;
    color: #fff;
    -webkit-text-stroke: 0.6px transparent;
    padding: 47px 0;
    display: block;
    transition: all 300ms ease-out;
}

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

#main-menu li.active > a {
    color: #fff;
    transition: all 300ms ease-out;
    -webkit-text-stroke: 0.6px 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 !important;
    border-bottom: 1px solid #ccc;
    width: 100%;
}

#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 {
    padding: 51px 0;
}

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

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

.caption-value {
    font-weight: 500;
    font-size: 15px;
    text-align: justify;
    color: #fff;
    margin-left: 18px;
}

.shop-basket-quantity {
    font-weight: 500;
    font-size: 10px;
    text-align: center;
    color: #fff;
    background: #ff8c00;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: -9px;
}

.basket-icon-box {
    position: relative;
}

.icon-basket svg *[stroke] {
    stroke: currentColor;
}

.icon-basket svg *[fill] {
    fill: currentColor;
}

.icon-basket {
    border-radius: 100px;
    width: 54px;
    color: #fff;
    height: 54px;
    border: 1px solid transparent;
    transition: background-color 300ms, border-color 300ms, color 300ms;
    background: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.basket-box-btn {
    display: flex;
    align-items: center;
}

.basket-box {
    margin-left: calc(var(--space-25) + 5px);
}

.top .social-list {
    padding-right: calc(var(--space-25) + 5px);
    position: relative;
}

.social-list:before {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -6px;
    width: 1px;
    height: 11px;
    content: '';
    background: rgba(255, 255, 255, 0.5);
}

.contact-links {
    margin: -12px 0 22px;
}

.contact-link {
    align-items: center;
    line-height: 200%;
    display: flex;
    padding: 12px 0;
    font-weight: 400;
    font-size: 16px;
    color: #082355;
}

.contact-link .btn-icon {
    margin-right: 17px;
    position: relative;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid #082355;
    padding: 14px;
    text-align: center;
    width: 50px;
    height: 50px;
    background: #082355;
}

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

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

}

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

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

    a.contact-link:hover .btn-icon svg,
    a.contact-link:hover .btn-icon svg * {
        fill: #082355;
    }
}

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

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


.mainsearch.rwdPanel {
    display: block;
}

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

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

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

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

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

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

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


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


/**
 * FOOTER
 */


/**
 * FOOTER
 */


footer {
    position: relative;
}

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


.footer-box-container {
    position: relative;
    padding-top: 103px;
    background-size: cover;
    padding-bottom: 16px;
    background-position: center top;
}

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

.footer-col-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    margin-bottom: calc(var(--space-50) + 5px);
}


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

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

.footer-box ul li a {
    display: block;
    line-height: 150%;
    font-weight: 300;
    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: 59%;
}

.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;
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.contact-link-bottom .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 18px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logotypes-box-wrapper:last-child {
    border-bottom: 0 none;
}

.footer-box:first-child {
    width: 30%;
    margin-right: 3%;
}

.footer-box:last-child {
    width: 12%;
    margin-left: 7%;
}

.footer-box:last-child img {
    max-width: 100%;
    display: block;
}

.small-text {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 14px;
}

.small-text .text.txt {
    font-weight: 300;
    font-size: 13px;
    line-height: 2;
    color: #fff;
}

.copyright:first-child:before {
    display: none;
}

.footer-bg {
    position: relative;
}

.footer-bg .photo-bg {
    border-radius: 80px 80px 0 0;
    overflow: hidden;
}

/* FOOTER BAR */

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

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


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

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

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

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

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

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

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

.copyright:before {
    content: '';
    width: 1px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: -25px;
    top: 50%;
    margin-top: -5px;
}

.copyright {
    position: relative;
}

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

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

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


/**
 * FORM
 */

.form-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-40);
    text-align: center;
    color: #082355;
    margin-bottom: calc(var(--space-50) + 5px);
}

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


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

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

.form .form-element-name {
    margin-bottom: 14px;
    font-style: normal;
    font-family: var(--second-family), sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #082355;
}


/* 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: var(--color-default);
    font-size: 14px;
    font-weight: 300;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

/* TEXTAREA */

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

/* KLAUZULE I ZGODY */

.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.69231;
    text-transform: capitalize;
    text-align: justify;
    color: #082355;
}

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

/* KOLOR GWIAZDKI WYMAGANEGO POLA */

.form .form-required-mark {
    /* color: #a94442; */
}

.form-element-select .form-control-feedback,
.form-element-country .glyphicon {
    display: none;
}

.form button.captcha-refresh {
    right: var(--row-gap);
    color: var(--color-primary);
    border-radius: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #e5e5e5;
}

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

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

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

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


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

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

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

/*---- 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-default.btn-lg {
    margin: 0 auto;
}

.form-box-wrapper button.btn.btn-default.btn-lg .btn-icon {
    background: var(--color-primary);
    border-color: var(--color-primary)
}

.form-box-wrapper button.btn.btn-default.btn-lg .btn-icon svg, .form-box-wrapper button.btn.btn-default.btn-lg .btn-icon svg * {
    stroke: #fff
}


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

    .form-box-wrapper button.btn.btn-default.btn-lg:hover .btn-icon svg,
    .form-box-wrapper button.btn.btn-default.btn-lg:hover .btn-icon svg * {
        stroke: var(--color-default);
    }
}

.form .consent-all-row strong {
    padding-top: 20px;
    display: block;
    color: var(--color-default);
}

@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-primary);
    transition: all .4s ease;
}

/* Close */

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

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

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

/* Hamburger -> Close */

.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}

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

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

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

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

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

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

/**
 * LOGOTYPES SLIDER
 */

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

.logotypes-box-title {
    font-weight: 400;
    font-size: var(--font-35);
    color: #082355;
    font-family: var(--second-family), sans-serif;
    width: 29%;
}

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

.logotype img {
    max-height: 100px;
    max-width: 90%;
    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;
    color: #fff;
    padding: 4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
}

@media screen and (min-width: 1140px) {
    .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: var(--space-40);
}

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

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

.article-subtitle {
    padding-bottom: 20px;
    font-weight: 700;
    font-size: var(--font-22);
    line-height: 1.63636;
    color: #082355;
    font-family: var(--second-family), sans-serif;
}

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

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

/**
 * GALLERY
 */

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

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

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

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

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

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: opacity 0.3s;
    border-radius: 15px;
    background: rgba(8, 35, 85, 0.70);
}

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

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

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

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

/**
* PAGINATION
*/

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

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

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

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    color: #000;
    line-height: 54px;
    padding: 0 20px;
    font-size: 15px;
}


.pagination-wrapper ul li.prev a, .pagination-wrapper ul li.next a {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 transparent;
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid var(--color-default);
    text-align: center;
    line-height: 52px;
    font-size: 15px;
    font-weight: 400;
}

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

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

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

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

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

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

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

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

header.sticky {
    box-shadow: 47px 6px 12px 0 rgba(0, 0, 0, 0.25);
    background: #08255a;
}

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

.slider {
    height: 100vh;
    min-height: 820px;
    position: relative;
}

.slider-photo svg {
    width: 100%;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    max-width: 1640px;
    margin: 0 auto;
    display: block;
    right: 0;
    height: auto;
}

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

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

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

.slide-box-mask {
    text-align: center;
    position: absolute;
    top: 126px;
    width: 100%;
}

.slide-box-mask svg {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


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

.slide-news {
    display: flex;
    flex-direction: column;
    width: 41.7%;
    position: relative;
    z-index: 2;
}

.slide-left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: var(--space-60);
    position: relative;
    z-index: 2;
}

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

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

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

.title1 {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-40);
    color: #fff;
    position: relative;
    margin-bottom: 29px;
}

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


.slider ul.slick-dots {
    max-width: 1670px;
    width: 50%;
    position: absolute;
    bottom: 79px;
    text-align: center;
    left: 50%;
    margin-left: -900px;
}

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

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

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

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

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

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

.section-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-50);
    color: #082355;
}


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

.news-big {
    width: 50.5%;
}

.mainpage .news-box {
    width: 43.9%;
}

.news-big-photo {
    position: relative;
}

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

.news-bottom {
    position: absolute;
    bottom: 0;
    padding: 42px;
    width: 100%;
}

.news-bottom .news-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-30);
    line-height: 1.53333;
    color: #fff;
}

time.news-date {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 5px;
    width: 112px;
    height: 30px;
    background: #082355;
    display: block;
    line-height: 30px;
    margin: 0 0 12px;
}


.news-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-big .news-link {
    display: block;
}


.news .news-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-22);
    line-height: 1.63636;
    color: #082355;
}

.news-photo {
    width: 28.4%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

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

.news-content {
    width: 64.6%;
}

.mainpage .news {
    padding-bottom: var(--space-30);
    width: 100%;
}

.news-bottom time.news-date {
    margin-bottom: 21px;
}

.news-list .news:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 1140px) {
    .news-link:hover .news-title {
        text-decoration: underline;
    }
}

.about-box-container .section-title {
    color: #fff;
    margin-bottom: 22px;
}

.about-box-container {
    padding-top: var(--space-60);
    padding-bottom: calc(var(--space-50) + var(--space-50) + var(--space-40));
    position: relative;
    border-radius: 0 0 80px 80px;
    overflow: hidden;
}

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

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

.about-text {
    width: 35%;
    padding-top: 20px;
}

.about-photo {
    width: 58%;
}

.about-photo-top {
    display: flex;
    justify-content: space-between;
    align-items: self-end;
    margin-bottom: calc(var(--space-40) + 5px);
}

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

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

.about-photo img:last-child {
    border-radius: 80px 15px;
    width: 63.4%;
}

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

.info-box-container .section-title {
    width: 55%;
    margin-bottom: calc(var(--space-40) + var(--space-30));
}

.info-box {
    display: flex;
}

.info-item {
    width: 25%;
}

.info-link {
    display: flex;
    flex-direction: column;
}

.info-item:nth-child(even) .info-link {
    flex-direction: column-reverse;
}

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

.info-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

.info-icon {
    width: 96px;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto calc(var(--space-40) + 5px);
}

.info-name {
    font-weight: 400;
    font-size: var(--font-22);
    line-height: 1.63636;
    text-align: center;
    color: #082355;
    font-family: var(--second-family), sans-serif;
    padding: 0 45px;
    height: 118px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-text-content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.action-box-container .section-title {
    color: #fff;
}

.action-box-container {
    padding-top: calc(var(--space-40) + var(--space-30));
    padding-bottom: calc(var(--space-40) + var(--space-30));
    background: #09275b;
    position: relative;
}

.action-box-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-60);
}

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

.action-photo {
    margin-bottom: var(--space-50);
}

.action-text .text.txt {
    color: #fff;
}

.action-slider {
    width: 145%;
    margin: -13px;
}

.action-link {
    display: flex;
    flex-direction: column;
}

.action-item {
    padding: 13px;
}

.action-box-container ul.slick-dots {
    position: relative;
}

.slider-nav-box {
    display: flex;
    align-items: center;
}

.slider-navigation {
    margin-right: 46px;
}

.action-text {
    max-width: 77%;
}

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

@media screen and (min-width: 1140px) {
    .action-link:hover .btn-white .btn-icon {
        background: var(--color-primary);
        border-color: var(--color-primary)
    }
}

.action-slider .slick-track {
    margin-left: 0;
}

.logotypes-box-wrapper {
    display: flex;
    align-items: center;
    padding-top: calc(var(--space-40) + 5px);
    padding-bottom: calc(var(--space-40) + 5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.logotype-slider {
    width: 71%;
}


.logotype-slider .slick-track {
    margin-left: 0;
}


.logotype {
    height: 100px;
    width: 20%;
    text-align: center;
    padding: 0;
}


.subpage header {
    box-shadow: 1px 6px 12px 0 rgba(0, 0, 0, 0.25);
    background: #08255A;
}

header.sticky {
    box-shadow: 1px 6px 12px 0 rgba(0, 0, 0, 0.25);
}

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

.heading-page .page-heading-title {
    margin-bottom: 10px;
}

.heading-page {
    margin-bottom: var(--space-40);
}

.modal-title, .top-box-heading {
    font-weight: 400;
}

.page-heading-title {
    font-weight: 400;
    font-size: var(--font-50);
    text-align: center;

    font-family: var(--second-family), sans-serif;
    margin-bottom: var(--space-50);
}

.about-page .page-heading-title {
    color: #fff;
}

.about-page .about-photo {
    width: 54%;
}

.about-photo-top img:first-child {
    width: 27.6%;
}

.about-page .about-text {
    padding-top: var(--space-40);
}

.about-box-container.about-page {
    padding-bottom: var(--space-40);
}

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

.grid-text {
    width: 42%;
}

.grid-photo {
    width: 50%;
}

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

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

.grid-text .text.txt h2 {
    margin-bottom: calc(var(--space-30) + 5px);
}

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

.subpage .info-box-container .section-title {
    width: 100%;
    font-weight: 400;
    font-size: var(--font-30);
    text-align: center;
    margin-bottom: calc(var(--space-25) + var(--space-50));
}

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

.subpage .info-name {
    font-size: var(--font-18);
    height: 83px;
    margin-bottom: var(--space-40);
}

.subpage .info-icon {
    width: 80px;
    margin-bottom: calc(var(--space-30) + 5px);
}

.partners-box-container {
    display: none;
}

.mainpage .partners-box-container {
    display: block;
}

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

.article-content time.news-date {
    display: inline-block;
    margin-bottom: var(--space-30);
}

.text-box-container .page-heading-title {
    margin-bottom: var(--space-60);
}

article.article:last-child {
    padding-bottom: 0;
    margin-bottom: -20px;
}

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

.courses-box {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    margin: -30px;
}

.course-item {
    width: 33.33%;
    padding: 30px;
}

.course-link {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    height: 100%;
    position: relative;
    align-items: center;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px transparent;
    background: #fff;
}

.course-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 179px;
    margin-bottom: var(--space-40);
    transition: all 0.2s;
}

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

.course-name {
    font-weight: 400;
    font-size: var(--font-20);
    text-align: center;
    color: #082355;
    font-family: var(--second-family), sans-serif;
    margin-bottom: 25px;
}

.course-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.625;
    text-align: center;
    color: #082355;
    margin-bottom: 25px;
}

.course-price {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.625;
    text-align: center;
    color: #082355;
}

.course-price strong {
    font-weight: 700;
    font-size: var(--font-30);
    line-height: 114%;
    display: block;
}

@media screen and (min-width: 1140px) {
    .course-link:hover .course-img {
        height: 124px;
    }
}

.course-img img {
    max-height: 100%;
}

.course-price .price {
    font-size: var(--font-30);
    font-weight: 700;
}

@media screen and (min-width: 1140px) {
    .course-link:hover {
        border-color: var(--color-primary);
        padding: 30px 40px;
        -webkit-box-shadow: inset 0px 0px 0px 1px rgba(81, 169, 219, 1);
        -moz-box-shadow: inset 0px 0px 0px 1px rgba(81, 169, 219, 1);
        box-shadow: inset 0px 0px 0px 1px rgba(81, 169, 219, 1);
    }
}

.course-info {
    flex-grow: 1;
    transition: 200ms all;
}

@media screen and (min-width: 1140px) {
    .course-link:hover .course-info {
        margin-bottom: 20px;
    }

    .course-link:hover .btn {
        margin-top: var(--space-25);
        opacity: 1;
        margin-bottom: 0;
        transform: none;
    }
}

.course-link .btn {
    display: flex;
    /*align-items: flex-start;*/
    overflow: hidden;
    opacity: 0;
    margin: 0 auto;
    margin-bottom: -55px;
    transform: translateY(55px);
    transform-origin: bottom;
    justify-content: center;
}


.course-link .btn {
    transition: all 0.2s;

}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 186px;
}


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

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

.course-details-photo {
    margin-bottom: var(--space-50);
    position: relative;
    width: 100%;
    padding-bottom: 26.8%;
    border: 1px solid #f1f1f1;
    border-radius: 80px 15px;
    overflow: hidden;
}

.course-details .page-heading-title {
    font-size: var(--font-35);
    text-align: left;
    margin-bottom: calc(var(--space-40) + 5px);
}


.course-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(var(--space-60) + 5px);
}

.course-details-left {
    width: 48%;
}

.course-details-right {
    background: url(../images/save_bg.jpg) no-repeat top center / cover;
    width: 33.5%;
    margin-top: 10px;
    padding: calc(var(--space-40) + 5px) calc(var(--space-50) + 5px) var(--space-60);
    border-radius: 20px;
}

.course-details-left .text.txt {
    font-size: 16px;
    line-height: 1.625;
    color: #082355;
}

.course-details-right-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-40);
    text-align: center;
    color: #fff;
    margin-bottom: 31px;
}

time.course-date {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.625;
    text-align: center;
    color: #fff;
    display: block;
    margin-bottom: 26px;
}

.course-right-info {
    font-size: 16px;
    line-height: 1.625;
    text-align: center;
    color: #fff;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.buy-box {
    padding-top: calc(var(--space-30) + 5px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.availability {
    display: flex;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    align-items: center;
}

.availability-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.product-price {
    font-weight: 700;
    font-size: var(--font-50);
    text-align: center;
    color: #fff;
    line-height: 135%;
    margin-bottom: 13px;
}


.product-submenu-box {
    display: flex;
    justify-content: center;
}

.product-submenu {
    padding: 22px 60px;
    border-radius: 10px;
    background: #08255a;
    width: 100%;
}


.product-submenu ul {
    display: flex;
    margin: -10px calc((var(--space-25) + 5px) * -1);
    justify-content: center;
}

.product-submenu ul li a {
    font-weight: 300;
    display: block;
    -webkit-text-stroke: 0.6px transparent;
    font-size: 15px;
    padding: 10px calc(var(--space-25) + 5px);
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.product-submenu ul li a.active {
    -webkit-text-stroke-color: #fff;
}

@media screen and (min-width: 1140px) {
    .product-submenu ul li a:hover {
        -webkit-text-stroke-color: #fff;
    }
}

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


.product-submenu.affix {
    position: fixed;
    top: 117px;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 2;
}

.product-submenu.affix {
    max-width: 1360px;
    margin: 0 auto;
}

.product-desc .product-section-title {
    margin-bottom: 7px;
}

.quantity.buttons_added {
    width: 230px;
    display: flex;
    margin: 0 auto 10px;
    position: relative;
}

input.minus {
    background: #fff;
    height: 50px;
    width: 50px;
    border: 0 none;
    border-radius: 10px 0 0 10px;
    position: relative;
}

input.plus {
    background: #fff;
    height: 50px;
    width: 50px;
    border: 0 none;
    border-radius: 0 10px 10px 0;
    position: relative;
}

input.input-text.qty.text {
    width: 130px;
    background: #fff;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #082355;
    border: 0 none;
}

.quantity.buttons_added:before {
    content: '';
    background: rgba(0, 0, 0, 0.2);
    width: 1px;
    height: 11px;
    display: block;
    position: absolute;
    left: 50px;
    top: 18px;
}

.quantity.buttons_added:after {
    content: '';
    background: rgba(0, 0, 0, 0.2);
    width: 1px;
    height: 11px;
    display: block;
    position: absolute;
    right: 50px;
    top: 21px;
}

.modal-dialog .btn-lg,
header .btn-lg,
.basket-view .btn-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin: 0 auto;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.625;
    text-transform: none;
    padding: 0 var(--space-25);
}

.basket-view .btn-lg {
    min-height: 46px;
}

.btn.btn-basket {
    width: 228px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin: 0 auto;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.625;
    color: #fff;
    text-transform: none;
    padding-right: 30px;
}

.btn.btn-basket.has-icon .btn-icon {
    margin-right: 0;
}

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

.other-box-container {
    padding-top: calc(var(--space-50) + 5px);
    padding-bottom: calc(var(--space-40) + var(--space-30));
    background: rgba(217, 217, 217, 0.3);
}

.other-box-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-35);
    color: #082355;
    line-height: 114%;
    margin-bottom: var(--space-50);
}

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

.competition-box {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
}

.competition-item {
    width: 50%;
    padding: 20px;
}

.competition-link {
    display: flex;
    flex-direction: column;
    position: relative;
}


span.mask.competition-mask {
    background: rgba(8, 35, 85, 0.50);
    border-radius: 80px 15px 80px 15px;
}

.competition-link img {
    border-radius: 80px 15px 80px 15px;
    display: block;
    max-width: 100%;
}

.competition-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 7.5% 7.5% 5.5%;
    align-items: center;
}

.competition-name {
    font-size: var(--font-40);
    font-weight: 400;
    line-height: normal;
    color: rgb(255, 255, 255);
    font-family: var(--second-family), sans-serif;
    margin-bottom: 6px;
}

.competition-year {
    font-weight: 500;
    font-size: var(--font-30);
    color: #fff;
}

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

.arrow svg {
    stroke: #fff;
}

.competition-bottom-left {
    padding-right: 20px;
}

@media screen and (min-width: 1140px) {
    .competition-link:hover .arrow {
        background: var(--color-primary);
        border-color: var(--color-primary);
    }
}

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

.content-left {
    width: 20.9%;
    position: relative;
}

.content-left-inner {
    position: relative;
}

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

.content-box .page-heading-title {
    font-weight: 400;
    font-size: var(--font-40);
    color: #082355;
    text-align: left;
    margin-bottom: var(--space-60);
}

.content-left-title {
    font-weight: 400;
    font-size: var(--font-40);
    color: #082355;
    font-family: var(--second-family), sans-serif;
    margin-bottom: var(--space-60);
}

.content-right {
    width: 74.7%;

}


.submenu ul li {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.submenu ul li a {
    padding: 16px 46px 15px 21px;
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.625;
    text-transform: uppercase;
    color: #082355;
    position: relative;
    margin-top: -1px;
    margin-bottom: -1px;
}


.submenu ul li a:after {
    background: url(../images/icons/arrow_right.svg) no-repeat;
    content: '';
    width: 17px;
    height: 14px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -7px;
}


.submenu ul li.active a {
    background: var(--color-primary);
    color: #fff;
    border-radius: 5px;
}

.submenu ul li.active a:after {
    background: url(../images/icons/arrow_right_white.svg) no-repeat;
}

.submenu ul li.active {
    border-color: transparent;
}

.select-mobile-container {
    display: none;
}

.submenu ul li:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 1140px) {
    .submenu ul li a:hover {
        background: var(--color-primary) !important;
        color: #fff !important;
        border-radius: 5px;
    }

    .submenu ul li a:hover:after {
        background: url(../images/icons/arrow_right_white.svg) no-repeat;
    }
}


.video-box-desc .text.txt {
    margin-bottom: var(--space-50);
}

.video-box {
    position: relative;
    padding-bottom: 52%;
    width: 100%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    /* margin-bottom: var(--space-60); */
    /* border-bottom: 1px solid rgba(0,0,0,0.15); */
}

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

.content-right .grid-box {
    padding-top: var(--space-60);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.content-right .grid-text {
    width: 45.9%;
}

.content-right .grid-photo {
    width: 47%;
}

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

.video-box-desc {
    padding-bottom: var(--space-60);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

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

.map-box {
    padding-bottom: var(--space-60);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

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

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

.person-box {
    margin: -20px calc(-1 * calc(var(--space-40) + var(--space-30)));
    display: flex;
    flex-wrap: wrap;
}

.person-item {
    width: 33.33%;
    padding: 20px calc(var(--space-40) + var(--space-30));
}

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

.person-name {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.625;
    text-align: center;
    color: #fff;
    border-radius: 15px;
    min-height: 94px;
    background: #082355;
    padding: 8px 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 16px;
}

.person-photo {
    margin-bottom: var(--space-30);
    position: relative;
}

.person-content {
    font-weight: 400;
    font-size: 16px;

    line-height: 1.875;
    text-align: center;
    color: #082355;
    padding: 0 10px;
}

.benefit-box-wrapper {
    padding-top: var(--space-50);
    padding-bottom: calc(var(--space-40) + 5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

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

.benefit-left {
    width: 33.6%;
}

.benefit-right {
    width: 59%;
}

.benefit-desc {
    margin-bottom: var(--space-50);
}

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

.benefit-left ul li {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 21px 21px 21px 47px;
    position: relative;
}

.benefit-left ul li:before {
    content: '';
    background: url(../images/icons/check.svg) no-repeat center center;
    width: 19px;
    height: 18px;
    display: inline-block;
    vertical-align: text-top;
    position: absolute;
    left: 15px;
    top: 24px;
}

.person-box + .text.txt {
    padding-top: var(--space-50);
}

.person-box-wrapper .text.txt:last-child {
    margin-bottom: 10px;
}

.person-box-wrapper + .video-box-desc {
    padding-top: var(--space-50);
}

.video-box-desc + .video-box-desc {
    padding-top: var(--space-50);
}

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

.photo-box-wrapper img,
.photo-box img {
    display: block;
    max-width: 100%;
}

.gallery-category-box {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: var(--space-40);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: -25px -13px var(--space-60);
}

.gallery-category {
    width: 50%;
    padding: 25px 13px;

}

.gallery-category-photo img {
    display: block;
    max-width: 100%;
    border-radius: 72px 13px;
}

.gallery-category-photo {
    margin-bottom: var(--space-30);
}

.gallery-category .text.txt {
    margin-bottom: var(--space-30);
}


.files-list {
    margin-bottom: var(--space-60);
}

.files-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: -19px;
}

.files-list ul li {
    width: 50%;
    padding: 19px;
    display: flex;
}

.files-list ul li a {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
    background: transparent;
    justify-content: space-between;
    padding: var(--space-30) var(--space-50) var(--space-30) var(--space-40);
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}

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

.icon-file svg {
    stroke: var(--color-default);
}

.file-name {
    display: flex;
    padding-right: 20px;
    flex-grow: 1;
    padding-left: 40px;
}

.file-name-content {
    font-weight: 400;
    font-size: 15px;
    line-height: 2;
    color: #082355;
}

.btn-download {
    display: block;
    flex-shrink: 0;
    width: 21px;
    height: 26;
}

.files-box-wrapper .text.txt {
    margin-bottom: var(--space-60);
}


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

    .files-list ul li a:hover {
        border-color: var(--color-primary);
        color: #fff;
        box-shadow: inset 0 0 0 1px var(--color-primary);
    }
}

.partners-box-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.875;
    text-transform: uppercase;
    color: #082355;
    margin-bottom: var(--space-50);
}

.partners-box-wrapper {
    margin-top: -5px;
    padding-bottom: 10px;
}

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

.partner-logo {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    width: 22.4%;
    padding-bottom: 22.1%;
    position: relative;
}

.partner-desc {
    width: 73.4%;
}

.partner-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 64%;
    max-height: 64%;
}

.partner-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.875;
    text-transform: uppercase;
    color: #082355;
    margin-bottom: var(--space-30);
}

.content-right .grid-box:last-child {
    border-bottom: 0 none;
}

.person-project-wrapper .text.txt {
    margin-bottom: var(--space-50);
}

.person-project-wrapper .person-item {
    padding: 15px;
    width: 25%;
}

.person-project-wrapper .person-box {
    margin: -15px;
}

.person-project-wrapper .person-photo {
    margin-bottom: 0;
}

.person-project-wrapper {
    padding-bottom: calc(var(--space-50) + 5px);
}

.project-box {
    display: flex;
    flex-wrap: wrap;
    padding-top: 5px;
    margin: -10px;
}

.project-item {
    width: 33.33%;
    padding: 10px;
}

.project-photo img {
    display: block;
    max-width: 100%;
    border-radius: 42px 8px;
}

.project-photo {
    margin-bottom: 19px;
}

.project-item time.news-date {
    font-size: 11px;
    border-radius: 4px;
    width: 87px;
    height: 23px;
    line-height: 23px;
    margin-bottom: 10px;
}

.project-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: 15px;

    line-height: 1.62338;
    color: #082355;
}

.competition-details-container + .other-box-container {
    padding-bottom: calc(var(--space-50) + 5px);
}

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

.gallery-box-container .gallery-category-box {
    padding-top: 10px;
    padding-bottom: var(--space-30);
    margin: -30px -13px 10px;
}

.gallery-box-container .gallery-category-photo {
    margin-bottom: calc(var(--space-40) + 5px);
}

.gallery-box-container .gallery-category {
    padding: 30px 13px;
}

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

.subpage .news-box {
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 15px;
    margin: -12px -12px 10px;
}

.subpage .news {
    width: 33.33%;
    padding: 12px;
    margin-bottom: var(--space-30);
}

.subpage .news-link {
    flex-direction: column;
}

.subpage .news-content {
    width: 100%;
}

.subpage .news-photo {
    width: 100%;
    border-radius: 42px 8px;
    padding-bottom: 81%;
    position: relative;
    margin-bottom: 20px;
}

.subpage .news-photo img {
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
}

.subpage .news time.news-date {
    font-size: 11px;
    border-radius: 4px;
    width: 87px;
    height: 23px;
    line-height: 23px;
    margin-bottom: 20px;
}

.subpage .news .news-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.52192;
    color: #082355;
}


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


.certificates-box .gallery-list-item {
    padding: 20px;
}

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

.certificates-box .gallery-picture {
    width: 100%;
    padding-bottom: 134%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 13px;
}

.certificates-box .gallery-picture img {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.certificates-box {
    padding-top: 10px;
}


.certificates-box .gallery {
    margin-bottom: 10px;
}

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

.contact-left-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-22);
    text-align: left;
    color: #082355;
    margin-bottom: var(--space-30);
}

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

.contact-photo-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-30);
}

.contact-left {
    width: 40%;
}

.contact-photo {
    width: 56%;
    padding-top: 10px;
}

.contact-photo-top img:first-child {
    max-width: 28%;
}

.contact-photo-top img:last-child {
    border-radius: 64px 12px;
    display: block;
    max-width: 63.2%;
}

.form-box-container {
    padding-top: calc(var(--space-50) + 5px);
    padding-bottom: calc(var(--space-40) + var(--space-30));
    background: rgba(217, 217, 217, 0.3);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: var(--space-25);
}

.form-box-wrapper .form {
    padding: 0;
}

.form-element-text {
    margin-bottom: 10px;
    font-family: var(--second-family);
    color: var(--color-secondary);
    font-size: 15px;
    font-weight: 700;
}

.shop-sort-inner {
    display: flex;
    align-items: center;
    gap: var(--space-25);
}

.product-section {
    display: none;
}

.product-section.shown {
    display: block;
}

.product-list-slider .slick-track .slick-slide {
    height: unset;
}

.product-list-slider {
    margin: -30px;
}

.product-list-slider .slick-track {
    width: 100%;
    display: flex;
    align-items: stretch;
}

.flex-header {
    display: flex;
    margin-bottom: var(--space-50);
    align-items: center;
    justify-content: flex-end;
}

.flex-header .other-box-title {
    margin-bottom: 0;
}

.flex-header > *:first-child {
    margin-right: auto;
}

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

.content-right .buttons-center {
    padding-top: var(--space-60);
}

.competition-details-container {
    padding-top: calc(var(--space-60) + 5px);
    padding-bottom: var(--space-60);
}

.certificates-box:last-child {
    padding-bottom: var(--space-50);
}

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

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

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

header.sticky .logo a img {
    height: 70px;
}

ul.slick-dots li:only-child {
    display: none;
}

.heading-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #082355;
}

.content-right .gallery-category-box {
    margin-bottom: 0;
}

.partners-box-wrapper + .buttons-center {
    margin-top: calc(-1 * var(--space-60));
}

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

.gallery-box-container .gallery-category-box:last-child {
    border-bottom: 0 none;
}

.shop-basket-summary .form-element-option-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

span.shop-method-icon img {
    display: block;
}

span.shop-method-icon {
    margin-right: 10px;
}

/*.shop-basket-summary .iradio_minimal-custom.checked {*/
/*    position: relative;*/
/*    top: auto;*/
/*    margin-right: 10px;*/
/*}*/

/*.basket-view .form .summary-box .checkboxradio-container label {*/
/*    align-items: center;*/
/*    display: flex;*/
/*}*/

.basket-view .delivery-methods label .iradio_minimal-custom {
    top: 4px;
}

span.shop-method-name {
    margin-right: 10px;
}

.invoice-address-fieldset .form-element-label-wrapper .form-element-name {
    font-family: "Poppins", sans-serif !important;
}

.alert {
    width: 100%;
}

.course-details-photo img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    object-fit: cover;
}

.course-details-photo img:last-child {
    width: auto;
    max-width: 14%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.text-box-wrapper + .gallery-category-box {
    padding-top: var(--space-50);
}

.photo-box-wrapper {
    margin-bottom: var(--space-50);
}

.video-box-desc + .gallery-category-box {
    padding-top: var(--space-50);
}

.text-box-wrapper + .video-box-desc {
    padding-top: var(--space-50);
}

.photo-box-wrapper + .person-box-wrapper {
    padding-top: 0;
}

.text-box-wrapper + .photo-box-wrapper {
    padding-top: var(--space-50);
}

.video-box-desc + .text-box-wrapper {
    padding-top: var(--space-50);
}

.photo-box-wrapper + .buttons-center {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.page-heading-title + .text-box-container {
    padding-top: 0;
}