html {
    scroll-behavior: smooth;
}

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

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

    /** SPECIFIC **/
    --color-primary: #009927;
    --color-secondary: #14642d;
    --color-default: #333;
}

body {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    background: #282E33;
}

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

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

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

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.grayscale {
    filter: grayscale(1);
}

.grayscale-fade {
    transition: filter 0.2s;
}

.grayscale-fade:hover,
.grayscale-fade:focus {
    filter: grayscale(0);
}

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

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

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


.container--noClear {
    clear: none;
}

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


/**
 * Icons


.icon-mask.icon-mask {
    -webkit-mask-size: cover;
    -mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: currentColor;
}

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

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

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

/**
 * BUTTONS
 */

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

.btn-lg {
    border: 1px solid transparent;
    padding: 0 28px;
    height: 48px;
    line-height: 46px;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

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


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

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

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

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


/**
 * THEMES
 */

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

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

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

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

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

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

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


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

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

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


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

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

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

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

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

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

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

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

}


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

.panel {
    box-shadow: none;
}

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

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

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

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

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

/**
 * TITLES
 */


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

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

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

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

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


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


/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 15px;
    line-height: 2;
    color: #fff;
}

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

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

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

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

/** Text table **/
.text table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 50px;
}

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

.text table td {
    padding: 10px 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}

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

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

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

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

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

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

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

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    transition: top 300ms;
    background-color: #282e33;
}

header.sticky {
    top: -99px;
}

.header-top {
}

.header-top-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 54px;
    padding-top: 18px;
    padding-bottom: 18px;
}

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


.top {
    padding: 0;
    transition: padding 300ms;
    background: rgba(255, 255, 255, 0.15);
}
header.sticky .top{
    padding: 5px 0;
}
header.sticky .menu-wrapper .logo{
    width: 105px;
    padding-right: 5px;
}
.menu-wrapper{
    display: flex;
    align-items: center;
}
.menu-wrapper .logo{
    width: 0;
}
.menu-wrapper .logo{
    transition: width 300ms;
}
#main-menu{
    flex-grow: 1;
}

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

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

.logo {
    float: none;
}

.logo a {
    display: block;
}

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

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

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

#main-menu li {
    position: relative;
    width: 14.28%;
    text-align: center;
    flex-grow: 1;
}

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

#main-menu li a {
    position: relative;
    padding-top: 23px;
    display: block;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 23px;
}

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

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

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

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

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

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

span.menu-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 13px;
    margin-top: -4px;
    margin-bottom: -4px;
}

#main-menu li:before {
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.3);
    content: '';
    left: 1px;
    top: 50%;
    margin-top: -6px;
    position: absolute;
}

#main-menu li:first-child:before {
    display: none;
}

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

.contact-link {
    align-items: center;
    line-height: 200%;
    display: flex;
    padding: 10px 32px;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: #fff;
    font-family: poppins, sans-serif;
}

.link-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.contact-links .contact-link svg, .contact-links .contact-link svg * {
    fill: var(--color-primary);
}


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

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

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

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

.search-box {
    margin-right: -14px;
    padding-left: 34px;
    margin-left: 10px;
    position: relative;
}

.search-box:before {
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.3);
    content: '';
    left: 1px;
    top: 50%;
    margin-top: -6px;
    position: absolute;
}

.mainsearch.rwdPanel {
    display: block;
    padding: 0;
}

.mainsearch {
    float: left;
    position: relative;
    width: 450px;
    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;
    background: transparent;
    border-color: transparent;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.06em;
    color: #fff;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0);
    font-size: 22px;
    text-indent: -20000px;
    background: url(../images/icons/loupe_search.svg) no-repeat center center;
}

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

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


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


/**
 * FOOTER
 */


footer {
    position: relative;
}

.footer-box-container {
    position: relative;
    padding-top: var(--space-60);
    padding-bottom: 50px;
}

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

.footer-boxes {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer-title {
    font-weight: 700;
    font-size: 13.021vw;
    color: #fff;
    opacity: 0.1;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
}

@media screen and (min-width: 1921px) {
    .footer-title {
        font-size: 250px;
    }
}

.footer-left {
    width: 42%;
    padding-top: 32px;
    padding-right: 30px;
    position: relative;
    padding-bottom: 40px;
}

.footer-right {
    width: 49.5%;
    padding-top: 33px;
    display: flex;
    padding-bottom: 40px;
}

.logo-min-box {
    max-width: 61%;
    margin-bottom: 40px;
}

.footer-left .text.txt h3 {
    font-weight: 700;
    font-size: var(--font-25);
    line-height: 1.44;
    color: #fff;
    margin-bottom: 50px;
}

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

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

.footer-box .contact-link {
    width: 100%;
    padding: 0;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0;
    font-weight: bold;
    line-height: 1;
}

.footer-box .contact-links {
    margin: 0;
}

.footer-box .link-icon {
    margin-right: 0;
    margin-left: -13px;
    width: 34px;
    height: 34px;
}

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

.footer-col-title {
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 22px;
    line-height: 150%;
    color: #fff;
}


.footer-box .text {
    font-weight: 400;
    font-size: 15px;
    line-height: 2.4;
    color: #fff;
    margin-bottom: 40px;
}


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

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


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

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


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

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

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

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

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

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

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

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

.copyright {
    position: relative;
}

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

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

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


/**
 * FORM
 */

.form-box-title {
    font-weight: 700;
    font-size: var(--font-25);
    line-height: 1.44;
    color: #fff;
    margin-bottom: 40px;
}

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

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

.form .form-element-name {
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}


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

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

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;

/ / line-height: 24 px;
    line-height: 1.71429;
    text-transform: capitalize;
    text-align: justify;
    color: #fff;
}

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


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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

}

.form .consent-all-row strong {
    padding-top: 20px;
    display: block;
    margin-bottom: 27px;
}

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


/**
 * MAP POINTS
 */

.map-point .custom-map-wrapper {
    position: relative;
}

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

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

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

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


.map-box-container iframe {
    width: 100%;
    display: block;
    height: 600px;
}

/**
 * BREADCRUMB
 */

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

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

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

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

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

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

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

/**
 * ANIMATABLE ICON
 */
.animIcon {
    position: relative;
    display: inline-block;
    width: 32px;
    padding: 0 !important;
}

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

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

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

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

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

/* Hamburger -> Close */
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}

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

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

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

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

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

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

/**
 * LOGOTYPES SLIDER
 */
.logotypes-box-container {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

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

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


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

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

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

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

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-subtitle {
    padding-bottom: 30px;
    font-weight: 700;
    font-size: var(--font-26);
    line-height: 1.73077;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

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

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

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

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

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

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

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

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

/**
* PAGINATION
*/

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

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

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

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    color: #000;
    font-size: 13px;
    line-height: 50px;
    padding: 0 11px;
}


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

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

.pagination-wrapper ul li.next a > * {

}

.pagination-wrapper ul li.prev a > * {

}

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

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

    }

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

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

    }

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

.mainpage #content {
    background: url(../images/content.jpg) no-repeat center;
    background-position-y: 166px;
}

#content {
    padding-top: 166px;
}

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

.slider {
    position: relative;
}

.main-slider {
    position: relative;
    display: flex;
    overflow: hidden;
}


.slider .slide {
    display: flex !important;
    position: relative;
    width: 100%;
    flex-shrink: 0;
    height: 715px;
    padding-top: 80px;
    padding-bottom: 105px;
}

.slider .container {
    height: 100%;
}

.slide-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

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

img.img-slider {
    max-width: 84%;
}

img.logo-slider {
    position: absolute;
    right: 7%;
    top: 50%;
    max-width: 23%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mask.slider-mask {
    background-color: #000000;
    opacity: 0.45;
}

.slider-photo {
    width: 61%;
    margin-left: -1%;
}

.slider-text {
    width: 40%;
    display: flex;
    flex-direction: column;
    padding-right: var(--container-padding);
}

.title1 {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: var(--font-60);
    line-height: 1.16667;
    color: #fff;
}

.description {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.slider-label-shipment {
    font-size: var(--font-28);
    line-height: 1.21429;
    color: #fff;
    font-weight: 300;
    width: 78.4%;
    padding: 24px 45px 22px 18px;
    margin-bottom: 33px;
    position: relative;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    min-height: 114px;
}

.shipment-icon {
    flex-shrink: 0;
    margin-right: 21px;
    width: 78px;
    height: 40px;
}

.shipment-caption strong {
    display: block;
}

.shipment-info {
    font-weight: 700;
    font-size: var(--font-40);
    line-height: 1.75;
    text-transform: uppercase;
    color: #fff;
}

.slider-label-shipment:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--color-primary);
    clip-path: polygon(94% 0, 100% 26%, 100% 100%, 0 100%, 0 0);
    transform: translateZ(-1px);
}


ul.slick-dots {
    max-width: 1720px;
    width: 100%;
    position: absolute;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    bottom: 0;
    text-align: right;
    margin: 0 auto;
    left: 0;
    right: 0;
}

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

ul.slick-dots li span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    cursor: pointer;
    line-height: 36px;
}


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

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

}

.btn.btn-lg.btn-svg {
    border-radius: 0;
    color: #fff;
    border: 1px solid #fff;
    clip-path: polygon(calc(100% - 19px) 0, 100% 14px, 100% 100%, 0 100%, 0 0);
    position: relative;
}

.btn.btn-lg.btn-svg:after {
    content: '';
    height: 2px;
    width: 18px;
    background: transparent;
    position: absolute;
    right: 0;
    top: 5px;
    transform: skewY(36deg);
    border: 0 none #fff;
    border-top: 2px solid;
}

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


    .btn.btn-lg.btn-svg:hover:after {
        border-color: var(--color-primary);
    }
}

.group-box-title {
    font-weight: 700;
    font-size: var(--font-45);
    line-height: 1.55556;
    color: #fff;
}

.group-box-container {
    padding-top: 30px;
    padding-bottom: 100px;
}

.group-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.group-left {
    width: 19.7%;
    margin-top: 92px;
    padding: 50px 2.6% 50px 3%;
    background: var(--color-secondary);
    position: relative;
}

.group-right {
    width: 69.4%;
}

.group-title {
    background-image: url(../images/bg5.jpg);
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    font-size: 8.333vw;
    white-space: nowrap;
    background-size: cover;
    background-position: center;
    line-height: 1;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

@media screen and (min-width: 1921px) {
    .group-title {
        font-size: 160px;
    }
}

.group-slide {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-end;
    margin: -50px;
}

.logo-item {
    width: 33.33%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.logo-name {
    font-weight: 400;
    font-size: 15px;
    line-height: 2;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding-top: 34px;
}

.group-left img {
    max-width: 91%;
    margin-bottom: 40px;
}

.group-left .text.txt {
    font-weight: 400;
    font-size: 15px;
    line-height: 2;
    color: #fff;
    margin-bottom: 50px;
}

.group-left:after {
    width: 11px;
    height: 26px;
    background: var(--color-secondary);
    right: -11px;
    top: 50%;
    content: '';
    position: absolute;
    margin-top: -26px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}


.group-slider .slick-arrow, .offer-slider .slick-arrow {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    z-index: 9;
    border: 0 none;
    background: transparent;
    margin-top: -25px;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    line-height: 50px;
    text-align: center;
}

.group-slider .slick-prev {
    left: -8.5%;
}

.group-slider .slick-next {
    right: -8.5%;
}

@media screen and (min-width: 1140px) {
    .group-slider button.slick-arrow:hover, .offer-slider button.slick-arrow:hover {
        color: var(--color-primary);
    }
}


.offer-slider .slick-prev {
    left: 2%;
}

.offer-slider .slick-next {
    right: 2%;
}

.offer-box-title {
    position: absolute;
    font-weight: 700;
    font-size: var(--font-45);
    line-height: 1.55556;
    color: #fff;
    z-index: 1;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    width: 100%;
    left: 0;
    right: 0;
    top: 60px;
}

.mask.offer-mask {
    background: rgba(23, 29, 34, 0.45);
}

.offer-photo {
    position: relative;
}

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

.offer-content {
    position: absolute;
    bottom: 0;
    width: 690px;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding-bottom: 80px;
    padding-right: 15%;
}

.offer-content .text.txt {
    margin-bottom: 40px;
}

.offer-name {
    font-weight: 700;
    font-size: var(--font-45);
    line-height: 1.22222;
    color: #fff;
    margin-bottom: 40px;
}

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

.branches-box-title {
    font-weight: 700;
    font-size: var(--font-45);
    line-height: 1.55556;
    color: #fff;
    margin-bottom: 40px;
    padding-top: 4px;
}

.branches-box-container {
    padding-top: 50px;
    padding-bottom: 60px;
    background: url(../images/bg_middle.jpg) no-repeat center bottom;
    background-size: cover;
}

.branches-box {
    display: flex;
    justify-content: space-between;
    max-width: 1360px;
    margin: 0 auto;
    align-items: center;
    padding-top: 4px;
}

.branches-photo {
    width: 58%;
}

.branch-text {
    width: 36%;
}

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

.branch-text .text.txt h3 {
    font-weight: 700;
    font-size: var(--font-30);
    line-height: 1.5;
    color: #fff;
    margin-bottom: 40px;
}

.branch-text .text.txt {
    margin-bottom: 40px;
}

.partners-box-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: -30px;
}

.partners-title {
    font-weight: 700;
    font-size: var(--font-26);
    line-height: 150%;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.partners-part {
    width: 50%;
    padding: 30px;
}

.partners-part:nth-child(3):last-child {
    width: 100%;
}

.partners-box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.partners-box ul li a {
    width: 174px;
    display: flex;
    height: 174px;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
}

.partners-box ul li {
    padding: 10px;
}

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

.partners-box ul li a img {
    display: block;
    max-width: 75%;
    max-height: 75%;
}

div#page {
    background: url(../images/footer.jpg) no-repeat bottom center;
}

.mask.group-mask {
    background: url(../images/group_mask.png) no-repeat bottom center;
}
.page-top-box + .scroll-section{
    margin-top: -140px;
}
.page-top-photo img {
    opacity: 0.15;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-top-photo {
    position: relative;
    opacity: 0;
}

.page-top-box{
    pointer-events: none;

}
.page-top-content{
    pointer-events: auto;
}
.page-top-inner {
    text-align: center;
    max-width: 940px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.page-top-box .text.txt {
    margin-bottom: 13px;
    font-style: italic;
    font-weight: 300;
    font-size: var(--font-26);
    line-height: 1.76923;
    text-align: center;
    color: #fff;
}

.page-top-content {
    padding-top: var(--space-50);
    overflow: hidden;
    max-height: calc(100% - 200px);
    padding-bottom: var(--space-50);
}

.page-top-box {
    position: relative;
}

.page-heading-title {
    font-weight: 700;
    font-size: var(--font-45);
    line-height: 1.55556;
    color: #fff;
    margin-bottom: 80px;
}

.page-top-box .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1720px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    height: 100%;
}

.page-top-content img {
    margin-bottom: 50px;
    max-width: 38%;
}

.menu-box {
    max-width: 100%;
    margin: 0 auto 61px;
    background-color: rgba(20, 100, 45, 0);
    transition: background-color .2s linear, padding .2s linear;
}

.menu-box.sticky {
    top: 87px;
    width: 100%;
    left: 0;
    padding: 10px;
    margin: 0 auto;
    right: 0;
    max-width: calc(1440px - (2 * var(--container-padding)));
    z-index: 10000;
    position: fixed;
    background-color: rgba(20, 100, 45, 0.4);
}

.menu-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: -10px;
}

.menu-box ul li {
    padding: 10px;
    width: 25%;
    text-align: center;
}

.menu-box ul li a {
    display: block;
    padding: 19px;
    position: relative;
    transform-style: preserve-3d;
    background: #4b4f53;
    font-weight: 400;

    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}
.menu-box ul li a.active{
    background: var(--color-primary);
}
@media screen and (min-width: 1140px) {
    .menu-box ul li a:hover {
        background: var(--color-primary);
    }

    .about-link[href]:hover {
        background: var(--color-secondary);
    }
}

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

.about-sub-box-container {
    padding-bottom: 40px;
}

.about-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.about-item {
    width: 50%;

    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.about-link {
    padding: 50px 50px 80px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.about-logo {
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 25px;
}

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

.about-title {
    font-weight: 700;
    font-size: var(--font-26);
    line-height: 1.73077;
    color: #fff;
    margin-bottom: 22px;
}

.about-item .text.txt {
    padding-right: 16%;
}

.about-box:after {
    width: 1px;
    height: 100%;
    content: '';
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    display: block;
    left: 50%;
}

.about-item:last-child {
    border-bottom: 0 none;
}

.about-item:nth-last-child(2):nth-child(odd) {
    border-bottom: 0 none;
}

.scroll-section {
    scroll-margin-top: 67px;
}

.gallery-box-container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.offer-details-container + .gallery-box-container {
    padding-top: 0;
}

.gallery-box .gallery-list-item {
    width: 33.33%;
    padding: 4px;
}

.certificates-box-container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.text-intro {
    max-width: 1090px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 70px;
}

.certificates-box .gallery-list-item {
    width: 25%;
    padding: 14px;
}

.certificates-box .gallery-picture-hover {
    background: rgba(0, 0, 0, 0.7);
}

.certificates-icon {
    display: block;
    margin: 0 auto;
}

.certificates-info {
    display: block;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}

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

.history-box-container {
    padding-top: 40px;
    background: url(../images/bg_middle.jpg) no-repeat center bottom;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
}

.history-years {
    width: 179px;
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 1%;
    position: relative;
}

.history-line {
    width: 10.6%;
    height: 3px;
    content: '';
    display: inline-block;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    margin-right: 3%;
    margin-left: 3%;
}

.years {
    font-weight: 700;
    font-size: var(--font-24);
    line-height: 150%;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.history-photo {
    width: 24.4%;
}

.history-photo img {
    display: block;
    max-width: 100%;
    border-radius: 50%;
}

.history-text {
    width: 40%;
    margin-left: 5%;
}

.history-text .text.txt h3 {
    font-weight: 700;
    font-size: var(--font-26);
    line-height: 1.73077;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}
.history-item{
    position: relative;
}
.history-item:not(:first-child):before{
    background: rgba(255, 255, 255, 0.4);
    width: 3px;
    display: block;
    content: '';
    left: 88px;
    top: 0;
    bottom: calc(50% + 143px);
    position: absolute;
}
.history-item:not(:last-child):after {
    background: rgba(255, 255, 255, 0.4);
    width: 3px;
    display: block;
    content: '';
    top: calc(50% + 93px);
    left: 88px;
    bottom: 0;
    position: absolute;
}

.history-item:last-child .years:after {
    display: none;
}

.offer-box-container .page-heading-title {
    position: absolute;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    left: 0;
    right: 0;
    top: 40px;
}

.page-top-bg {
    pointer-events: none;
    position: relative;
}

.page-top-box .page-heading-title {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    left: 0;
    right: 0;
    position: absolute;
    padding-top: 40px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.page-top-bg img {
    display: block;
    max-width: 100%;
    opacity: 0.15;
}


.offer-details-container.first-section {
    margin-top: -150px;
    position: relative;
    padding-bottom: 0;
    padding-top: 0;
}

.partners-part:last-child:nth-child(odd) {
    width: 100%;
}

.offer-details-container {
    padding-top: 40px;
    padding-bottom: 30px;
}

.text table th {
    padding: 10px 35px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
}

.products-box-info {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.products-box-info table th, .products-box-info table td{
    text-align: center;
}
.transport-box-info {
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    margin: -70px;
    padding-bottom: 40px;
}

.transport-box-label {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    margin-bottom: 25px;
}

.transport-data {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.transport-data-item {
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 10px;
    min-width: 211px;
    text-align: center;
}

.transport-box {
    margin: 70px;
}

.buttons-center {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 50px;
}

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

@media screen and (min-width: 1140px) {
    .product-img:hover img {
        transform: scale(1.05);
        z-index: 1;
    }
}

.product-img {
    display: block;
    position: relative;
}

tbody [rowspan], tbody [rowspan] ~ td {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-details-box .text table td {

}

.offer-details-box {
    padding-bottom: 0;
    position: relative;
}

.contact-box-container {
    padding-top: 40px;
}

.contact-box-container .page-heading-title {
    margin-bottom: 5px;
}

.contact-box .footer-left {
    max-width: 36%;
}

.contact-box .footer-right {
    width: 58%;
    padding-right: 6%;
}

.contact-box .footer-col-title {
    margin-bottom: 40px;
}

.contact-box .footer-left:after {
    display: none;
}

.contact-box .footer-boxes {
    padding-bottom: 30px;
}

.form-box-container {
    padding-top: 30px;
    padding-bottom: 60px;
}

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

.form-left {
    width: 36%;
    margin-left: -40px;
}

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

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

.form-box-wrapper .btn.btn-lg.btn-svg {
    height: 46px;
    width: 208px;
    margin: 0 auto;
    display: block;
}

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

.form-left {
    width: 36%;
    margin-left: -40px;
}

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

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

.form-box-wrapper .btn.btn-lg.btn-svg {
    height: 46px;
    width: 208px;
    margin: 0 auto;
    display: block;
    background: var(--color-primary);
    border-color: transparent;
}

@media screen and (min-width: 1140px) {
    .form-box-wrapper .btn.btn-lg.btn-svg:hover {
        border-color: #fff;
        background: transparent;
    }

    .form-box-wrapper .btn.btn-lg.btn-svg:hover:after {
        border-color: #fff;
    }
}

.form-box-wrapper .btn.btn-lg.btn-svg:after {
    border-color: var(--color-primary);
}

.contact-page {
    background: url(../images/contact_page.jpg) no-repeat center 0;
}

.text-box-container {
    padding-top: 40px;
    margin-bottom: 30px;
}

.text-box-container .page-heading-title {
    margin-bottom: 40px;
}

.menu-box-wrapper {
    margin-top: -145px;
    margin-bottom: var(--space-60);
}

.history-text .text.txt h2 {
    font-weight: 700;
    font-size: var(--font-26);
    line-height: 1.73077;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}

.offer-details-box .text table {
    margin-bottom: 0;
}

.form .alert-block .error {
    color: red !important;
}

.offer-details-box td:not(:first-child), .offer-details-box th:not(:first-child) {
    text-align: center;
}

.offer-details-box .product-img {
    margin: 0 auto;
}

@media screen and (min-width: 768px){
    .offer-details-box .table-responsive{
        overflow: unset;
    }
}

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

.offer-item{
    width: 50%;
}
.product-box{
    width: 25%;
    padding: var(--space-25) 10px;
}
.product-img {
    max-width: 80%;
    margin: 0 auto;
}
.product-img img{
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
}
.product-box-title{
    text-align: center;
    font-size: var(--font-22);
    margin-bottom: var(--space-25);
    color: #fff;
    font-weight: 700;
}

.product-details-list{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--space-25) * -1) -10px;
}
.product-box-table{
    margin-top: var(--space-25);
}
.product-box-table thead{
    border-bottom: 1px solid #fff;
}
.product-box-table th{
    padding: 10px 0;
    vertical-align: middle;
    text-transform: uppercase;
    text-align: center;
}
.product-box-table td:first-child, .product-box-table th:first-child{
    width: 40%;
}
.product-box-table td{
    text-align: center;
    border-bottom: 1px solid #696d71;
}
.product-box-table td p{
    font-size: 15px;
    white-space: nowrap;
    padding: 10px 0;
    display: block;
    width: 100%;
    margin-bottom: -1px;
    border-bottom: 1px solid #696d71;
}