/* === globalheader === */

/*=====================================================*/
/* Advansys PageExpress Custom Responsive Stylesheet   */
/*=====================================================*/

:root {
    --body-background: rgb(255, 255, 255);
    --body-color: rgb(39, 39, 39);
    --body-font: 'Maven Pro', sans-serif;
    --h1-font: 'Maven Pro', sans-serif;
    --h2-font: 'Maven Pro', sans-serif;
    --h3-font: 'Maven Pro', sans-serif;
    --h4-font: 'Maven Pro', sans-serif;
    --text-primary: rgb(0, 0, 0);
    --text-secondary: rgb(255, 255, 0);
    --cookie-background: rgb(255, 255, 255);
    --cookie-text-color: rgb(0, 0, 0);
    --button-background: rgb(0, 0, 0);
    --quickinquiry-background: rgb(238, 238, 238);
    --quickinquiry-color: rgb(68, 68, 68);
    --quickinquiry-tab-background: rgb(68, 68, 68);
    --navbar-hamburguer-icon-color: rgb(255, 255, 255);
    --navbar-phone-color: rgb(255, 255, 255);
    --sticky-header-background: rgba(0, 0, 0, 0.5);
    --navbar-phone-icon: rgb(255, 255, 255);
    --nav-mobile-backgroundcolor: rgb(68, 68, 68);
    --navlink-mobile-bordercolor: rgb(102, 102, 102);
    --nav-link-color-mobile: rgb(255, 255, 255);
    --nav-link-color: rgb(0, 0, 0);
    --footer-background: rgb(0, 0, 0);
    --footer-textcolor: rgb(255, 255, 255);
    --sticky-header-text-color: rgb(255, 255, 255);
    --required_color: rgb(255, 0, 0);
    --h1-fontsize: 80px;
    --h2-fontsize: 60px;
    --h3-fontsize: 48px;
    --h4-fontsize: 32px;
    --h1-fontweight: 400;
    --h2-fontweight: 400;
    --h3-fontweight: 400;
    --h4-fontweight: 400;
    --header_promo_line_bgcolor: #000;
    --header_promo_line_textcolor: rgb(255, 255, 255);
    /*-----------------------------------------------------------------------*/
    /* Custom Variables */
    --input_height: 62px;
    --hpl01-h: 0px;
    --gold: #e9b951;
}

body {
    background: var(--body-background);
    color: var(--body-color);
    margin-top: 60px;
    font-family: var(--body-font);
    font-size: 20px;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
    font-weight: 700;
}

h1, .h1 {
    font-family: var(--h1-font);
    font-size: var(--h1-fontsize);
    font-weight: var(--h1-fontweight);
    line-height: calc(var(--h1-fontsize) + 8px);
}

h2, .h2 {
    font-family: var(--h2-font);
    font-size: var(--h2-fontsize);
    font-weight: var(--h2-fontweight);
    line-height: var(--h2-fontsize);
    letter-spacing: -2px;
}

h3, .h3 {
    font-family: var(--h3-font);
    font-size: var(--h3-fontsize);
    font-weight: var(--h3-fontweight);
}

h4, .h4 {
    font-family: var(--h4-font);
    font-size: var(--h4-fontsize);
    font-weight: var(--h4-fontweight);
}

@media(max-width: 991px) {
    h1, .h1 {
        font-size: 72px;
        line-height: 80px;
    }

    h2, .h2 {
        font-size: 55px;
        line-height: 55px;
    }
}

@media(max-width: 767px) {
    h1, .h1 {
        font-size: 60px;
        line-height: 68px;
    }

    h2, .h2 {
        font-size: 50px;
        line-height: 50px;
    }
}

@media(max-width: 575px) {
    h1, .h1 {
        font-size: 52px;
        line-height: calc(52px + 8px);
    }

    h2, .h2 {
        font-size: 44px;
        line-height: 48px;
    }

    h3, .h3 {
        font-size: 32px;
    }

    h4, .h4 {
        font-size: 24px;
    }
}

.form-control {
    min-height: var(--input_height);
    border-radius: 0;
}

a {
    color: var(--gold);
    text-decoration: none;
}

a:not(.btn):hover {
    color: var(--gold);
    text-decoration: underline;
}

.btn {
    background-color: var(--gold);
    color: var(--body-color);
    cursor: pointer;
    font-size: 18px;
    line-height: 18px;
    padding: 21px 30px;
    border-radius: 0px;
    font-weight: 500;
    transition: 0.2s all;
    outline: none !important;
    box-shadow: none !important;
    min-width: 180px;
    text-decoration: none;
}

.btn:active {
    //box-shadow: 0px 0px 5px 1px var(--gold);
    transform: scale(0.98);
}

.btn:focus,
.btn:focus-within {
    outline: none !important;
}

button:hover,
button:active,
button:focus,
button:focus-within {
    text-decoration: none;
    box-shadow: none !important;
    outline: none !important;
}

.btn-primary {
    padding: 5px 15px;
    background-color: var(--button-background);
    color: #fff;
    cursor: pointer;
}

.btn-primary:hover {
    color: #fff;
    text-decoration: none;
    background-color: var(--button-background);
    background-color: var(--button-background);
}

.btn-primary:not([disabled]):not(.disabled).active, .btn-primary:not([disabled]):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    background-color: var(--button-background);
    background-color: var(--button-background);
}

.btn-primary:focus, .btn-primary:active, .btn-primary:visited, .btn-primary:link {
    color: #fff;
    text-decoration: none;
    background-color: #000;
    border-color: #000;
}

.btn-secondary {
    transition: 0.2s all;
    background-color: #fff;
    color: #000;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
    text-decoration: none;
}

.btn-primary:active {
    outline: none !important;
    box-shadow: none !important;
    background-color: #000;
    color: #fff;
}

.btn-share {
    position: relative;
    margin-right: 10px;
    padding: 12px 20px 12px 35px;
    text-transform: none;
    line-height: 1;
    margin-bottom: 10px;
    border-radius: 0;
}

.btn-share span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: inline-block;
    width: 40px;
    text-align: center;
}

.btn-share.facebook {
    background-color: #2f5a9b;
}

.btn-share.twitter {
    background-color: #00acf2;
}

@media (min-width: 576px) {
    .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-right: 30px;
        padding-left: 30px;
    }
}

/* Quick Enquiry */
#slideOut {
    right: -400px;
    width: 400px;
    min-height: 300px;
}

#slideOut div.container {
    padding: 15px;
}

/* Display slideOut */
.right-tab.show {
    right: 0px !important;
}

/* Tab */
#slideOut .slideOutTab {
    cursor: pointer;
    position: absolute;
    left: -40px;
    width: 40px;
    height: 200px;
    background: var(--quickinquiry-tab-background);
}

/* Tab Layer */
.slideOutTab div {
    text-align: center;
    position: relative;
    font-family: arial;
    font-weight: normal;
    font-size: 18px;
    color: #ffffff;
    right: 70px;
    top: 90px;
    width: 180px;
    transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    /* IE9+ */
    writing-mode: horizontal-tb;
}

#slideOut .col-form-label {
    padding: 0 0 3px;
}

#slideOut .form-control {
    min-height: 35px;
}

#slideOut textarea.form-control {
    resize: none;
    height: 108px;
}

#slideOut .form-group {
    margin-bottom: 10px;
}

#slideOut .form-control:focus {
    outline: none
}

.form .form-error {
    display: block;
    color: #b94a48;
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 140%;
}

.form .tickbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form .radio-multi .tickbox:last-child {
    margin-bottom: 0;
}

.form .radio-multi>label {
    display: none;
}

.form input[type="checkbox"] {
    display: inline-block;
    width: auto;
    margin-top: 5px;
}

.form input[type="checkbox"]+label {
    padding: 0 0 0 5px;
}

.form .form-error {
    font-size: 15px
}

.form textarea.form-control {
    resize: none;
    height: 150px;
}

form input[type="checkbox"]+label+.form-error {
    display: none;
}

.form-group {
    margin-bottom: 1rem;
}

form .checkbox {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

form .checkbox+label {
    position: relative;
    padding-left: 30px !important;
    cursor: pointer;
}

form .checkbox+label:before {
    position: absolute;
    top: 3px;
    left: 0;
    content: "";
    display: block;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: inset 0 2px 2px rgba(172, 172, 172, 0.27);
    border: 1px solid #cccccc;
    width: 20px;
    height: 20px;
}

form .checkbox:checked+label:after {
    content: "\f00c";
    position: absolute;
    left: 4px;
    top: 5px;
    color: rgb(0, 0, 0);
    font-family: 'Font Awesome 5 Free';
    font-size: 13px;
    display: inline-block;
    font-style: normal;
    cursor: pointer;
    font-weight: 600;
}

.form .required-star {
    color: rgb(255, 0, 0)
}

form .tickbox.has-error label:before {
    color: var(--required_color);
    border-color: var(--required_color);
}

.form .form-group {
    position: relative;
}

.form select.valid,
.form input.valid {
    background-image: url('/images/default/success-field.png');
    background-position: right 10px center;
    background-repeat: no-repeat;
    -webkit-background-size: 20px;
    background-size: 20px;
    border-color: #4a4a4a;
    -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
}

.form select.error,
.form input.error {
    background-image: url('/images/default/error-field.png');
    background-position: right 10px center;
    background-repeat: no-repeat;
    -webkit-background-size: 20px;
    background-size: 20px;
    border: 2px solid #ff0000;
    background-color: #ffeded;
    -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
}

.form .error+div.error,
.form .form-group.has-error div.error {
    color: #f00;
    position: absolute;
    right: 0;
    bottom: -22px;
    margin: 0;
    font-size: 14px;
}

.form .captcha .error+div.error,
.form .form-group.captcha.has-error div.error {
    position: static;
}

.form .form-group.has-error.tickbox div.error {
    display: none !important;
}

form .has-error input.error,
form .has-error select.error,
form .has-error textarea.error,
form .radio-multi.has-error .tickbox {
    background-color: rgb(255, 244, 244);
    background-image: url('/images/default/error-field.png');
    background-position: right 10px center;
    background-repeat: no-repeat;
    -webkit-background-size: 20px;
    background-size: 20px;
    border-color: #f00;
    border-width: 2px;
}

form .has-error div.error {
    color: #f00;
}

#slideOut .form-error {
    display: none;
}

#slideOut .bottom-box {
    position: relative;
    margin-bottom: 0px !important
}

#slideOut .bottom-box .required {
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 14px;
    color: rgb(68, 68, 68)
}

.right-tab {
    display: none;
    position: fixed;
    top: 200px;
    width: 370px;
    right: -370px;
    background: var(--quickinquiry-background);
    z-index: 99;
    color: var(--quickinquiry-color);
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}

.right-tab iframe {
    border: none;
    width: 100%;
    height: 350px;
}

.right-tab-button {
    background: var(--quickinquiry-tab-background);
    width: 40px;
    height: 40px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 40px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: -40px;
}

.right-tab-button>i {
    line-height: 40px;
}

#facebook-feed {
    top: 405px;
    z-index: 9998;
}

#twitter-feed {
    top: 450px;
    z-index: 9997;
}

#instagram-feed {
    top: 495px;
    z-index: 9996;
}

.right-tab-content {
    padding: 15px;
}

/* Cookie Warning */
#cookie {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1100;
}

.CookiePreferencesPopup {
    z-index: 1101;
}

#cookie-content {
    width: calc(100% - 40px);
    max-width: 299px;
    position: fixed;
    z-index: 999;
    left: 20px;
    bottom: 20px;
    background-color: var(--cookie-background);
    color: var(--cookie-text-color);
    box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 36px 40px;
    text-align: center;
}

@media (max-width: 575.98px) {
    #cookie-content {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

#cookie .cookie-text {
    padding-bottom: 0;
    font-size: 18px;
    color: #272727;
    line-height: 22px;
}

#cookie .cookie_learn_more {
    padding-bottom: 10px;
}

#cookie .cookie_learn_more a {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: 500;
}

#cookie .cookie_preferences_button button {
    width: 100%;
    border-radius: 0;
    margin-bottom: 10px;
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

#cookie #cookie-content>.btn {
    width: 100%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

/* Hamburger */
.hamburger {
    position: absolute;
    top: 50%;
    left: 15px;
    padding: 5px;
    display: inline-block;
    cursor: pointer;
    transition: opacity, filter linear 0.15s;
    background-color: transparent;
    border: none;
    transform: translateY(-50%);
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    width: 30px;
    height: 3px;
    background-color: var(--navbar-hamburguer-icon-color);
    border-radius: 4px;
    position: absolute;
    transition: transform ease .15s;
}

/* Hamburger animations (minimised) */
.navbar-toggler .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-delay: .13s;
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: .13s
}

.navbar-toggler .hamburger-inner:after {
    content: "";
    display: block;
    top: -20px;
    transition: top .2s cubic-bezier(.33333, .66667, .66667, 1) .2s, opacity .1s linear
}

.navbar-toggler .hamburger-inner:before {
    content: "";
    display: block;
    top: -10px;
    transition: top .12s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19)
}

.navbar-toggler.is-active .hamburger-inner {
    transition-delay: .22s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translate3d(0, -10px, 0) rotate(-45deg)
}

.navbar-toggler.is-active .hamburger-inner:after {
    top: 0;
    transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s linear .22s;
    opacity: 0
}

.navbar-toggler.is-active .hamburger-inner:before {
    top: 0;
    transition: top .1s cubic-bezier(.33333, 0, .66667, .33333) .16s, transform .13s cubic-bezier(.215, .61, .355, 1) .25s;
    transform: rotate(-90deg)
}

.page404 .content-01 {
    text-align: center;
    padding: 45px 0px;
}

.page404 .btn {
    margin: 10px 5px auto;
}

.page404 .btn-wrapper {
    margin-top: 15px;
}

[data-var][contenteditable=true] {
    outline: 2px dashed #254d7a;
    outline-offset: -2px;
}

@media (min-width: 768px) {
    body {
        margin-top: 125px;
    }

    .right-tab {
        display: block
    }
}

@media (max-height: 750px) {

    #slideOut {
        top: 20vh;
    }

    #facebook-feed {
        top: calc(20vh + 205px);
    }

    #twitter-feed {
        top: calc(20vh + 250px);
    }

    #instagram-feed {
        top: calc(20vh + 295px);
    }
}

@media (max-height: 650px) {
    .right-tab {
        display: none;
    }
}

.bootbox .bootbox-close-button {
    position: absolute;
    right: 15px;
    top: 15px;
    border: none !important;
    outline: none !important;
    background-color: transparent;
}

.bootbox.popup-login.show {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.bootbox.popup-login .modal-dialog {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 600px;
    margin: 0;
    max-width: none;
}

.bootbox.popup-login.show .modal-dialog .login_form {
    padding-top: 0px;
}


.bootbox.popup-login.show .spin-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    pointer-events: none;
}

.bootbox.popup-login .modal-dialog .help-block.form-error {
    color: rgb(185, 74, 72);
}

.bootbox.popup-login .modal-dialog .passblock {
    position: relative;
    margin-bottom: 30px;
}


.bootbox.popup-login .modal-dialog .login_form #reset-password {
    position: absolute;
    bottom: -25px;
    left: 15px;
    cursor: pointer;
    font-size: 14px;
}

.bootbox.popup-login .modal-dialog .login_form #reset-password:hover {
    text-decoration: underline;
}

.bootbox.popup-login .modal-content {
    border-radius: 0;
}

.bootbox.popup-login .modal-dialog .modal-body {
    padding-bottom: 0;
}

.bootbox.popup-login .modal-dialog .bottom_suggestion {
    margin-bottom: 0;
    margin-left: -30px;
    margin-right: -30px;
    background: #b9b9b9;
    margin-top: 15px;
}

.bootbox.popup-login .modal-dialog .bottom_suggestion a {
    color: #000;
    padding: 15px 0px;
    display: block;
}

.bootbox.popup-login #loginform button.btn[type=submit] {
    border-radius: 0;
    width: 100%;
}

.account_popup_dialog {
    position: absolute;
    top: calc(100% + 15px);
    right: -60px;
    width: 240px;
    text-align: left;
    background: #fff;
    border: 1px solid #000;
}

.account_popup_dialog:before {
    content: "";
    position: absolute;
    right: 60px;
    width: 20px;
    height: 40px;
    top: -40px;
}

.account_popup_dialog .item a {
    color: #000;
    display: block;
    width: 100%;
    padding: 2px 15px;
    transition: all 0.1s;
    text-decoration: none;
}

.account_popup_dialog .item a i {
    margin-right: 10px;
}

.account_popup_dialog .item a:hover,
.account_popup_dialog .item a:active {
    background: #000;
    color: #fff;
}


.bootbox.popup-login.show .modal-dialog .login_form .form-errors .error-line {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px;
    color: rgb(185, 74, 72);
}

.message-container {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.message-container .messagepopupmessage {
    position: relative;
    background: #d7d7d7;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    border: 1px solid #b9b9b9;
    font-size: 14px;
    width: 100%;
}

.message-container .messagepopupmessage .close {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 16px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    cursor: pointer;
    transition: 0.2s opacity;
}

.message-container .messagepopupmessage:hover .close,
.message-container .messagepopupmessage .close:active {
    opacity: 1;
}


@media(max-width: 575px) {
    .message-container {
        left: 15px;
        right: 15px;
        width: auto;
    }

    .message-container .messagepopupmessage {
        width: 100%;
        margin-top: 5px;
    }

    .message-container .messagepopupmessage .close {
        font-size: 20px;
    }
}

#modal_backdrop.invisible {
    -webkit-transition: visibility 0.3s ease-out;
    transition: visibility 0.3s ease-out;
}

#modal_backdrop.WOLoading i {
    display: none;
}

#modal_backdrop .modal-backdrop {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

#modal_backdrop.invisible .modal-backdrop i {
    animation: none !important;
}

#modal_backdrop:not(.invisible) .modal-backdrop {
    opacity: 0.7;
    color: #fff;
    z-index: 1100;
}

#modal_backdrop:not(.invisible) .modal-backdrop i {
    width: auto;
}

.select2-container--default .select2-selection--single {
    min-height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important;
    line-height: 38px !important;
}

.captcha.captcha-image img {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: inset 0 2px 2px rgba(172, 172, 172, 0.27);
    border: 1px solid #cccccc;
    width: 150px;
    height: 40px;
}

.captcha-image-reload {
    display: flex;
}


.captcha_whatis {
    cursor: pointer;
    font-size: small;
}

.sash_image {
    max-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin-top: -1px;
    margin-left: -1px;
}


.form-control:focus {
    box-shadow: none !important;
    border: 1px solid #ced4da;
}

.d-empty:after {
    content: "\00a0";
}

.sash-svg-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.sash-svg-container img.sash_image, .sash-svg-container object {
    position: static;
}

.sash-alignment-top_left img.sash_image, .sash-alignment-top_left object {
    transform: rotate(0);
}

.sash-alignment-top_right img.sash_image, .sash-alignment-top_right object {
    transform: rotate(90deg);
}

.sash-alignment-bottom_right img.sash_image, .sash-alignment-bottom_right object {
    transform: rotate(180deg);
}

.sash-alignment-bottom_left img.sash_image, .sash-alignment-bottom_left object {
    transform: rotate(270deg);
}


.modal-header>*:first-letter {
    text-transform: capitalize;
}

.loading-wrapper {
    position: relative;
}

.loading-wrapper .loading-block {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.loading-wrapper .loading-block:before {
    content: "";
    background-image: url('/images/default/dots_loading_w.svg');
    width: 110px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pagination li {
    cursor: pointer;
}

.pagination>* {
    margin-left: 2px;
    margin-right: 2px;
}

.pagination .pagination-input {
    position: relative;
}

.pagination .onpageclick {
    padding: 5px 0px;
    text-align: center;
    min-width: 36px;
}

.pagination .onpageclick>* {
    pointer-events: none;
}

.pagination .onpageclick.disabled {
    pointer-events: none;
    opacity: 0.6;
}

.pagination .pagination-input label {
    margin: 0;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s opacity;
}

.pagination input[type="number"] {
    border: none !important;
    outline: none !important;
    width: 90px;
    position: relative;
    z-index: 1;
    -moz-appearance: textfield;
    text-align: center;
}

.pagination input[type="number"]:focus+label {
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.pagination input[type="number"]::-webkit-outer-spin-button,
.pagination input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pagination .page-item.active .page-link {
    background-color: #000;
    border-color: #000;
}

@media(max-width: 767px) {
    .pagination .pagination-input input[type="number"] {
        width: 100%;
    }

    .pagination .pagination-input {
        width: 100%;
    }
}

.bottom-control {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 400;
}

.bottom-control>*~* {
    margin-top: 5px;
}

@media(min-width: 768px) {
    .bottom-control {
        opacity: 0.4;
        transition: 0.2s all;
    }

    .bottom-control:hover {
        opacity: 1;
    }
}

.backtotop {
    height: 50px;
    width: 50px;
    border-radius: 0%;
    color: var(--gold);
    background-color: #1c1c1c;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    cursor: pointer;
    transition: 0.4s all;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1031;
}

.backtotop.show {
    opacity: 1;
    transition: 0.4s all;
    pointer-events: all;
}

.mobile-fixed-email-button {
    height: 50px;
    width: 50px;
    border-radius: 0%;
    color: var(--gold);
    background-color: #1c1c1c;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 100;
    -webkit-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .1);
    -webkit-animation: bounce_border 5s ease-out 1.5s infinite;
    -webkit-transform-origin: 50% 50%;
    animation: bounce_border 5s ease-out 1.5s infinite;
    transform-origin: 50% 50%;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.mobile-fixed-email-button:hover {
    color: #fff;
}

@keyframes bounce_border {
    0% {
        box-shadow: 0 0 0 4px rgba(0, 0, 0, .1)
    }

    17% {
        box-shadow: 0 0 0 4px rgba(0, 0, 0, .1)
    }

    22% {
        box-shadow: 0 0 0 8px rgba(0, 0, 0, .1)
    }

    25% {
        box-shadow: 0 0 0 4px rgba(0, 0, 0, .1)
    }

    30% {
        box-shadow: 0 0 0 8px rgba(0, 0, 0, .1)
    }

    35% {
        box-shadow: 0 0 0 4px rgba(0, 0, 0, .1)
    }

    100% {
        box-shadow: 0 0 0 4px rgba(0, 0, 0, .1)
    }
}

.cookiepref h2.title {
    font-weight: 400;
    font-size: 22px;
    margin: 0;
}

.cookiepref div.company_name {
    font-size: 14px;
}

.cookiepref .nav a {
    font-size: 14px;
    color: #000 !important;
    padding: 5px 15px !important;
}

.cookiepref .nav a.active {
    color: #fff !important;
    background-color: #000;
    border-radius: 0;
}

.cookiepref .main-body {
    display: flex;
    flex-direction: column;
}


.cookiepref .main-body .tabs .tab-pane:not(.active) {
    display: none;
}

.cookiepref .main-body .tabs .text {
    font-size: 14px;
}

.cookiepref .main-body .tabs .text a {
    color: var(--body-color);
}

.cookiepref .main-body .tabs .text>*:last-child {
    margin-bottom: 0;
}

.cookiepref .main-body .tabs h4 {
    font-weight: 400;
}

.cookiepref .line {
    position: relative;
    margin-top: 15px;
}

.cookiepref .line~.line {
    margin-top: 10px;
}


.cookiepref .line input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.cookiepref .line input+label,
.cookiepref .line.forced label {
    padding-left: 45px;
    cursor: pointer;
    transform: translateY(0px);
    display: inline;
}

.cookiepref .line input+label:before,
.cookiepref .line.forced label:before {
    content: "";
    width: 40px;
    height: 20px;
    display: block;
    background-color: #f38787;
    position: absolute;
    left: 0;
    top: 3px;
    border-radius: 20px;
    border: 1px solid #cccccc;
    transition: 0.2s all;
}

.cookiepref .line input+label:after,
.cookiepref .line.forced label:after {
    content: "";
    height: 18px;
    width: 18px;
    display: block;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 1px;
    top: 4px;
    transition: 0.2s all;
}


.cookiepref .line input:checked+label:before,
.cookiepref .line.forced label:before {
    background-color: #61a746;
}

.cookiepref .line input:checked+label:after,
.cookiepref .line.forced label:after {
    left: 20px;
}

body.backdrop-open {
    overflow: hidden;
}

.form_plr {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leaflet-container,
.leaflet-container * {
    outline: none !important;
}

.fixed-top {
    transition: 0.3s all;
}

ol.bigdot_ol {
    column-count: 2;
    gap: 80px;
    counter-reset: item;
    list-style-type: none;
    padding-left: 0
}

ol.bigdot_ol li {
    display: inline-block;
    padding-left: 50px;
    position: relative;
    padding-right: 30px;
    min-width: 100%;
    margin-bottom: 20px
}

ol.bigdot_ol li:before {
    content: counter(item) "  ";
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
    background-color: #1d1d1d;
    border-radius: 50%;
    counter-increment: item;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center
}


.subtitle {
    color: #b9b3a0;
    font-size: 12px;
    text-transform: uppercase;
    padding-left: 50px;
    margin-bottom: 15px;
    position: relative;
    letter-spacing: 2px;
}

.subtitle:before {
    content: "";
    background-color: #b9b3a0;
    height: 1px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
}

@media(max-width: 767px) {
    .subtitle {
        display: none;
    }
}

.whatsapplink {
    background-color: #00c307;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
    text-decoration: none;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 99;
    box-shadow: 0 0 0 0 rgba(0, 195, 7, .7);
    -webkit-animation: pulse 1.5s infinite
}

.whatsapplink:hover {
    text-decoration: none;
    color: #fff;
    -webkit-animation: none
}

@-webkit-keyframes pulse {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 30px rgba(0, 195, 7, 0)
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 rgba(0, 195, 7, 0)
    }
}

.modal .btn-primary {
    background-color: var(--gold);
    color: var(--body-color);
    border: 0;
    padding: 15px 20px;
    min-width: 100px;
}


@media(min-width: 992px) {
    .hf-100-d {
        height: 100vh;
    }
}

@media(max-width: 991px) {
    .hf-100-m {
        height: 100vh;
    }
}

@media(min-width: 768px) {
    .cookiepref .main-body {
        display: flex;
        flex-direction: row;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }


    .CookiePreferencesPopup .modal-dialog {
        min-width: 700px;
    }

    .cookiepref .nav {
        width: 200px;
    }

    .cookiepref .nav a {
        width: 200px;
        max-width: 200px;
        transition: 0.2s all;
        padding: 20px 15px !important;
    }

    .cookiepref .nav a:not(.active):hover {
        background-color: #dfdfdf;
    }

    .cookiepref .main-body .tabs {
        border-left: 1px solid #000;
    }

    .CookiePreferencesPopup .modal-body {
        padding-left: 0;
        padding-right: 0;
    }
}



.shadow-smooth-6 {
    box-shadow: rgba(0, 0, 0, 0.034) 0.6px 0.6px 5.9px, rgba(0, 0, 0, 0.046) 1.5px 1.5px 11.5px, rgba(0, 0, 0, 0.055) 3.1px 3.1px 17.2px, rgba(0, 0, 0, 0.063) 5.6px 5.6px 24.1px, rgba(0, 0, 0, 0.074) 9.8px 9.8px 35.6px, rgba(0, 0, 0, 0.1) 20px 20px 75px;
}

.border-l-4 {
    border-left-width: 4px;
}

.rounded-2xl {
    border-radius: calc(1 * var(--hem));
}

.left-18 {
    left: calc(4.5 * var(--hem));
}

.bottom-0 {
    bottom: 0px;
}

.border-\[\#000000\] {
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.wp-bgclr {
    background-color: var(--gold);
}

.w-72 {
    width: calc(18 * var(--hem));
}

.relative {
    position: relative;
}

.p-4 {
    padding: calc(1 * var(--hem));
}

.rounded-full {
    border-radius: 9999px;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.-top-2 {
    top: calc(calc(0.5 * var(--hem)) * -1);
}

.-left-2 {
    left: calc(calc(0.5 * var(--hem)) * -1);
}

.text-lg {
    font-size: calc(1.125 * var(--hem));
    line-height: calc(1.75 * var(--hem));
}

.bg-\[\#000000\] {
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.flex {
    display: flex;
}

.cursor-pointer {
    cursor: pointer;
}

.absolute {
    position: absolute;
}

.shadow-\[0_0_2px_2px_white\] {
    --tw-shadow: 0 0 2px 2px white;
    --tw-shadow-colored: 0 0 2px 2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.gap-3 {
    gap: calc(0.75 * var(--hem));
}

@media (min-width: 640px) {
    .sm\:top-auto {
        top: auto;
    }
}

@media (min-width: 640px) {
    .sm\:left-\[20px\] {
        left: 20px;
    }
}

@media (min-width: 640px) {
    .sm\:left-auto {
        left: auto;
    }
}

@media (min-width: 640px) {
    .sm\:bottom-\[20px\] {
        bottom: 20px;
    }
}

.z-\[2147483647\] {
    z-index: 2147483647;
}

.left-\[35px\] {
    left: 35px;
}

.items-end {
    align-items: flex-end;
}

.font-sans {
    font-family: Comfortaa, cursive, sans-serif;
}

.bottom-\[35px\] {
    bottom: 35px;
}

.fixed {
    position: fixed;
}

.closing-x {
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
}

.closing-x span {
    top: -2px;
    position: relative;
}

.whats-app-text {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    font-family: 'Maven Pro', sans-serif;
    bottom: 18px;
    left: 85px;
    z-index: 20;
}

.whats-app-text p {
    margin-bottom: 0;
}

@media(max-width: 575px) {
    .whats-app-text {
        bottom: 70px;
        left: 5px;
    }
}

@media(max-height: 567px) {


    h1 {
        font-size: 55px !important;
        line-height: 55px;
    }

    h2 {
        font-size: 50px !important;
        line-height: 50px;
    }
}
/* === globalheader === *//* === popupbasket02 === */

.show-basket-popup {
    position: relative;
}

.basket-popup-body {
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    z-index: 999;
    min-width: 360px;
}

    .basket-popup-body .basket-popup-wrapper {
        background: #fff;
        border: 1px solid #000;
        width: 100%;
    }

    .basket-popup-body:before {
        content: "";
        color: #fff;
        font-weight: 600;
        position: absolute;
        top: -26px;
        right: 0px;
        font-size: 30px;
        width: 100%;
        height: 30px;
    }

    .basket-popup-body .items .popup-baket-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 300px;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #d2d2d2;
        width: 100% !important;
    }

        .basket-popup-body .items .popup-baket-item.item-hidden {
            display: none;
        }

    .basket-popup-body .items .item-list {
        padding: 15px;
    }

        .basket-popup-body .items .item-list div.popup-baket-item.item-visible-last {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

    .basket-popup-body .items .popup-baket-item .image {
        width: 80px;
        height: 80px;
        position: relative;
        overflow: hidden;
        border: 3px solid #fff;
        transition: 0.2s all;
    }

        .basket-popup-body .items .popup-baket-item .image a {
            text-decoration: none !important;
        }

        .basket-popup-body .items .popup-baket-item .image .btn-remove-item {
            position: absolute;
            z-index: 9;
            top: -3px;
            right: -3px;
            color: #fff;
            padding: 2px 4px;
            opacity: 0;
            pointer-events: none;
            background: #000;
            display: flex;
            width: 28px;
            height: 28px;
            align-items: center;
            justify-content: center;
            text-decoration: none !important;
            transition: 0.2s all;
        }

        .basket-popup-body .items .popup-baket-item .image:hover {
            cursor: pointer;
            border: 3px solid #000;
        }

            .basket-popup-body .items .popup-baket-item .image:hover .btn-remove-item {
                opacity: 1;
                pointer-events: all;
            }

        .basket-popup-body .items .popup-baket-item .image .btn-remove-item > i {
            font-size: 16px;
            transition: 0.2s all;
        }

        .basket-popup-body .items .popup-baket-item .image:hover .btn-remove-item > i {
            font-size: 20px;
        }

        .basket-popup-body .items .popup-baket-item .image:before {
            content: "";
            display: block;
            padding-bottom: 100%;
        }

        .basket-popup-body .items .popup-baket-item .image img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 100%;
        }

    .basket-popup-body .items .popup-baket-item .description {
        padding: 0 10px;
        width: auto;
        flex: 1;
        text-align: left;
    }

        .basket-popup-body .items .popup-baket-item .description .product-title {
            color: #3e3e3e;
            font-size: 16px;
            font-weight: normal;
            margin-bottom: 0;
        }

        .basket-popup-body .items .popup-baket-item .description .price {
            color: #404040;
            font-size: 20px;
            font-weight: 700;
        }

        .basket-popup-body .items .popup-baket-item .description .price-vat {
            color: gray;
            font-size: 12px;
        }


    .basket-popup-body .basket-total {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        color: #404040;
        padding: 10px 20px;
        font-weight: bold;
        font-size: 20px;
    }

    .basket-popup-body .basket-control {
        display: flex;
        flex-direction: row;
        align-items: end;
        align-items: flex-end;
        justify-content: space-between;
        padding: 0px 20px 20px 20px;
    }

        .basket-popup-body .basket-control > a {
            background: #2f292b;
            color: #fff;
            text-decoration: none;
            padding: 7px 25px;
            display: block;
            font-family: Open Sans;
            font-size: 18px;
        }

            .basket-popup-body .basket-control > a.edit-my-basket {
                color: #4c4c4c !important;
                font-size: 13px;
                background: none;
                padding: 0;
            }

                .basket-popup-body .basket-control > a.edit-my-basket:hover {
                    text-decoration: underline;
                }

                .basket-popup-body .basket-control > a.edit-my-basket > i {
                    font-size: 14px !important;
                }

        .basket-popup-body .basket-control a.checkout-now {
            border: 2px solid #2f292b;
            transition: 0.2s all;
        }

            .basket-popup-body .basket-control a.checkout-now:hover {
                background: #fff;
                color: #000 !important;
                transform: scale(1.02);
            }

            .basket-popup-body .basket-control a.checkout-now:active {
                background: #fff;
                color: #000 !important;
                transform: scale(0.98);
            }


    .basket-popup-body .btn-remove-item {
        color: #000;
        font-size: 14px;
        cursor: pointer;
    }

        .basket-popup-body .btn-remove-item:hover {
            text-decoration: underline;
        }

    .basket-popup-body .items.v-items-scroll .scroll_arrow {
        background-color: #a6a6a6;
        width: 100%;
        height: 35px;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        opacity: 0.4;
        transition: 0.2s all;
        cursor: pointer;
    }

        .basket-popup-body .items.v-items-scroll .scroll_arrow:hover {
            opacity: 1;
        }

        .basket-popup-body .items.v-items-scroll .scroll_arrow.scroll_up {
            background-image: url('/images/default/angle-up-icon.svg');
        }

        .basket-popup-body .items.v-items-scroll .scroll_arrow.scroll_down {
            background-image: url('/images/default/angle-down-icon.svg');
        }

@media(max-width: 575px) {
    .basket-popup-body {
        right: 15px;
        width: calc(100vw - 30px);
    }

        .basket-popup-body .items .popup-baket-item {
            width: 100%;
        }

            .basket-popup-body .items .popup-baket-item .image .btn-remove-item {
                opacity: 1;
                pointer-events: all;
            }
}

/* === popupbasket02 === *//* === addtobasket_popup === */

.add-to-basket-popup {
}

@media(min-width: 768px) {
    .add-to-basket-popup .modal-dialog {
        max-width: 700px;
    }
}

.add-to-basket-popup .bootbox-close-button {
    position: absolute;
    color: #fff;
    z-index: 9;
    opacity: 1;
    right: 22px;
    top: 16px;
}

.add-to-basket-popup .title {
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 20px 0px;
    border-radius: 0.25rem;
    font-size: 18px;
}

.add-to-basket-popup .product_card {
    padding: 20px;
    box-shadow: 0px 0px 10px 3px #dedede;
    border-radius: 0.25rem;
}

    .add-to-basket-popup .product_card .product_image {
    }

        .add-to-basket-popup .product_card .product_image img {
            width: 100%;
        }


    .add-to-basket-popup .product_card .product_title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .add-to-basket-popup .product_card .product_attr {
        font-family: 14px;
    }

        .add-to-basket-popup .product_card .product_attr table .name > strong {
            margin-right: 10px;
        }

    .add-to-basket-popup .product_card .product_qty {
        font-size: 14px;
    }

    .add-to-basket-popup .product_card .product_net {
        font-size: 22px;
        font-weight: bold;
    }

    .add-to-basket-popup .product_card .product_gross {
        font-size: 12px;
    }

.add-to-basket-popup .actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

    .add-to-basket-popup .actions > * {
        width: calc(50% - 8px);
        font-size: 14px;
        text-transform: uppercase;
        text-decoration: none;
        padding: 18px 0px;
        text-align: center;
        border-radius: 60px;
        background-color: #000;
        border: 2px solid #000;
        font-weight: bold;
        transition: 0.2s all;
    }

    .add-to-basket-popup .actions > button {
        background-color: transparent;
        color: #000;
    }

        .add-to-basket-popup .actions > button:hover {
            background-color: #000;
            color: #fff;
        }

    .add-to-basket-popup .actions > a {
        background-color: #000;
        color: #fff;
    }

        .add-to-basket-popup .actions > a:hover {
            background-color: #fff;
            color: #000;
        }


.add-to-basket-popup .ass_title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.atb_pup .assprod {
    display: none;
}

    .atb_pup .assprod.slick-initialized {
        display: block;
    }

.add-to-basket-popup .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

    .add-to-basket-popup .slick-arrow.left {
        left: 0;
    }

    .add-to-basket-popup .slick-arrow.right {
        right: 0;
    }

.atb_pup .assprod-card {
    padding: 15px;
}


.add-to-basket-popup .assprod .products-04-image {
    position: relative;
    padding-bottom: 100%;
    border-radius: 0.25rem;
    overflow: hidden;
}

    .add-to-basket-popup .assprod .products-04-image img {
        position: absolute;
        width: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }


.atb_pup .assprod-card .products-04-title {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}


.atb_pup .assprod-card .products-04-price {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}

.atb_pup .assprod-card .product-04-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 24px;
    display: flex;
    align-self: center;
    justify-content: center;
}

.add-to-basket-popup .modal-footer {
    display: none;
}


@media(max-width: 767px) {
    .add-to-basket-popup .actions {
        flex-direction: column;
    }

        .add-to-basket-popup .actions > * {
            width: 100%;
        }
}

/* === addtobasket_popup === *//* === nav-01 === */

body {
    margin-top: 0;
}

.nav-01 .container {
    position: relative;
}

.navbar-collapse {
    flex-grow: 0;
}

.logo {
    width: 125px;
    margin-top: 0;
    padding: 0;
}

.navbar {
    padding: 0;
}

.navbar-toggler {
    float: left;
    margin: 10px -10px 0 10px;
    padding: 3px 5px;
}

.navbar-nav {
    width: auto;
}

.nav-link {
    color: rgb(255, 255, 255);
    padding-left: 10px;
    border-bottom: 1px solid var(--navlink-mobile-bordercolor);
}

.dropdown-item-menu .nav-link {
    color: #fff;
}

.item-dropdown {
    position: relative;
}


.nav-item .nav-link {
    font-size: 18px;
    text-decoration: none;
}

    .nav-item .nav-link,
    .nav-item .nav-link:hover {
        text-decoration: none;
    }

.navbar-phone {
    position: absolute;
    color: var(--navbar-phone-color);
    text-align: right;
    right: 15px;
    top: 20px;
    z-index: 99999;
}

.navbar-phone-button {
    float: right;
    margin: 10px 10px 0 -10px;
    padding: 2px 7px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: var(--navbar-phone-icon);
}

.dropdown-menu {
    margin: 0;
    border: none;
    border-radius: 0;
    background: #ccc;
}

.fixed-top.scrolled {
    background-color: var(--sticky-header-background);
    height: 40px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

    .fixed-top.scrolled #navbar-menu {
        margin-top: 0px;
    }

    .fixed-top.scrolled .navbar-phone {
        display: none;
    }

    .fixed-top.scrolled .logo {
        margin-top: 0;
    }

.navbar-brand {
    position: relative;
    display: block;
}

   /* .navbar-brand::after {
        content: "";
        background-image: url(/images/logo_mask.png);
        background-size: cover;
        width: 248px;
        height: 36px;
        display: block;
        position: absolute;
        bottom: 5px;
        right: 0;
        -webkit-mask-image: url(/images/logo.png);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: right bottom;
        mask-image: url(/images/logo.png);
        mask-repeat: no-repeat;
        mask-position: right bottom;
        opacity: 0;
        transition: 0.4s;
    }

.navbar.scrolled .navbar-brand::after {
    opacity: 1;
}*/

.nav-link:focus, .nav-link:hover {
    color: #fff;
}

@media(min-width: 1200px) {
    .nav-item .nav-link,
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 15px 30px;
    }
}

@media(min-width: 992px) {

    .navbar {
        height: 178px;
    }

    .fixed-top.scrolled .nav-link {
        color: rgb(255, 255, 255);
    }

    .nav-item .nav-link,
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 15px 8px;
        margin: 0px 5px;
    }

    .nav-item.lvl1 > .nav-link.currentpage:after {
        content: "";
        background-color: var(--gold);
        position: absolute;
        left: 10px;
        bottom: 0;
        width: calc(100% - 40px);
        height: 2px;
    }

    .nav-link.dropdown-switch .dd_caret:before {
        content: "\f0d7";
        font-family: "Font Awesome 5 Free";
        font-weight: 800;
        margin-left: 5px;
    }

    .item-dropdown .dropdown-item-menu {
        pointer-events: none;
    }

    .item-dropdown.show > .dropdown-item-menu {
        pointer-events: all;
    }

    .item-dropdown.lvl1 > .dropdown-item-menu {
        position: absolute;
        left: 5px;
        top: 100%;
        padding-top: 4px;
        border-radius: 0px;
        width: calc(100% - 10px);
        background: none;
        overflow: visible;
    }

        .item-dropdown.lvl1 > .dropdown-item-menu .navlinks-wrapper .nav-item {
            transition: 0.4s all;
            transform: translateX(25%);
            opacity: 0;
        }

    .item-dropdown.lvl1.show > .dropdown-item-menu .navlinks-wrapper .nav-item {
        transform: translateX(0%);
        opacity: 1;
        transition-delay: calc(75ms * var(--navorder, 1));
    }

    .item-dropdown.show.lvl2 > .dropdown-item-menu {
        position: absolute;
        left: 100%;
        top: 0;
        min-height: 100%;
        min-width: 180px;
        border-radius: 5px;
    }

    .navbar-expand-lg .navbar-nav > .nav-item:last-child > .nav-link {
        border: 2px solid var(--gold);
        color: var(--gold);
        font-weight: 500;
    }
    .navbar-expand-lg .navbar-nav > .nav-item:last-child > .nav-link:after {
        background-color:unset !important;
    }
    .scrolled .navbar-nav > .nav-item:last-child > .nav-link {
        border: 2px solid var(--gold);
        color: var(--gold);
        font-weight: 500;
        background-color: var(--gold);
        color: #2a2a2a;
    }

        .navbar-expand-lg .navbar-nav > .nav-item:last-child > .nav-link:hover {
            background-color: var(--gold);
            color: #2a2a2a;
        }

    .logo {
        width: 298px;
    }

/*    .navbar-brand::after {
        width: 224px;
        height: 36px;
        bottom: 5px;
        right: 0;
        -webkit-mask-size: 298px auto;
        mask-size: 298px auto;
    }*/

    .navbar-nav {
        background: transparent;
    }

    #navbar-menu {
        margin-left: 15px;
    }

    .nav-link {
        color: #fff;
        border: none;
        padding: 0px 15px;
        position: relative;
    }

    .dropdown-menu {
        margin-top: 15px;
        background: #000;
    }

        .dropdown-menu:after {
            content: "";
            position: absolute;
            top: -19px;
            height: 20px;
            left: 0;
            right: 0;
        }

        .dropdown-menu:before {
            content: "";
            position: absolute;
            top: -19px;
            left: 20px;
            border: 10px solid transparent;
            border-bottom: 9px solid #000;
        }

    .dropdown-item {
        color: #fff;
    }

        .dropdown-item:hover {
            background: #ff9900;
        }

    .navbar .nav-item.item-dropdown.lvl1 > .dropdown-switch:after,
    .navbar .nav-item.item-dropdown.lvl2 > .dropdown-switch:after {
        float: right;
    }

    .fixed-top.scrolled {
        height: 110px;
        background-color: rgb(216, 216, 216);
        box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.1);
    }

        .fixed-top.scrolled .nav-link {
            color: #2a2a2a;
        }

    .navbar .nav-item.item-dropdown.show > .nav-link,
    .navbar .nav-item.lvl1 > .nav-link:hover {
        background-color: var(--gold);
        color: #2a2a2a;
    }

    .navbar .nav-item.item-dropdown.show > .nav-link {
        position: relative;
    }

    .navbar .nav-item.item-dropdown.lvl1 > .nav-link {
        display: block;
        min-height: 61px;
    }

    .navbar .nav-item.item-dropdown.lvl1 > .dropdown-item-menu:before {
        content: "";
        background-color: var(--gold);
        position: absolute;
        top: -4px;
        left: 0;
        width: 100%;
        height: 0px;
        z-index: -1;
        transition: 0.2s all;
        opacity: 0;
    }

    .navbar .nav-item.item-dropdown.lvl1.show > .dropdown-item-menu:before {
        height: calc(100% - 30px);
        opacity: 1;
        transition: calc(150ms * var(--navcount, 1)) all;
    }

    .navbar .nav-item.item-dropdown.lvl1 > .dropdown-item-menu .nav-item.lvl2 ~ .nav-item.lvl2 {
        margin-top: 4px;
    }

    .navbar .nav-item.item-dropdown.lvl1 > .dropdown-item-menu .nav-item.lvl2:last-child > .nav-link {
        border-bottom: 0px solid var(--gold);
        transition: 0.4s all;
    }

    .navbar .nav-item.item-dropdown.lvl1.show > .dropdown-item-menu .nav-item.lvl2:last-child > .nav-link {
        border-bottom: 4px solid var(--gold);
    }

    .navbar .nav-item.item-dropdown.lvl1 > .dropdown-item-menu .nav-link {
        position: relative;
        color: #fff;
        font-size: 16px;
        padding: 24px 30px;
        line-height: 16px;
        white-space: nowrap;
        width: fit-content;
        width: -webkit-fit-content;
        min-width: 250px;
        background-size: cover;
    }

        .navbar .nav-item.item-dropdown.lvl1 > .dropdown-item-menu .nav-link:before {
            content: "";
            background-color: rgba(0,0,0,0.75);
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            transition: 0.3s all;
        }

        .navbar .nav-item.item-dropdown.lvl1 > .dropdown-item-menu .nav-link:hover:before {
            background-color: rgba(0,0,0,0.95);
        }

        .navbar .nav-item.item-dropdown.lvl1 > .dropdown-item-menu .nav-link > * {
            position: relative;
            z-index: 2;
        }

    .navbar .back_button,
    .navbar .menu_title {
        display: none;
    }
}

@media(max-width: 991.98px) {
    .navbar-nav a:hover {
        color: #2a2a2a;
    }
    .lvl2 a:hover {
        color: #fff !important;
    }
    body.menu_open {
        overflow: hidden;
    }

    .fixed-top {
        height: 119px;
    }

        .fixed-top.scrolled {
            height: 119px;
            background-color: rgb(216, 216, 216);
            box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.1);
        }

    .navbar-brand {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo {
        width: 298px;
    }

  /*  .navbar-brand::after {
        width: 224px;
        height: 36px;
        bottom: 5px;
        right: 0;
        -webkit-mask-size: 298px auto;
        mask-size: 298px auto;
    }*/

    .navbar .close_menu {
        background-color: #151515;
        color: var(--gold);
        width: 60px;
        height: 60px;
        align-items: center;
        justify-content: center;
        font-size: 35px;
        border: none;
        outline: none;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 9999;
    }

    .hamburger {
        margin: 0;
        padding-right: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        left: auto;
        bottom: auto;
    }


    .hamburger-box {
        width: 32px;
        height: 20px;
    }

    .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
        width: 32px;
        height: 2px;
        background-color: var(--gold);
        transition: 0.1s all;
    }

    .navbar-toggler .hamburger-inner::before {
        width: 24px;
        margin-left: 8px;
        top: -9px;
    }

    .navbar-toggler.is-active .hamburger-inner::before {
        width: 32px;
        margin-left: 0;
    }

    .navbar-toggler .hamburger-inner::after {
        top: -18px;
    }

    .navbar.menu_open .hamburger-inner, .navbar.menu_open .hamburger-inner::before, .navbar.menu_open .hamburger-inner::after {
        background-color: #1f1f1f;
    }


    #navbar-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url(/images/cta_after.png);
        background-color: var(--gold);
        background-position: calc(50% + 20px) calc(100% + 500px);
        background-repeat: no-repeat;
        display: block;
        transition: 0.4s all;
        pointer-events: none;
        opacity: 0;
    }

        #navbar-menu.show {
            pointer-events: all;
            opacity: 1;
        }

        #navbar-menu .navbar-nav {
            padding: 100px 0px 0px;
        }

    .nav-item .nav-link {
        font-size: 40px;
        color: #2a2a2a;
        font-weight: 400;
        line-height: 40px;
        padding: 20px 0px;
        border: 0;
        border-bottom: 1px solid #b28f41;
    }

    #navbar-menu .navbar-nav .nav-item.lvl1 > .nav-link {
        padding-left: 34px;
    }

    .nav-item.item-dropdown > .dropdown-item-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transition: 0.4s all;
        opacity: 0;
        pointer-events: none;
        background-color: var(--gold);
        z-index: 1;
        padding-top: 100px;
        background-image: url(/images/cta_after.png);
        background-color: var(--gold);
        background-position: calc(50% + 20px) calc(100% + 500px);
        background-repeat: no-repeat;
    }

    .nav-item.item-dropdown.show > .dropdown-item-menu {
        opacity: 1;
        pointer-events: all;
    }

    .nav-item.item-dropdown > .dropdown-item-menu .container {
        max-width: 100%;
        padding: 0px 34px;
        overflow: auto;
        max-height: 100%;
    }

    .nav-link.dropdown-switch {
        position: relative;
    }


        .nav-link.dropdown-switch .dd_caret {
            position: absolute;
            right: 0;
            width: 70px;
            height: 100%;
            top: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            padding-right: 20px;
        }

            .nav-link.dropdown-switch .dd_caret:before {
                content: "\f061";
                font-family: "Font Awesome 5 Pro"
            }

    .navbar .back_button {
        font-size: 18px;
        font-weight: 500;
        background: none;
        border: none;
        outline: none;
        position: fixed;
        top: 4px;
        left: 34px;
        padding-left: 0;
        padding-right: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #2a2a2a !important;
    }

        .navbar .back_button i {
            font-size: 16px;
            margin-right: 5px;
            color: #2a2a2a !important;
        }

    .navbar .menu_title {
        font-size: 40px;
        color: #2a2a2a;
        font-weight: 400;
        line-height: 40px;
        padding: 20px 0px;
    }

    .nav-item.item-dropdown.lvl1 > .dropdown-item-menu .nav-item ~ .nav-item {
        margin-top: 8px;
    }

    .nav-item.item-dropdown.lvl1 > .dropdown-item-menu .nav-link {
        position: relative;
        color: #fff;
        padding: 24px;
        font-size: 16px;
        line-height: 16px;
        min-height: 125px;
    }

        .nav-item.item-dropdown.lvl1 > .dropdown-item-menu .nav-link:before {
            content: "";
            background-color: rgba(0,0,0,0.75);
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            transition: 0.3s all;
        }

        .nav-item.item-dropdown.lvl1 > .dropdown-item-menu .nav-link > * {
            position: relative;
            z-index: 2;
        }
}


@media(max-width: 767.98px) {
    .fixed-top,
    .fixed-top.scrolled {
        height: 93px;
    }

    .logo {
        width: 238px;
    }

   /* .navbar-brand::after {
        width: 181px;
        height: 27px;
        bottom: 5px;
        right: 0;
        -webkit-mask-size: 238px auto;
        mask-size: 238px auto;
    }*/

    .hamburger {
        right: 0px;
    }
}

@media(max-width: 767.98px) {
    #navbar-menu {
        background-position: calc(50% + 20px) calc(100% + 600px);
    }
}


@media(max-width: 1402px) {
    .navbar-brand .logo {
        width:250px;
    }
}
@media(max-width: 1200px) {
    .navbar-brand .logo {
        width: 200px;
    }
}
@media(max-width: 992px) {
    .navbar-brand .logo {
        width: 298px;
    }
}
.scrolledlogo {
    display:none;
}
.scrolled .scrolledlogo {
    display:block;

}
.scrolled .logomain {
    display: none;
}
.logo {
    width: calc(100vw - 30px - 80px);
    max-width: 238px;
}

.hamburger {
    right: 30px;
}
@media(max-width: 370px) {
    .logo {
        max-width: 190px;
    }
}
/* === nav-01 === *//* === case-studies_05 === */

.cs05_top_padding {
    height: 178px;
    width: 100%;
    background-color: #151515;
}

.cs05 {
    padding: 50px 0 115px;
    overflow: hidden;
    background-color: #d8d8d8;
}

.cs05 h1 {
    margin-bottom: 50px;
}


.cs05 .row {
    --bs-gutter-x: 90px;
    --bs-gutter-y: var(--bs-gutter-x);
}

.cs05 .item {
    height: 100%;
    border-bottom: 1px solid #b9b3a0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: stretch;
    position: relative;
}

.cs05 .item>a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cs05 .image-wrapper {
    background-color: #676767;
    position: relative;
    height: 625px;
    width: 100%;
}

.cs05 .lvl3 .image-wrapper {
    height: auto;
}

.cs05 .lvl3 .image-wrapper img {
    aspect-ratio: 1;
}

.cs05 .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs05 .item-title {
    color: var(--gold);
    font-size: 38px;
    padding: 15px 0px;
    padding-right: 0px;
    padding-right: 30px;
    position: relative;
    font-weight: 500;
    height: auto;
    width: 100%;
    flex: auto;
    display: flex;
    align-items: center;
    line-height: 38px;
}

.cs05 .item-title i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-size: 26px;
}


.cs05 .lvl3 .item-title {
    font-size: 24px;
}


.cs05 .row-list>div:nth-child(2) .image-wrapper:after {
    content: "";
    background-image: url(/images/case_blueprint.png);
    width: 413px;
    height: 329px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -350px;
}

.cs05 .row-list>div:nth-child(3) .image-wrapper:after {
    content: "";
    background-image: url(/images/case_blueprint02.png);
    width: 467px;
    height: 364px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -417px;
}


@media(max-width: 575.98px) {
    .cs05 .row>* {
        margin-top: 50px;
    }

    .cs05 .item-title {
        font-size: 26px;
        line-height: 30px;
    }
}

@media(max-height: 567px) {
    .cs05 .row>* {
        margin-top: 60px;
    }

    .cs05 {
        padding: 60px 0 60px;
    }

}
/* === case-studies_05 === *//* === call-to-action-01 === */

.cta-01 {
    padding: 180px 0 150px;
    background-color: rgb(153, 153, 153);
    background-color: var(--gold);
    background-position: center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: visible;
    z-index: 1;
}

    .cta-01:before {
        content: "";
        background-image: url(/images/cta_before.png);
        position: absolute;
        left: 0px;
        top: 0px;
        width: 50vw;
        height: 100%;
        z-index: 0;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left top;
    }

    .cta-01:after {
        content: "";
        background-image: url(/images/cta_after.png);
        position: absolute;
        right: 0px;
        top: 50%;
        width: 50vw;
        height: calc(100% + 80px);
        z-index: 0;
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-position: right center;
        transform: translateY(-50%);
    }

    .cta-01 > * {
        position: relative;
        z-index: 2;
    }

    .cta-01,
    .cta-01 .container,
    .cta-01 .container .row {
        min-height: 300px;
    }

.cta-01-title {
    font-size: 76px;
    line-height: 76px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #2a2a2a;
    text-align: left;
}

.cta-01-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 44px;
    line-height: 48px;
    color: #2a2a2a;
    text-align: left;
}

    .cta-01-text p:last-of-type {
        margin-bottom: 0;
    }

.cta-01-btn,
.cta-01-btn:hover {
    color: var(--gold);
    background-color: var(--body-color);
    float: left;
}

.cta-01 .cta-01-title {
    margin: 0;
}

.cta-01-phone {
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .cta-01 {
        padding: 125px 0 125px;
    }

    .cta-01-text {
        font-size: 40px;
    }
}

@media(max-width: 991px) {
    .cta-01:after {
        background-position: 250% center;
    }

    .cta-01::after {
        display: none;
    }
}

@media(max-width: 767px) {
    .cta-01 {
        padding: 90px 0 90px;
    }

      /*  .cta-01::after {
            background-position: -300% center;
        }*/
}

@media(max-width: 575px) {
    .cta-01 {
        padding: 50px 0px;
        text-align: center;
    }

        .cta-01 .cta-01-title {
            font-size: 50px;
            text-align: center;
            line-height: 54px;
            margin-bottom: 15px;
        }

    .cta-01-text {
        font-size: 30px;
        text-align: center;
        line-height: 34px;
    }

    .cta-01-btn, .cta-01-btn:hover{
        width: 100%;
    }
}


@media(max-height: 567px) {

    .cta-01 .cta-01-title {
        font-size: 56px !important;
        line-height: 56px;
    }
    .cta-01 {
        padding: 60px 0 60px
    }
}


/* === call-to-action-01 === *//* === footer-05-brochure === */

.footer_05_brochure {
    color: #fff;
    position: relative;
    padding: 160px 0 65px 0;
    background-color: #151515;
    overflow-x: hidden;
}

    .footer_05_brochure::before {
        content: "";
        background-image: url(/images/banner_overlay06.png);
        background-position: center;
        background-size: cover;
        position: absolute;
        left: -360px;
        top: -310px;
        width: 726px;
        height: 870px;
        z-index: 0;
        pointer-events: none;
    }

    .footer_05_brochure.hidetop {
        overflow: visible;
        padding-top: 0;
    }

        .footer_05_brochure.hidetop:before {
            top: auto;
            bottom: 0;
            z-index: 2;
            mix-blend-mode: lighten;
        }

        .footer_05_brochure.hidetop .footer-menu-wrapper {
            margin-top: 0;
        }

    .footer_05_brochure > * {
        position: relative;
        z-index: 2;
    }

.areas-01-map + .footer_05_brochure {
    padding-top: 10px;
}

.footer_05_brochure .nav-link > svg {
    display: none;
}

.footer_05_brochure .fa-envelope-open {
    font-size: 19px !important;
}

.footer_05_brochure h4 {
    margin-bottom: 3px;
    letter-spacing: -0.025em;
}

.footer_05_brochure .footer_05_top_title {
    text-transform: uppercase;
    font-size: 14px;
    padding-bottom: 25px;
    border-bottom: 4px dashed #fff;
    margin-bottom: 25px;
    max-width: 40%;
}

.footer_05_brochure .footer_05_main_title h2 {
    margin-bottom: 33px;
    color: #fff;
}

.footer_05_brochure .footer_05_main_text {
    text-align: left;
    font-size: 30px;
    line-height: 34px;
}

    .footer_05_brochure .footer_05_main_text p:last-of-type {
        margin-bottom: 0;
    }

.footer_05_brochure .footer_05_form {
    margin-top: 12px;
}

.footer_05_brochure .footer05_bottom_container {
    margin-top: 45px;
}

.footer_05_brochure .footer_05_form form input,
.footer_05_brochure .footer_05_form form select {
    background-color: #fff;
}

.footer_05_brochure .footer_05_form form textarea {
    background-color: #fff;
}

.footer_05_brochure .footer_05_form form .has-error input.error,
.footer_05_brochure .footer_05_form form .has-error select.error,
.footer_05_brochure .footer_05_form form .has-error textarea.error {
    background-color: #ffc8c8;
}

.footer_05_brochure .footer_05_form form .required-star {
    color: #fff;
}

.footer_05_brochure .footer_05_form form .col-form-label {
    padding-top: 0;
    font-size: 16px;
}

.footer_05_brochure .footer_05_form form .checkbox + label {
    padding-left: 34px !important;
    font-size: 15px;
    line-height: 22px;
}

.footer_05_brochure .form > .row {
    --bs-gutter-x: 40px;
}

.footer_05_brochure .footer_05_form form .checkbox + label::before {
    content: "";
    background-color: #fff;
    display: block;
    width: 19px;
    height: 19px;
    top: 0;
}

.footer_05_brochure .footer_05_form form .tickbox.has-error label::before {
    background-color: rgb(255, 0, 0);
}

.footer_05_brochure .footer_05_form form .checkbox:checked + label:before {
    content: "";
}

.footer_05_brochure .footer_05_form form .checkbox:checked + label:after {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    color: #000;
    position: absolute;
    left: 2px;
    top: -1px;
    font-size: 14px;
}

.separator {
    font-style: normal;
    padding: 0 3px
}

.footer_05_brochure .footer_05_form form .required {
    display: none;
}

.footer_05_brochure .foonter05_grid {
    display: grid;
}

.footer_05_brochure .footer-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer_05_brochure .footer-icon-wrapper {
    display: none;
}

.footer_05_brochure .foonter05_grid .content {
    display: flex;
    align-content: center;
}

.footer_05_brochure .foonter05_grid .content_wrapper {
    margin-top: 12px;
}

.footer_05_brochure .content_wrapper:nth-child(2) {
    margin-top: 20px;
}

    .footer_05_brochure .content_wrapper:nth-child(2) .icon_link a {
        color: var(--gold);
    }

.footer_05_brochure .foonter05_grid .content .icon {
    font-size: 25px;
}

.footer_05_brochure .foonter05_grid .content .icon_text {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer_05_brochure .foonter05_grid .content .icon_link {
    font-size: 18px;
    white-space: nowrap;
}

    .footer_05_brochure .foonter05_grid .content .icon_link a {
        text-decoration: none;
    }

.footer_05_brochure .foonter05_grid .content .social_links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}

    .footer_05_brochure .foonter05_grid .content .social_links a {
        display: flex;
        width: 63px;
        height: 63px;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: .3s all;
        overflow: hidden;
        border-radius: 5px;
        background-color: #1c1c1c;
        color: var(--button-color);
    }

        .footer_05_brochure .foonter05_grid .content .social_links a:active {
            background-color: #fff;
            color: #000;
        }

        .footer_05_brochure .foonter05_grid .content .social_links a i {
            font-size: 22px;
            color: var(--gold);
        }

        .footer_05_brochure .foonter05_grid .content .social_links a img,
        .footer_05_brochure .foonter05_grid .content .social_links a svg {
            width: 24px;
            height: auto;
            fill: var(--gold) !important;
            stroke: var(--gold) !important;
        }

            .footer_05_brochure .foonter05_grid .content .social_links a svg g > * {
                transition: 0.3s fill, 0.3s stroke;
            }

            .footer_05_brochure .foonter05_grid .content .social_links a svg g,
            .footer_05_brochure .foonter05_grid .content .social_links a svg g path,
            .footer_05_brochure .foonter05_grid .content .social_links a:active svg g > * {
                fill: var(--gold) !important;
                stroke: var(--gold) !important;
            }

.footer_05_brochure .foonter05_grid .content .reg_info {
    font-size: 20px;
    line-height: 1.44;
    padding-top: 6px;
}

    .footer_05_brochure .foonter05_grid .content .reg_info > p {
        margin-bottom: 0;
    }

        .footer_05_brochure .foonter05_grid .content .reg_info > p:last-of-type {
            margin-bottom: 0;
        }

        .footer_05_brochure .foonter05_grid .content .reg_info > p strong {
            font-weight: 500;
        }

.footer_05_brochure .footer05_bottom {
    font-size: 14px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

    .footer_05_brochure .footer05_bottom a {
        color: #fff;
        text-decoration: none;
    }

    .footer_05_brochure .footer05_bottom img {
        height: 15px;
        width: auto;
    }

    .footer_05_brochure .footer05_bottom .advansys {
        color: var(--gold);
    }

.footer_05_brochure .footer-menu {
    justify-content: space-between;
    line-height: 28px;
    display: flex;
}

    .footer_05_brochure .footer-menu > .nav-item {
        width: auto;
        z-index: 1;
        border: 0;
    }

        .footer_05_brochure .footer-menu > .nav-item .nav-link {
            color: #fff !important;
            padding: 0 !important;
            font-size: 36px;
            border: 0;
        }

            .footer_05_brochure .footer-menu > .nav-item .nav-link .dd_caret {
                display: none;
            }

.footer_05_brochure .reload_captcha.btn {
    color: #282828;
    border: 1px solid #282828;
}

    .footer_05_brochure .reload_captcha.btn:hover,
    .footer_05_brochure .reload_captcha.btn:active,
    .footer_05_brochure .reload_captcha.btn:focus,
    .footer_05_brochure .reload_captcha.btn:focus-within {
        color: #282828;
    }

.footer_05_brochure .captcha_whatis {
    text-decoration: none;
    color: #282828;
}

.footer_05_brochure .footer-registration-img {
    width: 80%;
}

.footer-registration-wrapper {
    display: none;
}

.footer_05_form .row:nth-child(2) .form-group:last-child {
    margin-top: 30px;
}

.footer_05_brochure .nav-item.lvl2 {
    margin: 0;
}

    .footer_05_brochure .nav-item.lvl2:hover {
        background-color: #2060b3;
    }

.footer_05_brochure .navbar-nav {
    margin-right: 15px;
    height: 100%;
}

.footer_05_brochure .show .dropdown-item-menu {
    position: absolute;
    width: 253px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 28px;
}

.footer_05_brochure .nav-item.lvl2 .nav-link {
    font-size: 14px;
    line-height: 20px;
    padding: 13px 23px 9px 23px !important;
    display: flex;
    align-items: start;
    min-height: 62px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: normal;
}

    .footer_05_brochure .nav-item.lvl2 .nav-link::before {
        content: "";
        display: inline-block;
        background-image: url('../images/arrow-right-light-white.svg');
        background-size: 100%;
        background-repeat: no-repeat;
        margin-bottom: 0px;
        min-height: 10px;
        min-width: 14px;
        margin-right: 13px;
        margin-top: 6px;
        color: transparent;
    }

.footer_05_brochure .nav-item.item-dropdown.lvl1 > .dropdown-switch::after {
    display: none;
}

.footer_05_brochure .footer-menu-wrapper {
    margin-top: 85px;
    padding-top: 45px;
}

.footer_05_form .form-group {
    margin-bottom: 22px;
}

.footer_05_brochure .footer_05_form form button[type="submit"] {
    margin-top: 12px;
    min-width: 225px;
}

.footer_05_brochure .content-wrapper-contacts .icon_link a {
    color: var(--gold, #fff) !important;
    font-size: 20px;
}

.footer_05_brochure .foonter05_grid .content-wrapper-contacts {
    margin-top: 20px;
}

.footer_05_brochure .foonter05_grid .content-wrapper-address {
    margin-top: 30px;
}

@media(min-width: 567px) {
    .footer_05_brochure .form .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media(max-width: 1399.98px) {
    .footer_05_brochure .footer_05_main_text br {
        display: none;
    }

    .footer_05_brochure .footer_05_main_text {
        width: 90%;
    }

    .footer_05_brochure .item-dropdown.show > .dropdown-item-menu {
        display: none;
    }

    .footer_05_brochure .footer-menu-wrapper {
        margin-top: 75px;
    }

    .footer_05_brochure .footer-menu > .nav-item .nav-link {
        font-size: 26px;
    }

    .footer_05_brochure .footer_05_form {
        margin-top: 16px;
    }

        .footer_05_brochure .footer_05_form form button[type="submit"] {
            margin-top: 0px;
        }
}

@media(max-height: 567px) {
    .footer_05_brochure {
        padding: 60px 0 30px 0;
    }

    .footer_05_form .form-group {
        margin-bottom: 10px;
    }
    .footer_05_brochure .footer-menu-wrapper {
        margin-top: 60px !important;
        padding-top: 0;
    }
    .hidetop {
        margin-top: 0 !important;
        padding-top: 1px !important;
    }
}

@media(max-width: 1199px) {
    .footer_05_brochure {
        padding: 130px 0 65px 0;
    }

        .footer_05_brochure .form > .row {
            --bs-gutter-x: 20px;
        }
}

@media(max-width: 991.98px) {
    .footer_05_brochure {
        padding: 140px 0 30px;
    }

        .footer_05_brochure .foonter05_grid {
            grid-template-columns: 1fr 1fr;
        }

            .footer_05_brochure .foonter05_grid .content_wrapper:first-child {
                margin-top: 0;
            }

            .footer_05_brochure .foonter05_grid .content .reg_info {
                padding-top: 4px;
            }

            .footer_05_brochure .foonter05_grid .content .social_links {
                margin-top: 16px;
            }

            .footer_05_brochure .foonter05_grid .content-wrapper-address,
            .footer_05_brochure .foonter05_grid .content-wrapper-contacts {
                padding-left: 15px;
                margin-top: 0;
                grid-column: 2/3;
            }

        .footer_05_brochure .footer-menu {
            flex-wrap: wrap;
        }

        .footer_05_brochure .content-wrapper-social {
            grid-column: 2;
            padding-left: 17px;
        }

    .footer_05_main_text {
        grid-column: 1/2;
    }

    .footer_05_brochure .footer_05_form {
        margin-top: 93px;
    }

        .footer_05_brochure .footer_05_form form button[type="submit"] {
            margin-top: 0;
        }

    .footer_05_brochure .footer-menu-wrapper {
        padding-top: 25px;
    }

    .footer_05_brochure .footer05_bottom_container {
        margin-top: 25px;
    }


    .footer_05_brochure .footer_05_main_title {
        grid-row: 1;
        grid-column: 1/3;
    }

    .footer_05_brochure .footer_05_main_text {
        grid-row: 2;
        grid-column: 1/3;
        width: 100%;
    }

    .footer_05_brochure .foonter05_grid .content-wrapper-address {
        grid-row: 3;
        grid-column: 1/2;
        margin-top: 15px;
    }

    .footer_05_brochure .foonter05_grid .content-wrapper-contacts {
        grid-row: 4;
        grid-column: 1/2;
    }

    .footer_05_brochure .foonter05_grid .content-wrapper-social {
        grid-row: 3;
        grid-column: 2/3;
    }
}

@media(max-width: 767.98px) {
    .footer_05_brochure {
        padding: 120px 0 70px;
    }

        .footer_05_brochure .footer_05_top_title {
            margin: 0 auto 25px;
        }

        .footer_05_brochure .footer_05_main_text {
            font-size: 26px;
            line-height: 30px;
        }

        .footer_05_brochure .foonter05_grid .content_wrapper {
            margin-top: 0;
            padding-bottom: 0%;
            width: 100%;
            min-width: 50%;
        }

            .footer_05_brochure .foonter05_grid .content_wrapper .content {
                position: static;
            }

        .footer_05_brochure .footer-registration-img {
            width: 70%;
        }

        .footer_05_brochure .footer-menu-wrapper {
            margin-top: 15px;
        }

        .footer_05_brochure .foonter05_grid .content-wrapper-address {
            padding-left: 0px;
        }

        .footer_05_brochure .foonter05_grid .content-wrapper-contacts {
            padding-left: 0px;
            margin-top: 15px;
        }

        .footer_05_brochure .content-wrapper-social {
            padding-left: 9px;
        }

        .footer_05_brochure .foonter05_grid .content .reg_info {
            padding-top: 0;
        }

        .footer_05_brochure .footer_05_main_text {
            margin-bottom: 28px;
        }

        .footer_05_brochure .footer_05_main_title h2 {
            margin-bottom: 26px;
        }

        .footer_05_brochure .footer_05_form {
            margin-top: 75px;
        }

        .footer_05_brochure .footer-menu > .nav-item .nav-link {
            font-size: 22px;
        }

        /* .footer_05_brochure .footer-menu {
            display: grid;
            justify-content: center;
            text-align: center;
            row-gap: 12px;
        }*/

        .footer_05_brochure .footer05_bottom_container {
            margin-top: 20px;
            text-align: center;
        }

        .footer_05_brochure .footer_05_form form button[type="submit"] {
            margin-top: 5px;
        }

        .footer_05_brochure .foonter05_grid .content .icon_link a[href^=tel] {
            font-size: 20px;
        }

        .footer_05_brochure .foonter05_grid .content .icon_link a[href^=mailto] {
            font-size: 16px;
        }
}

@media(max-width: 370px) {
    .footer_05_brochure::before {
        width: 650px;
    }
}
@media(max-width: 575.98px) {
    
    .footer_05_brochure {
        padding: 50px 0;
    }

        .footer_05_brochure .foonter05_grid .content_wrapper {
            padding-bottom: 0%;
            width: 100%;
            margin-top: 18px;
        }

            .footer_05_brochure .foonter05_grid .content_wrapper .content {
                width: 100%;
            }

        .footer_05_brochure .footer05_bottom {
            display: block;
            line-height: 24px;
        }

            .footer_05_brochure .footer05_bottom > span {
                display: block;
            }

        .footer_05_brochure .form .bottom-box {
            text-align: center;
        }

        .footer_05_brochure .foonter05_grid .content .social_links {
            justify-content: start;
            margin-top: 8px;
        }

        .footer_05_brochure .content-wrapper-contacts {
            padding: 0;
        }

        .footer_05_brochure .footer-registration-img {
            width: 100%;
        }

        .footer_05_brochure .footer-menu-wrapper {
            padding-top: 30px;
            margin-top: 15px;
        }

        .footer_05_brochure .footer_05_form {
            margin-top: 25px;
        }

        .footer_05_brochure .footer_05_main_title h2 {
            font-size: 38px;
        }

        .footer_05_brochure .footer-menu > .nav-item .nav-link {
            font-size: 20px;
        }

        .footer_05_brochure .footer_05_form form button[type="submit"] {
            width: 100%;
        }

        .footer_05_brochure .foonter05_grid {
            grid-template-columns: 1fr;
            margin-bottom: 20px;
        }

            .footer_05_brochure .foonter05_grid .content-wrapper-address {
                grid-row: 3;
                grid-column: 1/3;
            }

            .footer_05_brochure .foonter05_grid .content-wrapper-contacts {
                grid-row: 4;
                grid-column: 1/3;
            }

            .footer_05_brochure .foonter05_grid .content-wrapper-social {
                grid-row: 5;
                grid-column: 1/3;
            }

        .footer_05_brochure .footer_05_main_text {
            margin-bottom: 7px;
            text-align: left;
            font-size: 18px;
            line-height: 28px;
        }

        .footer_05_brochure .foonter05_grid .content-wrapper-contacts {
            padding-left: 0px;
            margin-bottom: 0px;
        }

        .footer_05_brochure .content-wrapper-social {
            padding-left: 0px;
        }

    .footer_05_form .form-group {
        margin-bottom: 23px;
    }

   

    .footer_05_brochure .footer-menu {
        flex-direction: column;
        align-content: center;
        text-align: center;
    }
}


/* === footer-05-brochure === */