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

    --font-70: clamp(30px, 3.9vw, 70px);
    --font-60: clamp(25px, 3.2vw, 60px);
    --font-48: clamp(24px, 2.5vw, 48px);
    --font-40: clamp(22px, 2.1vw, 40px);
    --font-36: clamp(20px, 2.2vw, 36px);
    --font-32: clamp(19px, 1.7vw, 32px);
    --font-30: clamp(18px, 1.6vw, 30px);
    --font-24: clamp(16px, 1.3vw, 24px);
    --font-20: clamp(14px, 1.2vw, 20px);

    --font-18: 1.125rem;
    --font-16: 1rem;
    --font-14: 0.875rem;

    --container-padding: 40px;

    --submenu-gap: 50px;

    /** FORMS **/
    --row-gap: 5px;
    --form-border-radius: 0px;
    --form-background: #fff;
    --form-border-color: rgba(0, 0, 0, 0.1);


    /** SPECIFIC **/
    --color-primary: #13324C;
    --color-secondary: #fff;
    --color-third: #4D6273;
    --color-default: #333;
    --square-radius: 0;
    --square-size: 46px;
}

body {
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.icon-wrapper,
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.icon-wrapper img,
.icon-wrapper svg,
.icon img,
.icon svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.icon *[fill]:not([fill="none"]) {
    fill: currentColor;
}

.icon *[stroke]:not([stroke="none"]) {
    stroke: currentColor;
}


/**
 * BASIC
 */
#container-page {
    overflow: hidden;
}

#page #content {
    flex-grow: 1;
    width: 100%;
    position: relative;
}

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

body.sticky-footer #page {
    margin: 0;
    padding: 0;
    flex-grow: 1;
    min-height: unset;
}

#container-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#page {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#container-page > footer {
    margin-top: auto;
    width: 100%;
}


.error-template {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.error-template h2 {
    font-size: var(--font-60);
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--color-primary);
}

#page #content:has(.error-template) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.error-template .error-details {
    font-size: calc(var(--font-24) - 2px);
}

.error-template .row + .row {
    margin-top: var(--space-25);
}


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

em {
    padding-right: 2px;
}

.text h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: var(--space-25);
}

.text h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.text h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.text h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.text h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}


a {
    color: inherit;
}

a:hover, a:focus {
    color: inherit;
}

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

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


.page-header {
    text-align: center;
    padding: 0;
    margin: var(--space-60) 0;
    border-bottom: none;
}

.slick-slider .slick-slide {
    height: unset;
}

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

/**
 * 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
 */


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

.container-max {
    padding: 0;
    max-width: 1920px;
}

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

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */
.icon-wrapper,
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img,
.icon-wrapper svg,
.icon img,
.icon svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.icon *[fill]:not([fill="none"]) {
    fill: currentColor;
}

.icon *[stroke]:not([stroke="none"]) {
    stroke: currentColor;
}


.icon-mask.icon-mask {
    -webkit-mask-size: contain;
    -mask-size: contain;
    -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');
}

.icon-loupe {
    -webkit-mask-image: url('../images/icons/loupe.svg');
    mask-image: url('../images/icons/loupe.svg');
}

.icon-arrow-left {
    -webkit-mask-image: url('../images/icons/arrow-left.svg');
    mask-image: url('../images/icons/arrow-left.svg');
}

.icon-arrow-right {
    -webkit-mask-image: url('../images/icons/arrow-right.svg');
    mask-image: url('../images/icons/arrow-right.svg');
}

.icon-arrow-down {
    -webkit-mask-image: url('../images/icons/arrow-down.svg');
    mask-image: url('../images/icons/arrow-down.svg');
}

.icon-pin {
    -webkit-mask-image: url('../images/icons/pin.svg');
    mask-image: url('../images/icons/pin.svg');
}


.icon-phone {
    -webkit-mask-image: url('../images/icons/phone.svg');
    mask-image: url('../images/icons/phone.svg');
}

/**
 * THEMES
 */

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

.btn .icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    color: currentColor;
}

.btn .icon.icon-arrow {
    width: 10px;
    height: 10px;
    display: inline-block;
    color: currentColor;
}


.btn-square .icon {
    height: 20px;
    display: block;
    color: currentColor;
    width: 20px;
}

.btn-square {
    width: var(--square-size);
    height: var(--square-size);
    font-size: 18px;
    border-radius: var(--square-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;

}

.btn-md {
    min-height: 46px;
    padding: 5px 10px;
    min-width: 162px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    gap: 10px;
    font-weight: 300;
}

.btn-lg {
    min-height: 46px;
    padding: 5px var(--space-25);
    display: inline-flex;
    font-size: 15px;
    font-weight: 300;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    gap: 10px;
}

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

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

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

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


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

.btn-border-white.active {
    background-color: #fff;
    color: #000;
}

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

.btn-border-black.active {
    background-color: #000;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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


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

.panel {
    box-shadow: none;
}

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

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

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

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

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

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 14px;
    line-height: 30px;
    font-weight: 200;
    letter-spacing: 0.1em;
}

/** 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: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 18px;
}

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

/**
 * HEADER
 */

header .logo {
    transition: width 300ms;
}

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

header.sticky .header-top {
    padding: 10px 0;
}

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    right: 0;
}

.header-inner {
    display: flex;
    align-items: center;
}


#main-menu ul a {
    transition: background-color 300ms, -webkit-text-stroke 300ms;
    padding: 10px;
    position: relative;
    text-transform: uppercase;
    color: #fff;
    display: block;
    font-size: 12px;
    font-weight: 300;
}

#main-menu > ul {
    margin: -10px;
    display: flex;
    align-items: center;

    gap: calc(var(--space-25) + 5px);
}

#main-menu {
    min-width: 62%;
}

.header-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    padding: 0 20px

}


.header-bottom {
    background-color: var(--color-secondary);
}

.header-top {
    transition: padding 300ms;
    padding: var(--space-25) 0;
    background-color: #fff;
}

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

.header-center {
    display: flex;
    align-items: center;
}


.header-right {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.header-right * {
    gap: inherit;
}

.logo {
    float: left;
}

.logo a {
    display: block;
}

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


#main-menu ul li a {
    text-align: center;
}


#main-menu li.active > a, #main-menu li > a:hover {
    -webkit-text-stroke-color: currentColor;
}


#main-menu li {
    position: relative;
    display: inline-block;
    font-size: 1rem;
}

#main-menu li > ul:before {
    content: "";
    display: block;
    background-color: transparent;
    top: calc(var(--submenu-gap) * -1);
    position: absolute;
    height: calc(var(--submenu-gap) + 5px);
    width: 100%;
    left: 0;
}

#main-menu > ul > li > ul {
    margin-top: var(--submenu-gap);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);


}

#main-menu li > ul {
    display: none;
    flex-direction: column;
    max-height: calc(90vh - 130px);
    min-width: 100%;
    text-align: center;
    flex-wrap: wrap;
    gap: 0 !important;
    position: absolute;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
}

#main-menu ul li li.active > a,
#main-menu ul li li a:hover {
    color: #000;
    background-color: var(--color-primary);
}


.header-center #main-menu ul li li a {
    padding: 10px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-transform: none;
    -webkit-text-stroke-width: 0 !important;
    text-align: center;
    white-space: nowrap;
}

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

#main-menu li:hover > ul {
    display: flex;
    background-color: #fff;
}

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

.main-menu-button {
    width: var(--square-size);
    height: var(--square-size);
    border: 1px solid var(--color-primary);
    color: #fff;
    background: var(--color-primary);
    border-radius: var(--square-radius);
    position: relative;
}


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

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

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

}

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

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

.main-menu-button span {
    background-color: currentColor;
    width: 28px;
    height: 2px;
    display: block;
    transition: all 300ms;
    position: absolute;
    inset: 0;
    margin: auto;
}


/*
* 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;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-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-wrapper {
    position: relative;
    z-index: 2;
}

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

.footer-bg:after {
    content: "";
    background-color: var(--color-primary);
    opacity: 0.9;
    inset: 0;
    position: absolute;
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.footer-cols {
    gap: 8%;
    padding: calc(var(--space-50) + var(--space-50)) 0;
    color: #fff;
    display: flex;
}

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

.logo-col {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 20%;
    margin-left: auto;
    flex-direction: column;
    gap: var(--space-40);
    align-items: flex-end;
}

.footer-col-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-25);
    text-transform: uppercase;
}

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


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

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

.footer-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.footer-bar-links:has(li) + .copyright:before {
    content: "|";
    color: #fff;

    margin-right: 10px;
    display: inline-block;
}

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

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

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

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


.copyright-undicom img {
    filter: invert(1);
}

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

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

/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
    background: var(--form-background);
    border: 1px solid var(--form-border-color);
    border-radius: var(--form-border-radius);
}

.shop-quantity-box .qty-down {
    border-top-left-radius: var(--form-border-radius);
    border-bottom-left-radius: var(--form-border-radius);
}

.shop-quantity-box .qty-up {
    border-top-right-radius: var(--form-border-radius);
    border-bottom-right-radius: var(--form-border-radius);
}

.btn-file.btn {
    border-radius: var(--form-border-radius);
}


.form .form-element-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

.form .form-element-name {
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;
}

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

/* KLAUZULE I ZGODY */
.form .form-element-option-text,
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    /* font-size: 12px; */
}

.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: var(--form-border-radius);
    box-shadow: none;
}

/* 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: #000;
    border-radius: 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.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 {
        border-color: var(--color-secondary);
        color: #fff;
        background: var(--color-primary);
    }

    .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;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

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

.select2-dropdown {
    z-index: 100;
    border-radius: var(--form-border-radius);
    overflow: hidden;
}

.select2-selection.form-control {
    padding: 0;
}

.select2-container--below.select2-container--open .select2-selection__rendered {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.select2-container--above.select2-container--open .select2-selection__rendered {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.select2 > input,
.select2 > select,
.select2-selection__rendered {
    height: 46px;
    background: var(--form-background);
    border-color: var(--form-border-color);
    border-radius: var(--form-border-radius);
    text-align: left;
    padding: 0;
}

.select2 > input,
.select2 > select {
    padding: 0 15px;
}

.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%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-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';
    font-size: 16px;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -webkit-transform: translateY(-50%) scaleY(-1);
    -moz-transform: translateY(-50%) scaleY(-1);
    -ms-transform: translateY(-50%) scaleY(-1);
    -o-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;
    }
}

/**
 * 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;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}

.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: var(--space-40) 0 20px;
}

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

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

.breadcrumb > li > a {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 300;
}

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

/**
 * ANIMATABLE ICON
 */


.animIcon::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.animIcon:not(.main-menu-button) span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: gray;
    transition: all .4s ease;
}

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

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

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


/**
 * LOGOTYPES SLIDER
 */
.logotypes-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(var(--space-50) * 2);
}

.logotypes {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: calc(var(--space-50) * 2);
}

.logotypes .section-header {
    margin-top: calc(var(--space-50) * 2);
    margin-bottom: var(--space-60);
}

.logotype {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.logotype-inner {
    width: 100%;
    height: 100%;
    display: flex;
    aspect-ratio: 1.824;
    align-items: center;
    transition: border 300ms, filter 300ms;
    justify-content: center;
    border: 1px solid rgba(19, 50, 76, 0.1);
}

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

.logotype-slider:not(.slick-initialized) .logotype:nth-child(n + 11) {
    display: none !important;
}

.logotype-slider:not(.slick-initialized) .logotype {
    width: 100%;
}

.logotype-slider:not(.slick-initialized) {
    display: flex;
}

.logotype-slider .slick-slide > div {
    display: flex;
}

.logotype-slider {
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: -10px;
}

@media screen and (min-width: 1140px) {
    .logotype-inner[href]:hover {
        border-color: var(--color-primary);
    }
}

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

header .social-list > ul {
    display: flex;
    align-items: center;
    margin: 0;
}

header .social-list > ul > li {
    padding: 0;
}


.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--square-size);
    height: var(--square-size);
    border-radius: var(--square-radius);
    border: 1px solid var(--color-primary);
}

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

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


.social-icon img {
    display: block;
}

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


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

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


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


.langs-menu a {
    text-decoration: none;
    border-left: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transition: color 300ms, background-color 300ms, border-color 300ms;
}

.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;
    justify-content: center;
    align-items: center;
    height: var(--square-size);
    width: var(--square-size);
    border-radius: var(--square-radius);
    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,
.lang .langs-menu-icon {
    display: none;
}

.lang-button {
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 300ms, border-color 300ms, background-color 300ms;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-button .arrow {
    display: none;
}

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

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

    .lang-button:hover {
        background-color: var(--color-secondary);
        color: var(--color-primary);
        border-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);
        -webkit-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);
        -webkit-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 {
    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: 0;
    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: 30px;
}

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

.article-text {
    margin-bottom: 30px;
}

/**
 * GALLERY
 */

.gallery {
    clear: both;
    margin: calc(var(--space-40) + var(--space-50)) 0;
}

.gallery-list {
    margin: calc(var(--space-40) * -1);
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    padding: var(--space-40);
}

.gallery-picture {
    position: relative;
    display: flex;
    width: 100%;
    font-size: 0;
    justify-content: center;
    align-items: center;
}

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

}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(0deg, rgba(19, 50, 76, 0.60) 0%, rgba(19, 50, 76, 0.60) 100%);
    transition: opacity 0.3s;
}

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

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

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


/**
 * PAGINATION
 */
.pagination-wrapper {
    padding: 0;
    margin: calc(var(--space-60) + 10px) auto;
}

.pagination-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-wrapper ul li a {
    font-size: 15px;
    line-height: normal;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    padding: 0;
}

.pagination-wrapper ul li.prev {
    margin-right: var(--space-40);
}

.pagination-wrapper ul li.next {
    margin-left: var(--space-40);
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-wrapper ul li a:not(.btn) {
    color: #fff;
    -webkit-text-stroke: 0.5px transparent;
    transition: all 0.3s;
}

.pagination-wrapper ul li.active a {
    color: #fff;
    -webkit-text-stroke-color: currentColor;
}

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

/* newsletter modal */

.modal-header {
    background: var(--color-secondary);
    color: #fff;
    display: flex;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.modal-title {
    background: var(--color-primary);
    font-weight: 700;
    padding: 0 var(--space-25);
    font-size: 40px;
}

.modal-header button.close {
    border: 1px solid transparent;
    background: transparent;
    text-shadow: none;
    color: #fff;
    transition: 300ms;
    opacity: 1;
    right: 20px;
    margin-top: -20px;
    width: 40px;
    border-radius: 50%;
    height: 40px;
    font-size: 40px;
    font-weight: 400;
}

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

/* custom scroll */
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}


@-moz-document url-prefix() {
    .custom-scrollbar {
        scrollbar-width: thin;
        scrollbar-color: var(--color-primary) transparent;
    }
}


/* mainSlider */

.mainSlider-section {
    position: relative;
}

.mainSlider-nav-wrapper {
    pointer-events: none;
    position: absolute;
    bottom: calc(var(--space-50) * 2);
    z-index: 3;
    display: block;
    width: 100%;
    left: 0;
}

.mainSlider-nav .slick-dots {
    display: flex;
    gap: 10px;
    pointer-events: auto;
    align-items: center;
}

.mainSlider-nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    line-height: 1;
    font-size: 14px;
    cursor: pointer;
    width: 46px;
    height: 46px;
    transition: border 300ms;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mainSlider-nav .slick-active a {
    border-color: #fff;
}

@media screen and (min-width: 1140px) {
    .mainSlider-nav a:hover {
        border-color: rgba(255, 255, 255, 0.5);
    }
}

.mainSlider-nav {
    display: flex;
    justify-content: flex-end;
}

.mainSlider {
    display: flex;
    overflow: hidden;
}

.mainSlider-slide .btn {
    position: absolute;
    bottom: calc(var(--space-50) * 2);
}

.mainSlider-slide {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: unset;
    z-index: 2;
    background: center center /cover;
    display: flex;
    align-items: center;
}

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

.mainSlider-bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(19, 50, 76, 0.6);
}

.mainSlider-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.mainSlider-inner {
    aspect-ratio: 1920/950;
    width: 100%;
    display: flex;
    padding: 100px 0 calc(var(--space-50) * 2 + 50px);

    text-align: center;
    color: #fff;
    align-items: center;

}

.mainSlider-content {
    display: flex;
    gap: var(--space-25);
    z-index: 2;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.mainSlider-title span {
    display: block;
}

.mainSlider-title .line1 {
    font-weight: 100;

}

.mainSlider-title {
    text-transform: uppercase;
    overflow: visible;
    margin-bottom: var(--space-60);
    line-height: 0.95;
    font-size: calc(var(--font-60) * 2 + 8px);
}

.mainSlider-title .line2 {
    font-family: "Playfair Display", serif;
}

.mainSlider-title + .mainSlider-text {
    margin-top: calc(var(--space-40) + var(--space-50));

}

.mainSlider-text {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.mainSlider-inner .btn {
    margin-top: var(--space-25);
}

.mainSlider-slide iframe, .mainSlider-slide video {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920/810;
    object-fit: cover;
}

/* pop up */

.fancybox-modal-wrapper .fancybox-modal {
    max-width: unset;
}

.fancybox-modal-wrapper.fancybox-modal-wrapper {
    padding-top: 40px;
    max-width: min(900px, 100vw - var(--container-padding) * 2);
    min-width: calc(50% - var(--container-padding) * 2);
}

.fancybox-close-small:hover {
    background-color: #000;
    color: var(--color-primary);
}

.fancybox-close-small {
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #000;
    transition: all 300ms;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fancybox-modal-wrapper.fancybox-modal-wrapper:has(.fancybox-modal-image) {
    padding-top: 0;
}

.fancybox-modal-wrapper.fancybox-modal-wrapper:has(.fancybox-modal-video) {
    min-width: unset;
    padding-top: 0;
}

.fancybox-modal-wrapper .fancybox-close-small:after {
    width: unset;
    height: unset;
    color: inherit;
    inset: 0;
    margin: auto;
    background-color: transparent;
}


.mainpage section:not(.mainSlider-section) {
    padding: calc(var(--space-40) * 2) 0;
    min-height: min(100vh, 950px);
    color: #fff;
    padding-bottom: calc(var(--space-60) * 3 - 20px);
}

.mainpage section {
    z-index: 2;
    position: relative;
}

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

.section-bg:after {
    content: "";
    display: block;
    inset: 0;
    background-color: rgba(19, 50, 76, 0.60);;
    position: absolute;
}

.section-bg.full {
    background-color: var(--color-primary);
}

.section-bg {
    position: absolute;
    z-index: -1;
    inset: 0;
}

.section-header .section-header-right {
    margin-left: auto;
}

.section-arrows .btn:first-child {
    margin-left: var(--space-50);
}

.section-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.section-title {
    text-transform: uppercase;
    overflow: visible;
    font-weight: 100;
    color: #fff;
    line-height: 0.95;
    font-size: calc(var(--font-60) * 2 + 8px);
}


.section-title strong {
    font-weight: 400;
    font-family: "Playfair Display", serif;
}

/* main about */
.mainAbout-section {
    position: relative;
}

.mainAbout-section .section-content .texts-wrapper .text + .text {
    width: 44.5%;
    flex-shrink: 0;
    max-width: 450px;
}

.mainAbout-section .section-content .texts-wrapper .text {
    width: 40.5%;
    max-width: 410px;
    flex-grow: 1;
    flex-shrink: 0;
}

.mainAbout-section .section-content .texts-wrapper {
    gap: calc(var(--space-60) * 3);
    margin-bottom: calc(var(--space-25) + 15px);
    display: flex;
    justify-content: space-between;
}

.mainAbout-section .section-content .section-bottom:not(.two) {
    display: flex;
    flex-direction: column;
    width: calc(50% - ((var(--space-60) * 3) / 2));
    margin-left: auto;
    align-items: flex-start;
    gap: var(--space-25);
}

.mainAbout-section .section-content .section-bottom.two > *:first-child {
    width: 47%;
    display: flex;
    margin-bottom: -10px;
    align-items: flex-end;
}

.mainAbout-section .section-content .section-bottom.two > * {
    width: 53%;
}

.mainAbout-section .section-content .section-bottom.two {
    display: flex;
    align-items: flex-end;
    gap: calc(var(--space-60) * 3);

}

.mainAbout-section .section-content {
    width: min(100%, 1032px);
    color: #fff;
}

/* offer */
.offer-item {
    width: 100%;
    flex-shrink: 0;
    padding: 0;
    display: block;
}

.offer-slider {
    overflow: hidden;
    flex-grow: 1;
    display: flex;
}

.offer-item-inner .offer-icon {
    width: 97px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 97px;
    background-color: #033359;
    border-radius: 50%;
    flex-shrink: 0;
    transition: .3s all;
}

.offer-item-inner .offer-name {
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    max-width: 190px;
    color: #fff;
    flex-grow: 1;
}

.offer-item-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    padding: calc(var(--space-50) - 3px);
}

.offerSlider-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.mainOffer-section .section-title strong {
    display: block;
}

.mainOffer-section .mainOffer-content .section-header {
    margin-bottom: calc(var(--space-60) * 2);
}

.mainOffer-section .section-header-right {
    min-height: calc(var(--font-60) * 2 + 8px);
    display: flex;
    align-items: center;
    align-self: flex-start;
}

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

.mainOffer-section .mainOffer-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mainOffer-section {
    display: flex;
    align-items: stretch;
}

/* opinions */
.mainpage section.opinions-section {
    padding-bottom: calc(var(--space-50) * 3);
}

.opinions-section .section-header {
    margin-bottom: calc(var(--space-50) * 2);
}

.opinion-list {
    display: flex;
    overflow: hidden;
    border-right: 1px solid #8c9ba8;
}

.opinion-wrapper {
    margin-right: -1px;
    flex-shrink: 0;
    width: calc(33.3333% + 1px);
}

.opinion-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.opinion-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: var(--space-40);
    width: 126px;
    border-radius: 50%;
}

.opinion-text .text:after,
.opinion-text .text:before {
    content: "“";
}

.opinion-text .text {
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.opinion {
    border-left: 1px solid #8c9ba8;
    height: 100%;
    padding: calc(var(--space-40) + var(--space-50)) calc(var(--space-60) + 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.opinion-name {
    font-size: 16px;
    margin-top: var(--space-25);
    text-transform: uppercase;
    font-weight: 300;
}

.mainNews-section .section-header {
    margin-bottom: calc(var(--space-25) + 10px);
}

.mainNews-section .section-bg:after {
    background-color: rgba(19, 50, 76, 0.9);
}

.news-slider {
    margin: calc(var(--space-25) * -1);
    display: flex;
    overflow: hidden;
}

.blog-item {
    flex-shrink: 0;
    width: 33.3333%;
    padding: var(--space-25);
}

.blog-item .blog-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-item .blog-thumb {
    display: block;
    margin-bottom: var(--space-50);
}

.blog-title {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
}

.blog-item .text a {
    font-weight: 700;
}

.blog-item .text p {
    display: inline;
}

.blog-item .text {
    margin-top: 20px !important;
}

.text-section .section-bg.full {
    background-color: #0F2234;
}

.text-section .section-title {
    text-align: center;
    margin: 0 auto;
}

.text-section .text-wrapper + .text-wrapper {
    margin-top: calc(var(--space-60) + 10px);
}

.text-section .text-title {
    font-size: var(--font-24);
    text-transform: uppercase;
    margin-bottom: var(--space-25);
    font-weight: 700;
}

.logotypes .section-title {
    color: var(--color-primary);
}

/*
O nas
 */
.mainAbout-section {
    padding-bottom: calc(2 * var(--space-50) + 10px + 30px);
}

.mainAbout-section .section-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainAbout-section .section-title {
    text-align: center;
}

.subpage .mainAbout-section .section-header + .section-content {
    margin-top: calc(3 * var(--space-60));
}

.aboutUs-desc-section {
    padding: calc(2 * var(--space-50)) 0 calc(var(--space-40) + var(--space-50));
    background-color: #0F2234;
    color: #fff;
}

.aboutUs-desc-section .section-header {
    justify-content: center;
}

.aboutUs-desc-section .section-header + .text {
    margin-top: calc(var(--space-50) + var(--space-50));
}

.aboutUs-desc-section .text {
    font-size: 15px;
}

/*
Team section
 */
.team-section {
    position: relative;
}

.team-section-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.team-section-bg > img {
    display: block;
    max-width: unset;
    max-height: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-section-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(19, 50, 76, .8);
}

.team-section .section-header {
    justify-content: center;
}

.team-section .section-title {
    text-align: center;
}

.section-header-wrapper {
    margin-bottom: var(--space-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-25);
}

.section-header-wrapper > .section-header {
    margin-bottom: 0;
}

.section-header-wrapper > .text {
    color: #fff;
}

.team-groups {
    margin-bottom: calc(2 * var(--space-50));
}

.team-group + .team-group{
    margin-top: var(--space-60);
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-0.5 * (2 * var(--space-40) + 2px)) calc(-0.5 * (2 * var(--space-40) + 4px));
}

.team-item-wrapper {
    padding: calc(0.5 * (2 * var(--space-40) + 2px)) calc(0.5 * (2 * var(--space-40) + 4px));
    width: 33.33%;
}

.team-item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #fff;
}

.team-item-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
}

.team-item-content .name {
    font-size: var(--font-24);
    line-height: 1.5em;
    font-weight: 700;
}

.team-item-content .teaser {
    font-weight: 300;
}

.team-item-img {
    position: relative;
    display: flex;
    justify-content: center;
}

.team-item-phone {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    background-color: var(--color-third);
    min-width: 50px;
    min-height: 50px;
    border-radius: 25px;
    padding: 17px;
    border: 1px solid transparent;
    transition: .3s all;
}

.team-item-phone .icon {
    width: 17px;
    height: 17px;
}

.team-item-phone .caption {
    font-size: 14px;
    line-height: 1;
    max-width: 0px;
    padding-left: 0;
    opacity: 0;
    transition: max-width .3s .1s, opacity .2s, padding-left .3s .1s;
    pointer-events: none;
    white-space: nowrap;
}

@media screen and (min-width: 1140px) {
    .team-item:hover .team-item-phone .caption {
        transition: max-width .35s, opacity .2s .15s, padding-left .3s;
        max-width: 130px;
        opacity: 1;
        pointer-events: initial;
        padding-left: 15px;
    }

    .team-item-phone:hover {
        background-color: var(--color-primary);
        border-color: #fff;
    }
}

.offer-section {
    position: relative;
    padding-bottom: calc(3 * var(--space-50) + 15px);
}

.offer-section .section-bg:before {
    background-color: rgba(19, 50, 76, .6);
}

.offer-section .section-header > .text {
    max-width: 540px;
    font-size: 15px;
    color: #fff;
    font-weight: 300;
}

.offer-list {
    display: flex;
    flex-wrap: wrap;
}

.offer-item-wrapper {
    width: 16.6666%;
    position: relative;
}

.offer-item-corner {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 27px;
    max-height: 27px;
    transition: .3s all;
    pointer-events: none;
}

.offer-item-corner-1 {
    top: -1px;
    left: 0;
    border-left: 1px solid var(--color-third);
    border-top: 1px solid var(--color-third);
}

.offer-item-corner-2 {
    top: -1px;
    right: -1px;
    border-right: 1px solid var(--color-third);
    border-top: 1px solid var(--color-third);
}

.offer-item-corner-3 {
    bottom: 0;
    left: 0;
    border-left: 1px solid var(--color-third);
    border-bottom: 1px solid var(--color-third);
}

.offer-item-corner-4 {
    bottom: 0;
    right: -1px;
    border-right: 1px solid var(--color-third);
    border-bottom: 1px solid var(--color-third);
}

@media screen and (min-width: 1140px) {
    .offer-item-wrapper:hover .offer-item-corner-1,
    .offer-item-wrapper:hover .offer-item-corner-4 {
        max-width: 35%;
    }

    .offer-item-wrapper:hover .offer-item-corner-2,
    .offer-item-wrapper:hover .offer-item-corner-3 {
        max-height: 35%;
    }

    .offer-item-wrapper:hover .offer-item-inner .offer-icon {
        transform: translateY(-10px);
    }
}

.offer-section .section-header + .offer-list-wrapper {
    margin-top: calc(3 * var(--space-50));
}


.offer-section .section-header {
    margin-top: var(--space-40);
    gap: var(--space-40);
}

/*
Offer view
 */
.offer-view-section {
    position: relative;
    padding-bottom: calc(2 * var(--space-50));
    min-height: 950px;
}

.return-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutUs-desc-section * + .return-btn-wrapper {
    margin-top: calc(var(--space-50) + var(--space-25));
}

.offer-view-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #fff;
    gap: var(--space-50);
}

.offer-top-left {
    display: flex;
    gap: var(--space-50);
    width: 54%;
    flex-shrink: 0;
    align-items: center;
}

.offer-view-top .section-title {
    font-size: calc(var(--font-60) * 1 + 4px);
}

.offer-view-top {
    margin-top: var(--space-60);
}

.offer-view-img {
    flex-shrink: 0;
    width: 33.4%;
    min-width: 50px;
    aspect-ratio: 1;
    background-color: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.offer-top-right {
    max-width: 534px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: calc(var(--space-40) + 3px);
    margin-top: calc(var(--space-40) + 3px);
}

.offer-top-right .text {
    font-size: 15px;
    font-weight: 300;
}

.contact-form-container .btn-return-wrapper {
    margin-bottom: 0;
    margin-top: calc(var(--space-25) + 10px);
}

.map iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
    min-height: 700px;
}

.logotype-inner {
    transition: all 0.3s;
    background: #fff;
    border: 1px solid transparent;
}

@media screen and (min-width: 1140px) {
    .logotype-inner:hover {
        border: 1px solid var(--color-primary)
    }
}

.files-section {
    position: relative;
}

.files-section .section-header {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.files-list-wrapper {
    margin: calc(-0.5 * var(--space-40));
    margin-bottom: calc(var(--space-60) * 2);
}

.files-list {
    display: flex;
    flex-wrap: wrap;
}

.file-item-wrapper {
    padding: calc(0.5 * var(--space-40));
    width: 20%;
}

a.file-item {
    border-radius: 50%;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    overflow: hidden;
    color: #fff;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-40);
    flex-direction: column;
    gap: 13px;
}

.file-item:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #043359;
    opacity: .5;
    z-index: -1;
    transition: .3s all;
}

@media screen and (min-width: 1140px) {
    a.file-item:hover:before {
        opacity: 1;
    }
}

.file-item .icon {
    flex-shrink: 0;
}

.social-icon svg {
    fill: #fff;
}

.square-files {
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}


@media screen and (min-width: 1140px) {
    .square-files:hover {
        color: var(--color-primary);
        background: #fff;
    }
}

.mainAbout-section .section-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    margin-bottom: calc(var(--space-60) * 3 - 10px);
}

.mainAbout-section .section-header:before {
    content: '';
}

.social-list ul {
    display: grid;
    margin: 0;
    grid-template-columns: 46px 46px 46px;
    gap: 10px;
}

.social-list > ul > li {
    padding: 0;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-color: rgba(255, 255, 255, 0.1);
}

.social-list {
    display: flex;
    justify-content: end;
}


@media screen and (min-width: 1140px) {
    .social-icon:hover {
        background: #fff;
        color: var(--color-primary);
    }

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

.mainOffer-content .section-title {
    text-align: center;
}

.files-name {
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.mainOffer-content .section-header {
    justify-content: center;
}

.mainOffer-section .section-title strong {
    display: unset;
}

.grid-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
}

.grid-header::before {
    content: '';
}

time {
    font-size: 14px;
}


.logotypes-main .logotype {
    width: 14.2857%;
}

.logotypes-slider-container {
    position: relative;
    max-width: 1410px;
    margin: 0 auto;
}

.logotypes-arrow-left {
    position: absolute;
    left: -8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.logotypes-arrow-right {
    position: absolute;
    z-index: 3;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (min-width: 1140px) {
    .logotypes-main .logotype-inner:hover {
        border-color: transparent;
    }
}


.text-section .section-bg:after {
    display: none;
}

.copyright-undicom, .copyright-undicom a {
    display: flex;
    align-items: center;
}

.copyright-undicom a img {
    margin-right: 4px;
}

.people-button-wrapper {
    display: flex;
    justify-content: center;
    margin: calc(var(--space-50) * 2) 0;
    gap: 20px;
}

.full-text {
    overflow: hidden;
    display: none;
}

.text-box {
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 15px;
}

.full-text p {
    display: inline;
}

.text-inline-toggle:hover {
    cursor: pointer;
    text-decoration: underline;
}

.people-button-wrapper .btn .icon {
    flex-shrink: 0;
}

.people-button-wrapper .btn {
    width: 276px;
}

.offer-icon img {
    max-width: 44px;
    max-height: 44px;
}

.logotype-list .logotype{
    width: 100%;
}


.team-section .search-box {
    width: 100%;
    border: 1px solid #fff;
    padding: 20px var(--space-50);
}


.team-section .search-box .form-control{
    background-color: #fff;
    margin-bottom: 0;
}


.team-section .search-box .form-element-name{
    color: #fff;
}

.team-section .select2-container .select2-selection--single{
    height: 46px;
}

.filters-form .btn-white{
    background-color: #fff;
    border: 1px solid #fff !important;
    color: var(--color-primary);
}

.filters-form .btn-white:hover {
    background-color: transparent !important;
}

.filters-form .btn-wrapper{
    display: flex;
    gap: 15px;
    width: 33.33333333%;
    padding-right: 8px;
}
.filters-form .btn-wrapper .btn{
    min-width: initial;
    width: 100%;
}


.google-avg-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.google-avg-rating .opinion-rating {
    font-size: 28px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f3bd00;
}

.google-avg-rating .opinion-rating > * {
    width: 31px;
    height: 31px;
}

.opinion-avg {
    display: flex;
    align-items: center;
    margin-right: 10px;
    color: var(--color-primary);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 0.8em;
}

.google-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 120px;
}

.google-image img {
    display: block;
    max-height: 100%;
    max-width: 100%;
}
.opinion-count {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    margin-top: 12px;
}


.opinion-item {
    padding: 15px;
    height: 100%;
}

.opinion-box {
    margin: -15px;
}

.opinion-item-inner {
    position: relative;
    height: 100%;
    padding: calc(var(--space-25) - 3px);
    border: 1px solid var(--color-primary);
}

.opinion-item-inner::before {
    /*content: '';*/
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    pointer-events: none;
    transition: all 0.4s;
}

.opinion-box .slick-list,
.opinion-box .slick-track {
    display: flex;
    width: 100%;
}

.opinion-author {
    display: flex;
    margin-bottom: 10px;
}

.author-image {
    width: 48px;
    height: 48px;
    margin-right: 10px;
}

.opinion-date {
    font-size: 14px;
}

.opinion-item-inner .fa-star:before {
    color: var(--link-hover);
    font-size: 20px;
}

.opinion-item-inner .fa-fw {
    width: 1.2em;
}

.opinion-item-bottom .text {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.opinion-box .slick-autoplay-toggle-button {
    display: none;
}

.opinion-box-container{
    padding: var(--space-50) 0;
}

.opinion-box-container .section-title {
    color: var(--color-primary);
}

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

.team-group-title {
    font-size: var(--font-24);
    font-weight: 700;
    margin-bottom: var(--space-40);
    text-transform: uppercase;
    color: #fff;
}

.container-custom {
    padding-left: 120px;
    padding-right: 120px;
}

.slider-arrows .prev {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    z-index: 1;
}

.slider-arrows .next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    z-index: 1;
}

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

.opinion-box-wrapper .slider-arrows .prev {
    left: -74px;
}

.opinion-box-wrapper .slider-arrows .next {
    right: -74px;
}

.team-item-hover-wrapper .team-item-shadow{
    background-color: var(--color-primary);
    position: fixed;
    z-index: -1;
    inset: 0;
    opacity: 0.5
}
.team-item-hover-wrapper{
    position: fixed;
    inset: 0;
    opacity: 0;
    display: flex;
    padding: 60px 0;
    align-items: center;
    justify-content: center;
    z-index: 100;
    pointer-events: none;
    transition: all 0.4s;
    margin: auto;
}
.team-item-hover-wrapper.active{
    opacity: 1;
    pointer-events: auto;
}
.team-item-hover .team-item-img{
    max-width: 270px;
    margin: 0 auto;
}
.team-item-hover .team-item-text{
    max-width: 800px;
}
.team-item-hover-content{
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-height: 100%;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: -10px;
}
.team-item-hover .btn span:nth-child(2){
    transform: rotate(45deg);
}
.team-item-hover .btn span{
    position: absolute;
    transform: rotate(-45deg);
    inset: 0;
    height: 2px;
    margin: auto;
    background-color: currentColor;
    width: 26px;
}
.team-item-hover .btn{
    position: absolute;
    top: -1px;
    right: -1px;
    width: 40px;
    border: 1px solid #fff;
    height: 40px;

}
.team-item-hover{
    margin: 20px;
    max-height: 80%;
    position: relative;
    display: flex;
    background-color: var(--color-primary);
    padding: var(--space-25);
    padding-top: 50px;


    border: 1px solid #fff;

    color: #fff;
}

/* custom scroll */
.team-item-hover-content::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 2px;
}

.team-item-hover-content::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}


@-moz-document url-prefix() {
    .team-item-hover-content {
        scrollbar-width: thin;
        scrollbar-color: #fff transparent;
    }
}
