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

    --font-80: clamp(40px, 4.3vw, 80px);
    --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(16px, 1.2vw, 20px);

    --container-padding: 40px;

    --row-gap: 4px;

    /** SPECIFIC **/
    --color-primary: #283D33;
    --color-secondary: #00ff00;
    --color-default: #E6D4BE;

    --font-primary: "Outfit", sans-serif;
}

body {
    color: var(--color-primary);
    font-family: var(--font-primary);
}

/**
 * BASIC
 */


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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: #000000;
}

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


/* Custom scroll */
.blog-section ::-webkit-scrollbar {
    width: 6px;
}

.blog-section ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.blog-section ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--color-primary);
    max-height: 10px;
}


/**
 * 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-extra-small {
    max-width: 1170px;
}

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


/**
 * THEMES
 */

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

.btn-secondary.active {
    background-color: transparent;
    color: #000;
}

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

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

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

    .langs-menu-short:hover {
        background-color: var(--color-default);
    }

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

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

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


    .our-offer-section .tile:hover button:not([disabled]),
    .our-offer-section .tile:hover button:not([disabled]).active {
        background-color: var(--color-default);
        border-color: transparent;
        color: #000;
    }

}

/**
 * BUTTONS
 */

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


.btn-lg {
    height: 46px;
    padding: 0 calc(var(--space-25) + 10px);
    border-radius: 30px;
    text-align: justify;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

/**
 * 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: 16px;
    line-height: 30px;
}

.text h2 {
    font-size: calc(var(--font-24) + 2px);
    font-weight: 700;
}

.text h3 {
    font-size: calc(var(--font-24) - 2px);
    font-weight: 700;
}

.text h4 {
    font-size: 20px;
    font-weight: 700;
}

.text h5 {
    font-size: 18px;
    font-weight: 700;
}

.text h6 {
    font-size: 16px;
    font-weight: 700;
}


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

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

/** 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 {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
}

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

.logo {
    float: left;
}

.logo a {
    display: block;
}

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

#main-menu ul {
    font-size: 0;
}

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

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

#main-menu li > ul > li {
    width: 100%;
}

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


#main-menu li:hover > ul {
    display: block;
    margin-top: 30px;
}

#main-menu li > ul:before {
    content: "";
    display: block;
    background-color: transparent;
    top: -30px;
    position: absolute;
    height: 35px;
    width: 100%;
    left: 0;
}

#main-menu ul li li a {
    padding: 16px 20px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    -webkit-text-stroke-width: 0 !important;
    text-align: center;
    background-color: var(--color-primary);
    color: #fff;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

}

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


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

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

.mainsearch.rwdPanel {
    display: block;
}


.main-slider .container {
    height: 100%;
}

.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;
    -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 BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    background-color: #21312A;
    font-size: 14px;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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


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

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

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

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
}

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

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    /* font-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: 6px;
    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: #e10121;
    border-radius: 0 6px 6px 0;
    background-color: transparent;
    border-color: var(--color-default);
    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: transparent;
        color: var(--color-default);
    }

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

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

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

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

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

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

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

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

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -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: 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);
    -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);
}

/* 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%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-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%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * LOGOTYPES SLIDER
 */
.logotypes {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 156px;
    padding: 28px 0;
}

.logotypes .logotypes-title {
    float: left;
    padding-right: 30px;
    font-size: 22px;
    line-height: 100px;
    vertical-align: middle;
}

.logotypes-slider-container {
    height: 100px;
}

.logotype-slider {

}

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

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
}


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

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #f0f;
}

.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: transparent;
    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) {


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

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

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

/**
 * 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;
    border-radius: 20px;
    aspect-ratio: 447/287;
    max-height: 288px;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
    border-radius: 20px;
}

.gallery-picture > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.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;
    border-radius: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s;
}

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


.section-title {
    color: var(--color-primary);
    text-align: center;
    font-size: calc(var(--font-48) - 3px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

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


.under-header-section .slick-arrow, .under-header-section .slick-dots {
    display: none !important;
}


.main-slider-slide {
    aspect-ratio: 1920/870;
    position: relative;
    min-height: 870px;
}


.background.youtube {
    aspect-ratio: 16/9;
}

.under-header-section .background {
    position: absolute;
    z-index: -1;
    inset: 0;
}

.under-header-section .background iframe {
    position: absolute;
    z-index: -1;

    width: 300%;
    height: 100%;
    margin-left: -100%;
    pointer-events: none;

}

.under-header-section .background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.under-header-section .background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.under-header-section .wrapper {
    display: flex;
    padding: calc(var(--space-60) * 3) 0;
    gap: calc(var(--space-60) * 5 + var(--space-25));
    justify-content: space-between;
    height: 100%;
    align-self: center;
}

.under-header-section .section-title {
    text-align: unset;
    color: #FFF;
    font-size: var(--font-80);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    max-width: 620px;
    margin-bottom: calc(var(--space-25) + 5px);
}

.under-header-section .section-img {
    max-width: 500px;
    margin-right: calc(var(--space-60) * 3 + var(--space-25));
    display: flex;
    align-items: center;
}

.under-header-section .left-wrapper {
    align-self: center;
}

#main-menu .fa.fa-angle-down {
    margin-left: calc(var(--space-25) - 5px);
}

.why-us-section .section-title {
    text-align: unset;
    font-weight: 400;
}

.section-subtitle-xl {
    font-size: calc(var(--font-80) + 36px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: calc(1em + 4px);
}

.why-us-section {
    margin-bottom: var(--space-40);
    margin-top: var(--space-50);
    position: relative;
}

.why-us-section .tile .tile-text {
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.7333em;
}

.why-us-section .tile .tile-title {
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3em;
    text-transform: uppercase;
    margin-bottom: var(--space-25);
    letter-spacing: 0.05em;
}

.why-us-section .left-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.why-us-section .section-img {
    margin-left: min(calc((((1920px - 1720px + 2 * var(--container-padding)) / 2)) * -1), calc(var(--container-padding) * -1));;
}

.why-us-section .right-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: calc(var(--space-50) * 3 + 10px);
    row-gap: var(--space-60);
    width: 50%;
    margin-top: var(--space-50);
    margin-bottom: calc(var(--space-50) + var(--space-25) - 5px);
}

.why-us-section .tile-text-wrapper {
    display: flex;
    flex-direction: column;
}

.our-offer-section .tile-img img {
    max-height: 100%;
}

.our-offer-section .tile-left {
    margin-right: 10px;
}

.our-offer-section .tile-img {
    display: flex;
    justify-content: end;
    align-items: center;
}

.why-us-section .icon {
    min-height: 115px;
}

.why-us-section .wrapper {
    display: flex;
}


.our-offer-section {
    padding: calc(var(--space-40) * 2) 0;
    background-color: var(--color-primary);
}

.our-offer-section.without-bg {
    padding: 0;
    margin: 0 0 calc(var(--space-40) * 2) 0;
}

.our-offer-section .section-title {
    color: #FFF;
    margin-bottom: calc(var(--space-40) * 2);
}

.our-offer-section .wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--space-25) - 10px);
    grid-auto-rows: 1fr;
}

.our-offer-section .tile {
    position: relative;
    border-radius: 30px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding: calc(var(--space-25) - 5px)  var(--space-40) calc(var(--space-25) - 5px) var(--space-40);
}

.our-offer-section .tile-backgorund {
    position: absolute;
    inset: 0;
}

.our-offer-section .tile-backgorund img {
    border-radius: 30px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.our-offer-section .tile-left {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-60);
    width: 50%;
}

.our-offer-section .tile-title {
    font-size: calc(var(--font-36) - 4px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.3s;
}

.subpage .our-offer-section .tile.has-bg {
    border-color: transparent;
}

.our-offer-section .tile.has-bg .tile-title {
    color: #fff;
}

.our-offer-section .tile.has-bg .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.our-offer-section .tile {
    color: var(--color-primary);
}

.our-offer-section .tile.has-bg {
    background: transparent;
    color: #fff;
}


.processes-section {
    margin-top: calc(var(--space-50) + var(--space-25) - 5px);
    margin-bottom: calc(var(--space-50) * 2 - 10px);
    position: relative;
}

.processes-section .icon img {
    max-width: 100%;
    width: 70px;
}

.processes-section .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/processes-background.webp') center no-repeat;
    width: 265px;
    height: 265px;
    background-size: contain;
}

.processes-section .section-title {
    margin-bottom: calc(var(--space-50) * 2 - 10px);
}

.processes-section .tile {
    display: flex;
    flex-direction: column;
    gap: var(--space-60);
    align-items: center;
    width: 25%;
    padding: 0 calc(var(--space-40));
    min-height: 600px;
}

.processes-section .wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--space-40) * -1);
}

.processes-section .tile-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
    max-width: 83%;
}

.processes-section .tile-title {
    text-align: center;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.processes-section .tile-text {
    color: #000;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.7333em;
}

.processes-section .tile:nth-child(even) {
    flex-direction: column-reverse;
}

.processes-section .tile:nth-child(even) .tile-text-wrapper {
    flex-direction: column-reverse;
}

.processes-section .tile:nth-child(even) .icon {
    transform: scaleY(-1);
}

.processes-section .tile:nth-child(even) .icon img {
    transform: scaleY(-1);
}


.processes-bg-section {
    padding-top: calc(var(--space-40) * 2);
    padding-bottom: calc(var(--space-50) * 2);
    background: var(--color-primary);
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -2;
}

.background-decoration {
    position: absolute;
    width: 100%;
    filter: grayscale(1);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    top: 0;
}

.background-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.background-decoration.why-us-section-decoration {
    top: calc(var(--space-50) * -1);
    height: calc(100% + var(--space-40) + var(--space-50));
}

.background-decoration.why-us-section-decoration img {
    object-fit: cover;
}

.background-decoration.processes-section-decoration {
    top: calc((var(--space-50) + var(--space-25) - 5px) * -1);
    height: calc(100% + (var(--space-50) + var(--space-25) - 5px) + var(--space-50) * 2 - 10px);
    left: -16px;
}

.background-decoration.processes-section-decoration img {
    object-fit: cover;
}

.background-decoration.certificates-section-decoration {
    top: calc((var(--space-50) * 2) * -1);
    height: calc(100% + calc(var(--space-50) * 4));
}

.background-decoration.certificates-section-decoration img {
    object-fit: cover;
}

.background-decoration.processesPage-section-decoration {
    top: calc((var(--space-50) + var(--space-40) + var(--space-50) + 44px) * -1);
    height: calc(100% + var(--space-50) + var(--space-40) + var(--space-50) + (var(--space-50) * 2) + 44px);
    opacity: 1;
    right: -225px;
}

.background-decoration.processesPage-section-decoration img {
    object-fit: cover;
}


.processes-bg-section .section-title {
    color: #fff;
    margin-bottom: calc(var(--space-50) * 2);
}

.processes-bg-section .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: calc((var(--space-50) + var(--space-25)) * -1);
}

.processes-bg-section .tile {
    padding: calc(var(--space-50) + var(--space-25));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-50);
    width: 25%;
    position: relative;
}

.processes-bg-section .icon-after {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}

.processes-bg-section .icon-after::after {
    display: flex;
    align-items: center;
    background-position: center;
    content: '';
    background-image: url("../images/icons/arrow-right-after.svg");
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    right: -25%;
    width: 32px;
    height: 55px;
    transform: translate(50%, -50%);
}


.processes-bg-section .tile:nth-child(4n+4) .icon-after::after {
    display: none;
}

.processes-bg-section .tile:last-child::after {
    display: none;
}

.processes-bg-section .tile:last-child .icon-after::after {
    display: none;
}

.processes-bg-section .icon {
    background: #fff;
    width: 222px;
    height: 222px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.processes-bg-section .tile-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
}

.processes-bg-section .tile-title {
    color: #FFF;
    text-align: center;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.processes-bg-section .tile-text {
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.7333em;
}


.certificates-section {
    margin: calc(var(--space-50) * 2) 0;
    position: relative;
}

.certificates-section .certificates {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: calc(var(--space-40) * 2);
}

.certificates-section .certificates img {
    opacity: 0.5;
}

.certificates-section .section-title {
    text-align: unset;
    font-weight: unset;
}

.certificates-section .wrapper {
    width: 58%;
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-50) * 2);
}

.certificates-section .background {
    position: absolute;
    z-index: -1;
    bottom: calc((var(--space-50) * 2) * -1 - 5px);
    right: 0;
    width: 46%;
}


.working-with-section {
    padding: calc(var(--space-60) * 2 + 10px) 0;
    background: var(--color-primary);
}

.working-with-section {
    display: flex;
    gap: calc(var(--space-50) * 2);
}

.working-with-section .section-title {
    color: #fff;
    text-align: unset;
    align-self: center;
    width: 34%;
}

.working-with-section .section-title p {
    max-width: 410px;
}

.working-with-section .text {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.working-with-section .before-list {
    display: flex;
    align-items: center;
    margin-right: calc(var(--space-25) - 5px);
    flex-shrink: 0;
}

.working-with-section .list-item {
    display: flex;
    align-items: center;
}

.working-with-section .right-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: calc(var(--space-40) * 2 - 1px);
    width: 66%;
    row-gap: calc(var(--space-25) - 5px);
}

.working-with-section .wrapper {
    display: flex;
    justify-content: space-between;
}


.mini-slider-section {
    margin-top: calc(var(--space-50) + var(--space-25));
    margin-bottom: calc(var(--space-50) * 2 - 10px);
}

.mini-slider-section .slick-dots button {
    padding: 0;
    font-size: 0;
    width: 13px;
    height: 13px;
    background: transparent;
    border: 1px solid var(--color-primary);
    opacity: 1 !important;
    margin: 0 12px !important;
    transition: background-color 300ms;
    border-radius: 100%;
}

.mini-slider-section .slick-dots li button:hover,
.mini-slider-section .slick-dots li.slick-active button {
    background-color: var(--color-primary);
}

.mini-slider-section .slick-arrow, .slick-autoplay-toggle-button {
    display: none !important;
}

.mini-slider-section .slick-track {
    display: flex;
    align-items: center;
}

.mini-slider-section .slick-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.mini-slider-section .section-title {
    margin-bottom: calc(var(--space-60) * 2 - 10px);
}

.mini-slider-section .slick-track {
    margin-bottom: calc(var(--space-60) * 2 - 10px);
}

.page-title {
    text-align: center;
    font-size: calc(var(--font-36) - 1px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

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

.about-us-image-section {
    margin: var(--space-40) 0;
}

.about-us-image-section .img {
    aspect-ratio: 1364/406;
    max-height: 408px;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: calc(var(--space-60) * 2 - 10px);
}

.about-us-image-section .img a {
    border-radius: 30px;
    position: absolute;
    inset: 0;
    z-index: -1;
}

.about-us-image-section .img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-us-image-section .text {
    color: #FFF;
    font-size: calc(var(--font-24) + 2px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    max-width: 450px;
}

.about-us-image-section .title {
    color: #FFF;
    font-size: var(--font-80);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}


.about-us-text-section {
    margin: var(--space-40);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.about-us-text-section .text h2 {
    color: #000;
    text-align: center;
    font-size: calc(var(--font-24) + 2px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.5384em;
    margin-bottom: var(--space-25);
    max-width: 812px;
    display: flex;
    justify-content: center;
}

.about-us-text-section .text {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.875em;
    max-width: 1085px;
}


.certificates-ex-section {
    padding: calc(var(--space-40) * 2) 0;
    background: #f5f5f5;
}

.certificates-ex-section .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: calc(var(--space-50) * 4);
    row-gap: calc(var(--space-50) + var(--space-25));
}

.certificates-ex-section .img {
    min-height: 140px;
    margin-bottom: var(--space-50);
}

.certificates-ex-section .text {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.875em;
}

.certificates-ex-section .tile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certificates-ex-section .section-title {
    margin-bottom: var(--space-50);
}

.subpage .our-offer-section {
    background: transparent;
}

.subpage .our-offer-section .tile {
    border: 1px solid rgba(0, 0, 0, 0.15);
}


.offerView-img-tiles-section {
    margin-top: calc(var(--space-50) + var(--space-40));
    margin-bottom: calc(var(--space-60) + var(--space-25))
}

.offerView-img-tiles-section .wrapper {
    gap: calc(var(--space-40) * 2);
    display: flex;
}

.offerView-img-tiles-section .left-wrapper {
    width: 66%;
    display: flex;
    align-items: center;
}

.offerView-img-tiles-section .right-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) - 5px);
    justify-content: center;
    align-items: end;
}

.offerView-img-tiles-section .tile {
    width: 100%;
    display: flex;
    background: #f5f5f5;
    gap: var(--space-25);
    border-radius: 20px;
    align-items: center;
    padding: calc(var(--space-25) - 2px) 10px calc(var(--space-25) - 2px) calc(var(--space-25) + 5px);
}

.offerView-img-tiles-section .icon {
    flex-shrink: 0;
}

.offerView-img-tiles-section .tile-title {
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.offerView-img-tiles-section .text {
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.7333em;
}


.offerView-text-section {
    margin-top: calc(var(--space-60) + var(--space-25));
    margin-bottom: calc(var(--space-50) * 2 - 5px);
}

.offerView-text-section .text, .cutting-text-section .text, .cutting-textsm-section .text {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.875em;
}


.cutting-textsm-section .text {
    text-align: center;
}

.cutting-textsm-section .text h2 {
    color: #000;
    text-align: center;
    font-size: calc(var(--font-24) + 2px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.5385em;
    margin-bottom: var(--space-25);
}

.cutting-textsm-section {
    margin: var(--space-40) 0;
}


.offerView-config-section {
    background: #f5f5f5;
    padding: calc(var(--space-60) + 10px) 0 calc(var(--space-40) * 2) 0;
}

.offerView-config-section .section-title {
    font-size: calc(var(--font-24) + 2px);
    margin-bottom: calc(var(--space-50) + var(--space-25));
}

.offerView-config-section .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/config-background.webp') center no-repeat;
    width: 229px;
    height: 229px;
    background-size: contain;
}

.offerView-config-section .tile-text {
    color: #000;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.7333em;
}

.offerView-config-section .tile-title {
    text-align: center;
    font-size: calc(var(--font-20) - 1px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3684em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: var(--space-25);
}

.offerView-config-section .wrapper {
    display: flex;
    justify-content: center;
    justify-content: center;
    flex-wrap: wrap;
 margin: -20px calc(-1 * (calc(var(--space-50) + 5px)));
}

.offerView-config-section .tile {
    display: flex;
    width: 25%;
    flex-direction: column;
    align-items: center;
    gap: var(--space-50);
    padding: 20px calc(var(--space-50) + 5px);
}


.offerView-gallery-section .section-title {
    font-size: calc(var(--font-24) + 2px);
    margin-bottom: calc(var(--space-25) + var(--space-50));
}

.offerView-gallery-section {
    margin-top: calc(var(--space-25) + var(--space-50));
    margin-bottom: var(--space-60);
}


.button-section {
    margin: var(--space-60) 0;
}

.button-section .button-wrapper {
    display: flex;
    justify-content: center;
}


.processesPage-section .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/processesPage-background.webp') center no-repeat;
    width: 344px;
    background-size: contain;
    height: 344px;
    flex-shrink: 0;
}

.processesPage-section .wrapper {
    display: flex;
    flex-direction: column;
}

.processesPage-section .tile {
    display: flex;
    gap: calc(var(--space-25) + var(--space-50));
    align-items: center;
}

.processesPage-section .tile-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.processesPage-section .tile-title {
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-25);
}

.processesPage-section .tile-text {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.625em;
    max-width: 400px;
}

.processesPage-section .tile:nth-child(even) {
    flex-direction: row-reverse;
    align-items: center;
}

.processesPage-section .tile:nth-child(even) .tile-text,
.processesPage-section .tile:nth-child(even) .tile-title {
    text-align: right;
}

.processesPage-section .tile:nth-child(even) .icon {
    transform: scaleX(-1);
}

.processesPage-section .tile:nth-child(even) .icon img {
    transform: scaleX(-1);
}

.processesPage-section {
    margin-top: calc(var(--space-50) + var(--space-40));
    margin-bottom: calc(var(--space-50) * 2);
    position: relative;
}


.cutting-gallery-section {
    margin: var(--space-40) 0;
}

.cutting-text-section {
    margin: var(--space-40) 0;
}

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

.header-inner {
    display: flex;
    min-height: 80px;

    justify-content: space-between;
    padding: 15px 0;
}

#main-menu ul {
    display: flex;
    align-items: center;
    height: 100%;
    gap: var(--space-60);
}

#main-menu ul li a {
    color: #000;
    text-align: justify;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    -webkit-text-stroke: 1px transparent;
    transition: background-color 300ms, -webkit-text-stroke 300ms;
}

#main-menu > ul > li.active > a {
    color: #283D33;
    text-align: justify;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.langs-menu-icon {
    display: none !important;
}

.lang-button {
    border: 0;
}

.langs-menu {
    margin: 0;
    margin-right: -12px;

}

.langs-menu-short {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    background: var(--color-primary);
    color: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.lang span {
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.fa-angle-down:before {
    font-size: 15px;
    color: #000;
    content: "\f107";
}

.lang {
    padding: 25px 12px;
}

.footer-contact {
    background: var(--color-primary);
    padding-top: calc(var(--space-50) + var(--space-40) - 5px);
    padding-bottom: calc(var(--space-50) + var(--space-40));
}

footer {
    background: #21312A;
}

.footer-contact-inner {
    display: flex;
}

.footer-contact-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-right: var(--space-50);
    justify-content: center;
}

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

.contact-title {
    color: #FFF;
    font-size: var(--font-30);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: var(--space-40);
}

.form .form-element-name {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
}

.form .form-required-mark {
    color: var(--color-default);
}

.form-control, .form .form-control {
    border-radius: 20px;
}

.form-control {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    border: 0;
}

.form-group-lg .form-control {
    padding: 13px 30px;
}

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

.form-element-option-text {
    color: #FFF;
    text-align: justify;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6923em;
    text-transform: capitalize;
}

.captcha-image img {
    margin: 0 auto;
}

.form .captcha-image-wrapper, .form .form-group .captcha-image-wrapper {
    border-radius: 20px;
}

.form button.captcha-refresh {
    color: var(--color-primary);
    border-radius: 0 20px 20px 0;
}

.row-flex-center {
    display: flex;
    justify-content: center;
}

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


.form .checkboxradio-container [class^="icheckbox"] {
    margin-top: 2px;
}


.contact-line1 {
    color: #FFF;
    font-size: var(--font-30);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.contact-line2 {
    color: #FFF;
    font-size: var(--font-60);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.contact-line3 {
    color: #FFF;
    font-size: var(--font-30);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: var(--space-60);
}

.footer-contact-inner .caption, .contact-wrapper .caption {
    color: #FFF;
    text-align: justify;
    font-size: calc(var(--font-24) - 2px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-contact-inner .icon, .contact-wrapper .icon {
    width: 63px;
    border-radius: 100%;
    height: 63px;
    background: var(--color-default);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: calc(var(--space-25) - 5px);
    border: 1px solid transparent;
    color: var(--color-primary);
    transition: all 0.3s;
    flex-shrink: 0;
}

.footer-left .icon {
    width: 55px;
    border-radius: 100%;
    height: 55px;
    background: var(--color-default);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: calc(var(--space-25) - 5px);
    flex-shrink: 0;
}

.footer-contact-item, .contact-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: calc(var(--space-25) - 5px);
}

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

.workers .caption {
    font-weight: bold;
}

.workers-info {
    margin-left: calc(var(--space-25) - 5px + 63px);
    display: flex;
    flex-direction: column;

}

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

.workers-info a {
    pointer-events: auto;
    color: #FFF;
    text-align: justify;
    font-size: calc(var(--font-24) - 2px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.6364em;
}

.workers-wrapper:hover .icon {
    background-color: transparent;
    color: var(--color-default);
    border: 1px solid var(--color-default);
}

.workers-wrapper {
    pointer-events: none;

    display: flex;
    flex-direction: column;
    margin-bottom: calc(var(--space-40));
}

.footer-contact-item:last-child {
    margin: 0;
}

.footer-inner {
    padding-top: var(--space-60);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    width: 42%;
}

.footer-left .footer-logo {
    margin-bottom: calc(var(--space-50) - 5px);
}

.footer-left .location {
    margin-bottom: calc(var(--space-25) + 5px);
    display: flex;
    align-items: center;
}

.no-hover {
    pointer-events: none;
}

.footer-left .caption {
    color: #FFF;
    font-size: calc(var(--font-20) - 2px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.footer-left .logotype-caption {
    max-width: 190px;
}

.footer-left .footer-social {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) - 5px);
    margin-bottom: var(--space-50);
}

.footer-left .logotypes-wrapper, .footer-left .logotypes-inner-wrapper {
    display: flex;
    gap: var(--space-50);
    align-items: center;
}

.footer-bar {
    width: 100%;
}

.footer-social a {
    color: #21312A;
}

.footer-social .social-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: var(--color-default);
    border: 1px solid transparent;
    color: #21312A;
    transition: all 0.3s;
}

@media screen and (min-width: 1139px) {
    .footer-contact-item:hover .caption, .contact-contact-item:hover .caption {
        text-decoration: underline;
    }


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

    .footer-contact-item:hover .icon, .contact-contact-item:hover .icon {
        background: transparent;
        color: var(--color-default);
        border-color: var(--color-default);
    }

    .footer-social .social-icon:hover {
        background: transparent;
        color: var(--color-default);
        border-color: var(--color-default);
    }

    .footer-col-content ul li a:hover {
        text-decoration: underline;
    }

    .many-certificates-section .tile:hover::after {
        content: '';
        position: absolute;
        background: var(--color-primary);
        opacity: 70%;
        inset: 0;
        border-radius: 10px;
        cursor: pointer;
        pointer-events: none;
    }

    .many-certificates-section .tile:hover .certificate-picture-hover {
        opacity: 1;
    }

    .many-certificates-section li .pagination-arrow-left:hover, .many-certificates-section li .pagination-arrow-right:hover {
        color: var(--color-default);
    }

}

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

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

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

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

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--space-60) * 2 - 5px);
    width: 58%;
    margin-top: 15px;
}

.footer-col-title {
    color: #FFF;
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.footer-col-content ul {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 5px);
}

.footer-col-content ul li a {
    color: #FFF;
    text-align: justify;
    font-size: calc(var(--font-20) - 3px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-50) + 5px);
}

.footer-col:last-child {
    padding-left: 50px;
}


.copyright-undicom {
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}


.copyright-undicom a {
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}

.footer-bar {
    position: relative;
    padding: 17px 0;
    margin-top: calc(var(--space-50) + var(--space-25));
}

.footer-bar::before {
    content: '';
    background: rgba(255, 255, 255, 0.15);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
}

footer .copyright {
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}

.footer-bar-links li a {
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}

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

.page-heading .text {
    margin-top: var(--space-25);
}

.many-certificates-section {
    margin-top: var(--space-50);
    margin-bottom: calc(var(--space-50) + var(--space-25) - 5px);
}

.many-certificates-section .tile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 288px;
    height: 398px;
}

.many-certificates-section .tile::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.15);
    inset: 0;
    border-radius: 10px;
    transition: all 0.3s;
}

.many-certificates-section .wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--space-50) + var(--space-25) - 5px);
}

.certificate-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;
    z-index: 1;
    pointer-events: none;
}

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

.pagination-wrapper ul li a {
    color: #000;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

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

.pagination-wrapper {
    padding: calc(var(--space-60) + 10px) 0 0 0;
}

.pagination-wrapper ul li.next,
.pagination-wrapper ul li.prev {
    float: unset;
}

.pagination-wrapper ul li.next.disabled a, .many-certificates-section .pagination-wrapper ul li.prev.disabled a {
    opacity: 1;
}

.pagination-arrow-left, .many-certificates-section .pagination-arrow-right {
    color: #000;
}

.pagination-arrow-right {
    transform: scaleX(-1);
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    height: 40px;
    width: unset;
    display: flex;
    align-items: center;
}

.pagination-wrapper .icon {
    font-size: unset;
    line-height: unset;
    font-weight: unset;
    padding: unset;
    display: flex;
    align-items: center;

}

body.sticky-footer #page {
    padding-top: 80px;
}

.rwd-button-wrapper {
    display: flex;
    align-items: center;
}


.blog-section {
    margin: var(--space-50) 0 calc(var(--space-50) + var(--space-25) + 5px) 0;
}

.blog-section .news-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-50) + var(--space-25) + 5px);

}

.blog-section .news-item {
    display: flex;
    max-height: 378px;
}

.blog-section .news-img {
    width: 50%;
    aspect-ratio: 675/378;
    position: relative;
}

.blog-section .decorative {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1px;
}

.blog-section .news-img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.blog-section .news-right {
    width: 50%;
    display: flex;
    aspect-ratio: 675/378;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    padding: var(--space-25) 0 var(--space-25) calc(var(--space-60) * 2);
}

.blog-section .news-right .title {
    margin-bottom: var(--space-40);
    width: 100%;

}

.blog-section .button-wrapper {
    width: 100%;
}

.blog-section .news-right .title a {
    color: #000;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: uppercase;
}

.blog-section .news-right .text {
    max-height: 52%;
    margin-bottom: var(--space-40);
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.875em;
    overflow-y: auto;
    padding-right: 10px;
    margin-right: -10px;
}


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

.blog-section .news-item:nth-child(even) .news-right {
    align-items: start;
    padding: var(--space-25) calc(var(--space-60) * 2) var(--space-25) 0;
}

.blog-section .news-item:nth-child(even) .decorative {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    left: -1px;
    right: unset;
}

.page-heading .subtitle {
    text-align: center;
    margin-top: var(--space-25);
}

.page-heading .subtitle h2 {
    font-size: calc(var(--font-24) + 4px);
}

.blog-view-section .text a {
    aspect-ratio: 675/378;
    float: left;
    width: 50%;
    margin-right: var(--space-25);
}

.blog-view-section .text a img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.blog-view-section {
    margin-top: var(--space-50);
    margin-bottom: calc(var(--space-40) * 2);
}

.langs-menu a, .langs-menu li {
    border: 0;
}

.langs-menu-short {
    transition: all 0.3s;
}

.contact-section {
    background-color: var(--color-primary);
    padding-top: var(--space-60);
    padding-bottom: calc(var(--space-40) * 2);
}


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


.contact-left-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.contact-right-wrapper {
    width: 33%;
    padding-right: var(--space-40);
    display: flex;
    flex-direction: column;
}

.contact-wrapper .contact-line3 {
    margin-bottom: calc(var(--space-60) * 2 + var(--space-25));
}

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


.contact-right-title {
    color: #FFF;
    font-size: var(--font-30);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: calc(var(--space-50));
    margin-top: calc(var(--space-50));
}

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

.map-section {
    width: 100%;
    height: 702px;
}


.form .alert-block .error {
    display: block;
    clear: both;
    margin-top: -5px;
    margin-bottom: 0;
    padding: 10px 18px 8px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: #E2001A !important;
    color: #fff !important;
    font-weight: normal !important;
    font-size: 13px;
}

.form .form-element-checkbox .alert-block .error {
    display: block;
    clear: both;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 0 25px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: transparent !important;
    color: #E2001A !important;
    font-weight: bold !important;
    font-size: 13px;
}


.form-element.has-error .form-control {
    border: 1px solid #E2001A !important;
    margin-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.copyright-undicom a img {
    display: block;
    margin-right: 5px;
}


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

.error-template h2 {
    font-size: calc(var(--font-36) - 1px);
    margin-bottom: 10px;
    text-transform: uppercase;
    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: var(--font-20);
}

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


.slick-cloned.opacityZero {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.mobile-only{
    display: none;
}