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

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

    /** SPECIFIC **/
    --color-primary: #231F20;
    --color-secondary: #00ff00;
    --color-default: #000;
    --second-family: 'Playfair Display';
}

body {
    color: #000;
    font-family: "Poppins", system-ui;
}

/**
 * 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 {
    padding: 0;
    height: 46px;
    line-height: 44px;
    border-radius: 0;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-bottom: 1px solid;
}

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


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

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

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

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


/**
 * THEMES
 */

.btn.btn-primary,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary:focus:active {
    background-color: transparent;
    border-bottom-color: #000;
    color: #000;
}

.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: #000;
    border-color: #000;
    color: #fff;
}

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

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

.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: #fff;
    border-color: #fff;
    color: var(--color-default);
}


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

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

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


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

    .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: transparent;
        border-color: #000;
        color: #000;
    }

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

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

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

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

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

}


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

.panel {
    box-shadow: none;
}

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

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

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

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

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

/**
 * TITLES
 */


.text.txt h1 {
    font-weight: 700;
    font-size: var(--font-26);
    line-height: 1.66667;
    color: var(--color-primary);
    margin-bottom: var(--space-30);
}

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

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

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

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


.text.txt h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.66667;
    color: var(--color-primary);
    margin-bottom: var(--space-30);
}


/**
 * TEXT
 */

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

/** 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: 8px;
    height: 8px;
    background-color: var(--color-primary);
}

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

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

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

.text table tr:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.text table td {
    padding: 20px 30px;
    border: 0 none;
    font-size: 16px;
    line-height: 1.875;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}


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

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

}

/**
 * HEADER
 */

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

/*.header-top {    background-color: #337ab7;}
.header-top-inner {    width: 100%;    display: flex;    justify-content: flex-end;    align-items: stretch;    min-height: 54px;}
.header-top-right {    display: flex;    align-items: stretch;}*/


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

.top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    transition: all 300ms ease-out;
}

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

.logo {
    float: none;
}

.logo a {
    display: block;
}

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

.top nav.social-list {
    margin-right: 40px;
    padding-left: 40px;
    position: relative;
    margin-left: 49px;
}

.top nav.social-list:before {
    content: '';
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

.top .btn.btn-primary {
    padding: 0 45px;
}

.top .btn.btn-primary:hover {
    background: #000;
    color: #fff;
}

#main-menu {
    transition: all 300ms ease-out;
    width: 43%;
}

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

#main-menu li {
    position: relative;
}

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

#main-menu li a {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    color: #000;
    border-bottom: 1px solid transparent;
    text-transform: uppercase;
    padding: 10px 0;
}

#main-menu li a:hover {
    border-color: #000;
}

#main-menu li.active a {
    border-color: #000;
}

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

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

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

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

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

.contact-link {
    align-items: flex-start;
    font-size: var(--font-18);
    line-height: 200%;
    font-weight: 400;
    display: flex;
    padding: 40px;
}

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

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

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

}

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

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

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

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


.mainsearch.rwdPanel {
    display: block;
}

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

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

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

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

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

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

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


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


/**
 * FOOTER
 */


footer {
    position: relative;
    /* background-color: rgb(0, 0, 0); */
}

.footer-box-container {
    position: relative;
    padding-top: 0;
    background-size: cover;
    background-position: center top;
}

.footer-boxes-container .container {
    position: relative;
    z-index: 2;
}

.footer-boxes {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: var(--space-50);
    padding-bottom: var(--space-50);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-box:first-child {
    width: 34%;
    padding-top: 33px;
}

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

.footer-col-title {
    margin-bottom: 38px;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.69231;
    color: #000;
    font-family: var(--second-family), serif;
}


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

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

.footer-box ul li a {
    display: block;
    font-weight: 300;
    font-size: 16px;
    line-height: 2.25;
    color: #000;
}

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

.footer-box .text {
    font-weight: 300;
    font-size: 16px;
    /* line-height: 36px; */
    line-height: 2.25;
    color: #000;
}


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

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

img.logo-min {
    max-width: 41%;
}


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

.footer-bar-content {
    padding: 7px 0;
}


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

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

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

.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 {
    margin-bottom: var(--space-40);
    font-family: var(--second-family), serif;
    font-weight: 400;
    font-size: var(--font-30);
    color: #000;
}

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

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

.form .form-element-name {
    margin-bottom: 13px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}


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

/* 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 {
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
}

.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: 0;
    box-shadow: none;
    background: #fff;
}

/* KOLOR GWIAZDKI WYMAGANEGO POLA */
.form .form-required-mark {
    /* color: #a94442; */
}

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

.form button.captcha-refresh {
    right: var(--row-gap);
    color: var(--color-primary);
    border-radius: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-left: 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: #000;
        border-radius: 0;
    }

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

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


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

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

.form .consent-all-row {
    color: #fff
}

/*---- SELECT 2 -----*/

.select2-dropdown {
    z-index: 100;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    height: 46px;
    border-color: #000;
    border-radius: 0;
    text-align: left;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 12px;
    padding-right: 44px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
}

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

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

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

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

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

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

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

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

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

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

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

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


@media screen and (min-width: 1140px) {
    .form-box-wrapper button.btn.btn-primary.btn-lg:hover {
    }

}

.form .consent-all-row strong {
    padding-top: 20px;
    display: block;
    color: #000;
}

@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-secondary {
    margin: 0 auto;
    display: block;
}

/**
 * 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 {
    color: #00306d;
    font-size: 22px;
    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: -4px;
    font-size: 0;
}

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    color: #000;
    padding: 2px;
    border-radius: 50%;
}

@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: #f0f;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-subtitle {
    padding-bottom: var(--space-30);
    font-weight: 400;
    font-size: var(--font-30);
    color: #000;
    font-family: var(--second-family), serif;
    padding-top: var(--space-30);
}

.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: 33.33%;
    padding: 5px;
}

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

.gallery-picture > img {
    display: block;
    max-width: 100%;
    transition: all .2s ease-in-out;
}

.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(0, 0, 0, 0.6);
);
}

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

    .gallery-picture:hover > img {
        transform: scale(1.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 14px;
}

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

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    color: #000;
    line-height: 50px;
    padding: 0 11px;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
}


.pagination-wrapper ul li.prev a, .pagination-wrapper ul li.next a {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 transparent;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #fff;
    font-size: 22px;
    line-height: 1;
    color: #000;
}

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

.pagination-wrapper ul li.next a > * {
    font-weight: bold;
}

.pagination-wrapper ul li.prev a > * {
    font-weight: bold;
}

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

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

    .pagination-wrapper ul li.prev a:hover {
    }

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

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


#content {
    padding-top: 141px;
}

.title-medium {
    font-weight: 275;
    font-size: var(--font-30);
    line-height: 1.4;
    color: #000;
    display: inline-block;
    margin: 0px 20px;
}

.title-large {
    font-weight: 275;
    font-size: var(--font-38);
    line-height: 1.4;
    color: #000;
    vertical-align: text-bottom;
    display: inline-block;
    margin: 0 20px;
}

.title-small {
    font-weight: 275;
    font-size: var(--font-20);
    line-height: 1.4;
    color: #000;
    vertical-align: text-top;
    display: inline-block;
    margin: 0 20px;
}

.seo-title-box {
    text-align: center;
}

.seo-title-box h3 {
    display: inline-block;
    margin: 0 30px;
}

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

.seo-box-container:nth-child(2) {
    padding-top: calc(var(--space-50) + var(--space-40));
    padding-bottom: calc(var(--space-50) + var(--space-40));
}

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

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

.course-box-title {
    font-weight: 700;
    font-size: 4.17vw;
    text-align: center;
    color: #231f20;
}

@media screen and (min-width: 1921px) {
    .course-box-title {
        font-size: 80px;
    }
}

.courses-box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -38px;
}

.course {
    width: 33.33%;
    padding: 0 38px;
    border-right: 1px solid #cccccc;
    margin-bottom: var(--space-60);
}


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

.course-photo {
    overflow: hidden;
    position: relative;
}

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

.course-content {
    height: 100%;
    flex-direction: column;
    padding-top: var(--space-40);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    padding-left: 30px;
    padding-right: 30px;
}

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

.course-start {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.875;
    color: #000;
    margin-bottom: 10px;
}

.course-title {
    font-weight: 400;
    font-size: var(--font-26);
    color: #000;
    font-family: var(--second-family), serif;
    margin-bottom: var(--space-30);
}

.course .text.txt {
    margin-bottom: var(--space-40);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.875;
    color: #000;
    min-height: 120px;
}

.about-box {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.about-left {
    width: 44.1%;
    margin-left: -5%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 10px;
}

.about-middle {
    width: 21.6%;
    margin-left: 2.5%;
    margin-right: -2.5%;
}

.about-middle svg,
.about-middle img {
    display: block;
    max-width: 100%;
}

.about-middle.opacityToDown svg *[stroke] {
    stroke-dasharray: var(--dash-length, 0);
    stroke-dashoffset: var(--dash-length, 0);
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: dash 2s linear forwards;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.about-right {
    width: 39.3%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-box-title {
    font-weight: 700;
    font-size: 4.17vw;
    line-height: 1.375;
    text-align: right;
    color: #231f20;
    margin-bottom: var(--space-30);
}

@media screen and (min-width: 1921px) {
    .about-box-title {
        font-size: 80px;
    }
}

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

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

.sign {
    max-width: 27%;
    margin-bottom: 18px;
}

.about-left .text.txt {
    max-width: 67%;
    text-align: right;
    margin-bottom: calc(var(--space-50) + var(--space-50) + var(--space-40));
}

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

.about-left .about-photo {
    width: 60%;
    margin: 0 auto;
    padding-left: 2%;
}

.about-right .about-photo {
    width: 79%;
    margin-bottom: var(--space-60);
    margin-left: 21%;
}

.about-right .text.txt {
    padding-right: 10%;
    margin-bottom: var(--space-30);
}

.galleries-box-container {
}

.top .btn-lg.btn-secondary {
    padding: 0 27px;
}

.top .btn-primary {
    border: 1px solid;
    font-weight: bold;
}


.seo-box-container + .galleries-box-container {
    padding-top: 0;
    margin-top: -30px;
    padding-bottom: var(--space-50);
}


.galleries-box {
    display: flex;
    flex-wrap: wrap;
    margin: -20px -15px 0;
}

.galleries-item {
    width: 33.33%;
    padding: 0 15px;
}

.galleries-name {
    font-weight: 300;
    font-size: var(--font-20);
    line-height: 2.2;
    color: #000;
    text-align: center;
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
}

.galleries-link {
    display: block;
    position: relative;
}

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

.shop-box {
    display: flex;
    max-width: 1160px;
    margin: 0 auto;
    justify-content: space-between;
}

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

.shop-right {
}

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

.shop-left {
    width: 48%;
    padding-top: calc(var(--space-50) + var(--space-60));
    padding-right: 0;
    padding-left: 3%;
}

.shop-right {
    width: 49%;
}

.shop-box-title {
    font-weight: 400;
    font-size: var(--font-38);
    color: #000;
    font-family: var(--second-family), serif;
    margin-bottom: var(--space-40);
}

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

.btn-lg.btn-secondary {
    padding: 0 23px;
}

header.sticky .top-inner {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 0 none;
}

header.sticky {
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}

.page-heading-title {
    font-weight: 700;
    font-size: var(--font-60);
    color: #231f20;
    margin-bottom: var(--space-50);
}

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

.about-sub-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1360px;
    align-items: center;
    margin: 0 auto calc(var(--space-40) + var(--space-40));
}

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

.about-sign {
    position: absolute;
    right: var(--container-padding);
    max-width: 55%;
}

.about-sign svg,
.about-sign img {
    display: block;
    max-width: 100%;
}

.about-sub-box:nth-child(even) {
    flex-direction: row-reverse;
}

.about-sub-box .about-photo {
    width: 37.3%;
}

.about-text {
    width: 49.4%;
}

.about-text .sign {
    max-width: 29%;
    margin-bottom: var(--space-40);
}

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

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


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

.team-box-title {
    font-weight: 400;
    font-size: var(--font-30);
    color: #000;
    font-family: var(--second-family), serif;
    margin-bottom: calc(var(--space-50) + var(--space-60));
}

.team-box {
    display: flex;
    flex-wrap: wrap;
    margin: -35px -75px;
}

.person {
    width: 33.33%;
    padding: 35px 75px;
}

.person-photo {
    position: relative;
    margin-bottom: var(--space-30);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.person-photo img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 50%;
}

.person-name {
    font-weight: 400;
    font-size: var(--font-20);
    color: #000;
    font-family: var(--second-family), serif;
    text-align: center;
    margin-bottom: 6px;
}

.person-position {
    font-weight: 300;
    font-size: var(--font-18);
    text-align: center;
    color: #000;
}

.gallery-box-title {
    font-weight: 400;
    font-size: var(--font-30);
    color: #000;
    font-family: var(--second-family), serif;
    margin-bottom: calc(var(--space-25) + var(--space-40) + var(--space-40));
}

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

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

.filter-box {
    display: flex;
    width: 55%;
}

.filter-box .filter-item {
    padding: 0 15px;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

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

.box-header .page-heading-title {
    margin-bottom: 0;
    line-height: 140%;
}

.filter-box label {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    margin-bottom: 12px;
}

.subpage .course {
    margin-bottom: calc(var(--space-40) + var(--space-40));
}

.subpage .courses-box {
    margin-bottom: 0;
    margin-top: -5px;
}

.course:nth-child(3n+1) {
    border-left: 1px solid #cccccc;
}

.course-intro-container {
    padding-bottom: var(--space-30);
}

.content-main .page-heading-title {
    font-size: var(--font-45);
    margin-bottom: 25px;
}

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

.content-left {
    width: 17%;
    padding-top: 20px;
}

.content-main {
    width: 74.8%;
    padding-top: 6px;
}

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

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

.submenu ul li a {
    text-decoration: none;
    position: relative;
    padding: 13px var(--space-50) 13px 22px;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    color: #000;
}

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

.submenu ul li ul {
    opacity: 0;
    height: 0;
}

.submenu ul li li {
    border-bottom: 0 none;
}

.submenu ul li li a {
    letter-spacing: 0;
    padding: 5px 19px 4px 14px;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
}

.submenu ul li li a:hover {
    font-weight: 600;
    color: #000;
    background: transparent
}

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

.submenu ul li li.active a {
    font-weight: 600;
    background: transparent;
    color: #000;
}


.submenu ul li.active ul {
    height: auto;
    opacity: 1;
    padding-left: 20px;
    padding-top: 27px;
    padding-bottom: 22px;
}

.submenu > ul > li > a:after {
    content: "\f105";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    color: #000;
    right: 20px;
    top: 50%;
    margin-top: -7px;
    position: absolute;
}

.submenu > ul > li.active > a:after {
    color: #fff;
    content: "\f105";
}

.submenu > ul > li > a:hover:after {
    color: #fff
}

.submenu ul li li:last-child {
    border: 0 none;
}


.submenu ul li.active {
    border-bottom: 0 none;
}

.submenu ul li.active > a {
    background: #000;
    color: #fff;
}

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

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

.course-intro-photo {
    width: 53.4%;
}

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

.course-intro-text {
    width: 42%;
}

.course-intro-text .sign {
    opacity: 0.3;
    margin-bottom: var(--space-50);
}

.course-intro-text .text.txt {
    font-weight: 300;
    font-size: var(--font-20);
    line-height: 1.8;
    color: #000;
}

.why-box-title {
    font-weight: 400;
    font-size: var(--font-30);
    color: #000;
    font-family: var(--second-family), serif;
    margin-bottom: var(--space-60);
}

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

.why-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    margin-right: 43px;
    height: 80px;
    flex-shrink: 0;
}

.why-icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.why-item {
    display: flex;
    width: 45%;
    align-items: center;
    padding-top: var(--space-30);
    padding-bottom: var(--space-30);
}

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

.why-text {
    font-weight: 300;
    font-size: var(--font-18);
    line-height: 1.66667;
    color: #000;
    padding-right: 6%;
}

.scope-box-title {
    font-weight: 400;
    font-size: var(--font-30);
    color: #000;
    font-family: var(--second-family), serif;
    margin-bottom: var(--space-60);
}

.scope-box-container {
    padding-top: 15px;
}

.scope-box-container .text.txt {
    padding-right: 8%;
}

.content-main .gallery-box-title {
    margin-bottom: var(--space-60);
}

.buttons-center:last-child {
    text-align: center;
    margin-bottom: calc(var(--space-30) + var(--space-40));
}

.gallery + .buttons-center:last-child{
    margin-top: calc(var(--space-30) + var(--space-40));
}

.buttons-center .btn.btn-primary {
    border: 1px solid #000;
    padding: 0 17px;
    width: 180px;
    text-align: center;
}

@media screen and (min-width: 1140px) {
    .buttons-center .btn.btn-primary:hover {
        background: #000;
        color: #fff;
    }
}

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

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

.location-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.875;
    color: #000;
    padding-left: 24px;
    background: url(../images/icons/marker.svg) no-repeat left 6px;
    margin-bottom: 13px;
}

.text.txt table td h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.875;
    color: #000;
    padding-top: 19px;
    margin-bottom: 0;
    padding-bottom: 19px;
}

.location-box {
    padding-bottom: var(--space-40);
}

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

.price-list .text table {
    margin: 0
}

.price-list .text table tr:first-child {
    border: 0 none;
}

.price-list .text table tr:first-child h3 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.price-list .text table tr:first-child td {

}

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

.content-main .gallery-box-container:first-child {
    padding-top: 0;
}

.studio-box-title {
    font-weight: 400;
    font-size: var(--font-30);
    color: #000;
    font-family: var(--second-family), serif;
    padding-left: 40px;
    background: url(../images/icons/marker.svg) no-repeat left 8px/ 21px;
    margin-bottom: var(--space-40);
}

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

.studio-box {
    padding-bottom: var(--space-50);
}

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

.contact-data-box-wrapper {
    max-width: 1360px;
    margin: 0 auto;
    display: flex
;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-data-box {
    width: 44%;
}

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

.contact-data-photo {
    width: 44%;
}

.contact-data-address {
    width: 51.4%;
}

.contact-data-title {
    font-weight: 400;
    font-size: var(--font-20);
    color: #000;
    font-family: var(--second-family), serif;
    padding-left: 40px;
    background: url(../images/icons/marker.svg) no-repeat left 6px;
    margin-bottom: var(--space-40);
}

.contact-data-box:last-child {
    border-right: 0;
}


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

.contact-data-address a {
    padding-left: 40px;
    display: block;
    margin-bottom: 6px;
    font-weight: 300;
    font-size: 16px;
    line-height: 161%;
    color: #000;
}

.map iframe {
    width: 100%;
    height: 403px;
}

.form-box-wrapper-contact {
    display: flex;
    align-items: center;
}

.form-box-container .form-box-wrapper {
    width: 100%;
}

.contact-form-container .form-box-wrapper {
    width: 50%;
}

.form-box-container .form-box-wrapper .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000;
    font-weight: 300;
    text-transform: none;
}

.form-box-wrapper {
    width: 50%;
}

.form-box-img {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.form-box-img img {
    display: block;
    max-width: 86%;
}

.text-box-container article {
    max-width: 1440px;
    margin: 0 auto;
}

.text-box-container .gallery {
    max-width: 1440px;
    margin: 0 auto;
}

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

.footer-box.footer-studio {
    padding-right: 7%;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000;
    font-size: 14px;
    font-family: poppins, sans-serif;
}

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

.location-box .text table {
    margin: 30px 0;
    width: 100%;
}

.content-main .text-box-container + .form-box-container {
    padding-top: 0;
    margin-top: -37px;
}

.form-box-title1 {
    margin-bottom: var(--space-30);
    font-family: var(--second-family), serif;
    font-weight: 400;
    font-size: var(--font-20);
    color: #000;
    padding-top: 6px;
}

.content-main .text-box-container .gallery-box {
    margin-bottom: 40px;
}


.contact-data-box-wrapper:after {
    width: 1px;
    content: '';
    height: 100%;
    border: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 50%;
    top: 0;
}

.form-element.form-element-checkbox {
    margin-bottom: 40px;
}

#contact-form .form-element.form-element-checkbox {
    margin-bottom: 0px;
}

.form-element-option-text a {
    text-decoration: underline;
    font-weight: bold;
}

.form-element-option-text a:hover {
    font-weight: normal;
}

.news-box .course-start {
    display: none;
}

.subpage .galleries-box {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -15px;
}

.content-main .text-box-container + .buttons-center {
    padding-top: calc(var(--space-40))
}

.course-details-container .seo-box-container .container {
    padding-left: 0;
    padding-right: 0;
}

.content-main section + .seo-box-container {
    padding-top: 0;
}

.about-sign.opacityToLeft svg *[stroke] {
    stroke-dasharray: var(--dash-length, 0);
    stroke-dashoffset: var(--dash-length, 0);
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: dash2 2s linear forwards;
}

@keyframes dash2 {
    to {
        stroke-dashoffset: 0;
    }
}


.text-bottom-container + .gallery-box-container {
    padding-top: 0;
}

.gallery-box-title {
    margin-bottom: var(--space-50);
}

.seo-box-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 900px) {
    .seo-box-inner {
        flex-direction: column;
    }
}

.courses-box-container{
    margin-top: var(--space-60);
}

.course-content-inner-wrapper {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
}