/*=====================================================*/
/* Advansys PageExpress Custom Responsive Stylesheet   */
/*=====================================================*/

:root {
    --body-background: rgb(255, 255, 255);
    --body-color: rgb(0, 0, 0);
    --body-font: "Open Sans", sans-serif;
    --h1-font: "Lato", sans-serif;
    --h2-font: "Lato", sans-serif;
    --h3-font: "Lato", sans-serif;
    --h4-font: "Lato", 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: #99cc00;
    --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: 52px;
    --h2-fontsize: 40px;
    --h3-fontsize: 28px;
    --h4-fontsize: 24px;
    --h1-fontweight: normal;
    --h2-fontweight: normal;
    --h3-fontweight: normal;
    --h4-fontweight: normal;
    --header_promo_line_bgcolor: #000;
    --header_promo_line_textcolor: rgb(255, 255, 255);
    /*-----------------------------------------------------------------------*/
    /* Custom Variables */
    --input_height: 40px;
    --hpl01-h: 0px;
}

body {
    background: var(--body-background);
    color: var(--body-color);
    margin-top: 50px;
    font-family: var(--body-font);
}

.row {
    --bs-gutter-x: 30px;
}

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);
}

h2,
.h2 {
    font-family: var(--h2-font);
    font-size: var(--h2-fontsize);
    font-weight: var(--h2-fontweight);
}

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);
}

.form-control {
    min-height: var(--input_height);
}

.btn {
    padding: 5px 15px;
    background-color: var(--button-background);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    padding: 17px 30px;
    border-radius: 40px;
    font-weight: 600;
}

.btn:hover,
.btn:active,
.btn:focus,
.btn:focus-within {
    color: #fff;
    text-decoration: none;
    box-shadow: none !important;
    outline: none !important;
}

button:hover,
button:active,
button:focus,
button:focus-within {
    text-decoration: none;
    box-shadow: none !important;
    outline: none !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
}

@media (min-width: 576px) {

    .container,
    .container-sm {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px !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: 15px;
        padding-left: 15px;
    }
}

/* 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.blocked {
    pointer-events: 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;
}

.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: 350px;
    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: 30px;
}

#cookie .cookie-text {
    padding-bottom: 0;
}

#cookie .cookie_learn_more {
    padding-bottom: 10px;
}

#cookie .cookie_learn_more a {
    display: block;
    margin-top: 10px;
    color: var(--button-background);
}

#cookie .cookie_preferences_button button {
    width: 100%;
    border-radius: 0;
    margin-bottom: 10px;
    background-color: gray;
}

#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 .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;
    z-index: 1111;
}

.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: 50%;
    color: #fff;
    background-color: var(--button-background);
    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: #fff;
    background-color: var(--button-background);
    background-image: url("/images/default/email-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    -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
}

@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;
    }
}

div.contacts {
    margin: 0 0 0 0;
    position: relative;
}

.grecaptcha-badge {
    z-index: 90;
    bottom: 125px !important;
}

.grecaptcha-badge:not(:hover) {
    opacity: .5;
}
/* === globalheader === */.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 === */.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-05 {
    --navbg: 255, 255, 255;
    --navdark: 0, 0, 0;
    --navlightdark: 45, 45, 45;
}

.nav-05 .col-logo {
    height: 100%;
}

.nav-05 .logo {
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: start;
    overflow-x: visible;
}

.nav-05 .logo img {
    transition: 0.3s all;
    height: 58px;
}

.nav-05 .topnav {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 90px;
    background-color: rgba(var(--navbg), 1);
    position: relative;
    z-index: 2;
    transition: 0.3s all;
}

.nav-phone,
.nav-email {
    display: flex;
    flex-direction: row;
}

.nav-email {
    margin-left: 20px;
}

.nav-phone svg,
.nav-email svg {
    height: 44px;
    transition: 0.3s all;
}


.nav-phone div,
.nav-email div {
    font-size: 15px;
    color: rgba(var(--navdark), 1);
    line-height: 18px;
    margin-left: 10px;
    font-weight: 600;
}


.nav-phone a,
.nav-email a {
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: rgba(var(--navdark), 1);
    white-space: nowrap;
    transition: 0.3s all;
    display: block;
}

.nav-05 .contacts {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    align-items: start;
    display: flex;
    height: 100%;
    align-content: center;
    align-items: center;
}

.nav-05 .social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.nav-05 .social a {
    width: 50px;
    height: 50px;
    background-color: rgba(var(--navdark), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    border: 2px solid rgba(var(--navdark), 1);
    transition: 0.3s all;
}

.nav-05 .social a~a {
    margin-left: 7px;
}

.nav-05 .social a>i {
    color: #fff;
}

.nav-05 .social a>svg {
    fill: #fff;
    width: 22px;
    height: 22px;
}

.nav-05 .contact-btn {
    white-space: nowrap;
    margin-left: 15px;
    border: 2px solid rgba(var(--navdark), 1);
    transition: 0.3s all;
}

.nav-05 .bottomnav {
    background-color: #e4ecd9;
    transition: 0.3s all;
    position: relative;
    z-index: 1;
    padding: 0;
}

.bottomnav .container {
    padding: 0 !important;
}

.nav-05 .navbar {
    padding: 0;
}

.nav-05 #navbar-menu {
    justify-content: center;
    padding: 0;
}

.nav-item {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-item .nav-link {
    color: #222222;
    text-decoration: none;
}

.nav-item .nav-link.currentpage {
    color: #7fc11e !important;
}

.nav-link:focus,
.nav-link:hover {
    color: #7fc11e !important;
}

.nav-item.lvl1 {
    border: none !important;
}

.dropdown-item-menu {
    border: .1px solid #00000010;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.nav-link {
    color: #222222 !important;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    padding: 15px 15px;
}

.nav-item.lvl1>span.nav-link {
    cursor: context-menu;
}

.nav-item.lvl1:not(.item-dropdown):hover,
.nav-item.lvl1.show:not(.item-dropdown) {
    background-color: transparent !important;
}

.nav-item.lvl1.item-dropdown:hover>.nav-link,
.nav-item.lvl1.show.item-dropdown>.nav-link {
    color: #222222;
}

.nav-item.lvl1 {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: 0.3s all;
}

.nav-item.lvl1~.nav-item.lvl1 {
    border-left: 0;
}


.nav-05.scrolled .topnav {
    background-color: rgba(var(--navdark), 1);
    height: 75px;
}


.topnav .container .row .nav-05.scrolled .nav-phone svg,
.nav-05.scrolled .nav-email svg {
    fill: rgba(var(--navbg), 1);
}

.nav-05.scrolled .nav-phone div,
.nav-05.scrolled .nav-email div,
.nav-05.scrolled .nav-phone a,
.nav-05.scrolled .nav-email a {
    color: rgba(var(--navbg), 1);
}

.nav-05.scrolled .social a {
    border: 2px solid rgba(var(--navbg), 1);
}

.nav-05.scrolled .contact-btn {
    border: 2px solid rgba(var(--navbg), 1);
    padding: 13px 30px;
}

a {
    text-decoration: none;
}

.nav-05.scrolled .bottomnav {
    transform: translateY(-100%);
}

.nav-05 .contacts .nav-contact {
    display: flex;
    align-items: center;
}

.nav-05 .contacts .nav-contact svg {
    height: 16px;
    width: auto;
    margin: auto;
    padding-top: 2px;
}

.navbar-collapse {
    flex-wrap: wrap;
    justify-content: left !important;
}

.nav-05 .contacts .nav-contact a {
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    color: #333;
    font-size: 15px;
}

.nav-05 .contacts .nav-contact a:hover {
    color: #7fc11e;
    text-decoration: none;
}

.nav-item.item-dropdown.show.lvl1>.dropdown-item-menu {
    pointer-events: all;
    /* transform: translateX(-50%) translateY(0%) scale(1); */
    opacity: 1;
    border-top: 2px solid #7fc11e;
    padding: 0;
    border-radius: 0 0 5px 5px;
    z-index: 1;
}

.dropdown-item-menu .nav-link {
    text-transform: uppercase !important;
    transition: .3s;
    color: #222222 !important;
    font-size: 13px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400 !important;
    padding: 10px 0;
}

.dropdown-item-menu .nav-link:hover {
    color: #7fc11e;
}

.mobile-dropdown-menu {
    display: none;
}

.nav-05 .container .row {
    height: 100%;
}

@media(min-width: 767px) {

    /* .nav-item.lvl1:not(.item-dropdown):hover,
    .nav-item.lvl1.show:not(.item-dropdown) {
        background-color: rgba(var(--navdark),1);
    } */

    /* .nav-item.lvl1:not(.item-dropdown):hover > .nav-link,
        .nav-item.lvl1.show:not(.item-dropdown) > .nav-link {
            color: rgba(var(--navbg),1);
        } */


    .nav-item.lvl1.item-dropdown>.nav-link {
        position: relative;
        /* overflow: hidden; */
    }

    .nav-item.lvl1.item-dropdown>.nav-link:before {
        content: "";
        background-color: rgba(var(--navdark), 1);
        color: #000;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: 0.2s all;
        transform: translateY(100%);
        z-index: -1;
    }

    .nav-item.item-dropdown>.dropdown-item-menu {
        background-color: #e4ecd9;
        position: absolute;
        width: 350px;
        padding: 45px 0px;
        opacity: 0;
        pointer-events: none;
    }

    /* .nav-item.lvl1.item-dropdown:hover > .nav-link,
    .nav-item.lvl1.show.item-dropdown > .nav-link {
        color: rgba(var(--navbg),1);
    } */

    /* .nav-item.lvl1.item-dropdown:hover > .nav-link:before,
        .nav-item.lvl1.show.item-dropdown > .nav-link:before {
            transform: translateY(0%);
        } */


    .nav-item.item-dropdown>.dropdown-item-menu>div>.navlinks-wrapper {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }

    .nav-item.item-dropdown>.dropdown-item-menu>div>.navlinks-wrapper>.nav-item {
        width: 100%;
        text-align: left;
        flex: 25% 1 1;
        padding-left: calc(.5 * var(--bs-gutter-x));
        padding-right: calc(.5 * var(--bs-gutter-x));
    }

    .nav-item.item-dropdown>.dropdown-item-menu .nav-link {
        color: rgba(var(--navbg), 1);
        text-decoration: none;
        text-transform: none;
        font-weight: 500;
        padding-left: 0;
        padding-right: 0;
    }

    .nav-item.lvl2.item-dropdown {
        display: flex;
        flex-direction: column;
    }

    /*calc(var(--bs-gutter-x) * .5)*/
    .nav-item.lvl2.item-dropdown>.nav-link {
        width: 100%;
        display: block;
        min-width: 100%;
        padding-left: 0;
        padding-right: 0;
        background-color: rgba(var(--navlightdark), 1);
        padding: 35px 35px 0px 35px;
    }

    .nav-item.lvl2 .dropdown-item-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: all;
        width: 400px;
        background: transparent;
        padding: 20px 35px 35px 35px;
        background-color: transparent;
    }

    .nav-item.item-dropdown>.dropdown-item-menu>div>.navlinks-wrapper>.nav-item.lvl3 {
        width: 100%;
        flex: 100%;
        max-width: 100%;
    }

    .nav-item.item-dropdown>.dropdown-item-menu .nav-item.lvl3>.nav-link {
        padding-left: 20px;
        position: relative;
        font-size: 14px;
    }

    .nav-item.lvl3>.nav-link:before {
        content: "\f105";
        font-family: "Font Awesome 5 Pro";
        font-weight: 300;
        font-size: 20px;
        position: absolute;
        left: 0;
        top: 5px;
    }

    .nav-link.dropdown-switch::before {
        height: 0 !important;
    }
}

.social-links-header {
    align-items: center;
    gap: 25px;
    justify-content: end;
    margin-left: auto;
    display: flex;
    height: 100%;
}

@media(max-width: 1399.97px) {
    .nav-05 .logo {
        width: auto;
    }

    .nav-05 .social {
        display: none;
    }

    .nav-05 .nav-link {
        padding: 15px 8px;
        font-size: 14px;
    }

    .nav-05 #navbar-menu {
        justify-content: space-between;
    }
}


@media(max-width: 991.97px) {
    .nav-05 .contacts {
        flex-direction: column;
    }

    .nav-phone div span,
    .nav-email div span {
        display: none;
    }

    .nav-05 #navbar-menu {
        justify-content: flex-start;
    }

    .nav-05 .contacts {
        align-items: start;
    }

    .nav-05 .contacts .nav-contact {
        margin-left: 0;
    }

    .nav-05 .logo img {
        max-width: 280px;
        object-fit: contain;
    }
}

@media(max-width: 768px) {
    body {
        margin-top: calc(100px + var(--hpl01-h));
    }

    /* .nav-link.dropdown-switch::before{
        height: 100% !important;
    } */

    .nav-05 .logo {
        margin-right: 30px;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        background-color: rgba(var(--navdark), 1);
    }

    .topnav .container .row .social-links-header,
    .topnav .container .row .contacts {
        display: none !important;
    }

    .bottomnav {
        height: 50px;
    }

    .bottomnav .container .row {
        height: 100%;
    }

    .bottomnav .container .row .nav-item {
        display: none !important;
    }

    .bottomnav .container .row .menu-text {
        color: #222222;
        text-transform: uppercase;
        font-size: 15px;
        font-family: 'Lato', sans-serif;
        font-weight: 400;
        letter-spacing: 2.5px;
        line-height: 50px;
    }

    .bottomnav .container .row .hamburger {
        position: relative !important;
    }

    .mobile-dropdown-menu {
        display: flex;
        height: 0%;
        margin-top: 25px;
        position: absolute;
        top: 50%;
        background-color: #fff;
        z-index: 1000;
        flex-direction: column;
        left: 0;
        overflow: hidden;
        width: 100%;
        transition: height .4s;
    }

    .mobile-dropdown-menu .nav-link {
        padding-top: 4px;
        padding-bottom: 4px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 5px 15px;
    }

    .btn-open-dropdown {
        font-family: 'Lato';
        font-weight: 900;
        font-size: 20px;
        line-height: 20px;
        margin-right: 0;
        width: 70px;
        border: none;
        background-color: transparent;
        text-align: center;
    }

    .btn-open-dropdown:active,
    .btn-open-dropdown:focus {
        color: #99cc01;
    }

    .mobile-dropdown-menu .nav-item:first-child .nav-link::after {
        content: '';
    }

    body.menu_open .mobile-dropdown-menu {
        max-height: 320px;
        overflow: scroll;
        height: fit-content;
        margin: 0 -15px;
        width: calc(100% + 30px);
        position: inherit;
    }

    .bottomnav .container .row .mobile-dropdown-menu .nav-item {
        display: block !important;
    }

    .bottomnav .container .row .collapse.navbar-collapse {
        display: flex;
    }

    .bottomnav .container .row .collapse.navbar-collapse {
        padding: 0 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .bottomnav .container .row .navbar-toggler {
        display: flex !important;
        align-items: center;
        justify-content: center;
        top: 0;
        left: 0;
        transform: none;
        border: .1px solid #88888840;
    }

    .bottomnav .container .row .hamburger-inner {
        background-color: #888888 !important;
        height: 2px;
        width: 25px;
    }

    .bottomnav .container .row .hamburger-inner {
        position: relative;
    }

    .navbar-toggler .hamburger-inner {
        transition: .3s;
    }

    .navbar-toggler.is-active .hamburger-inner:nth-child(1) {
        /* transform: translate3d(0, 3.5px, 0) rotate(-45deg); */
        transform: none;
    }

    .navbar-toggler.is-active .hamburger-inner:nth-child(2) {
        /* position: absolute;
        opacity: 0; */
        transform: none;
    }

    .navbar-toggler.is-active .hamburger-inner:nth-child(3) {
        /* transform: translate3d(0, -3.5px, 0) rotate(45deg); */
        transform: none;
    }

    .navbar-toggler.is-active .hamburger-inner {
        transform: none;
    }

    .navbar-toggler.is-active {
        background-color: #dddddd;
    }

    .navbar-toggler.is-active #navbar-menu {
        overflow: visible;
        height: auto;
    }

    .navbar-menu.container {
        justify-content: space-between !important;
    }

    .hamburger-box {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
    }

    .hamburger {
        display: flex;
        position: relative;
    }

    .bottomnav .container .row .hamburger-inner::after,
    .bottomnav .container .row .hamburger-inner::before {
        all: initial !important;
    }

    .nav-05 .bottomnav {
        background-color: #e4ecd9;
    }

    .nav-item .nav-link {
        color: rgba(var(--navbg), 1);
    }

    .nav-item.lvl1 {
        border: 0;
    }

    .nav-item.item-dropdown .dropdown-item-menu {
        background-color: #ffffff;
        position: absolute;
        padding: 0px;
        opacity: 0;
        height: 0;
        pointer-events: none;
        border: none !important;
        box-shadow: none !important;
    }

    .nav-item.item-dropdown.show .dropdown-item-menu {
        position: relative;
        opacity: 1;
        height: auto;
    }

    /* .nav-item.item-dropdown.show */

    .mobile-dropdown-menu .nav-item.item-dropdown .dropdown-item-menu .nav-item.lvl2 {
        display: flex !important;
        align-items: center;
        justify-content: left;
        flex-wrap: nowrap;
        padding-left: 5px;
        margin: 6px 0;
    }

    .mobile-dropdown-menu .nav-item.item-dropdown .dropdown-item-menu .nav-item.lvl2::before {
        font-family: "Font Awesome 6 Pro";
        content: "\f105";
        margin: 0 5px;
        font-size: 10px;
        font-weight: 300;
        color: #333;
    }

    .nav-item.item-dropdown .dropdown-item-menu .nav-item.lvl2 a {
        font-family: Lato;
        color: #777777 !important;
        white-space: nowrap;
    }


    .hpl01+nav.fixed-top:not(.scrolled) #navbar-menu {
        height: calc(100vh - 100px);
        /* overflow: auto; */
        max-height: calc(100vh - 100px);
    }

    .nav-05.scrolled #navbar-menu {
        transform: none;
        height: calc(100vh - 75px);
        /* overflow: auto; */
        z-index: 100;
    }

    .nav-05 .container {
        max-width: 100% !important;
        padding: 0 15px !important;
        height: 100%;
    }
}

@media(max-width: 575px) {
    .nav-05 .contacts {
        display: none;
    }
}

@media (min-width: 576px) {
    .nav-05 .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}
/* === nav-05 === */.carousel-01 {
  --desktoph: 600px;
  --tableth: 480px;
  --mobileh: 380px;
  margin-top: 0;
}

.carousel-01 .slick-list,
.carousel-01 .slick-track,
.carousel-01 .slick-initialized .slick-slide,
.carousel-01 .carousel-01 .carousel-item {
  max-height: var(--desktoph);
}

.carousel-01 .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
}

.carousel-01 .carousel-caption {
  top: 50%;
  left: 15px;
  right: 15px;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: inherit;
  z-index: 4;
  transition: 1s ease-in-out;
}

.carousel-01 .carousel-item img {
  transition: opacity 1s ease-in-out;
  position: relative;
}


.carousel-01 .carousel-caption-title {
  margin-bottom: 15px;
  font-family: "Lato";
  color: #ffffff;
  font-size: 312.5%;
  text-shadow: none;
  line-height: 1.2;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  text-align: center;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  font-weight: 700;
  margin: 0;
}

.carousel-01 .carousel-caption-text {
  font-size: 20px;
  margin: 0;
  width: 40%;
  margin: 0 auto;
}

.carousel-01 .carousel-caption .btn {
  margin-top: 20px;
  border-radius: 0;
  background-color: #7fc11e;
  font-family: "Lato";
  color: #ffffff;
  font-size: 137.5%;
  text-shadow: none;
  line-height: 29px;
  font-weight: normal;
  padding: 10px 20px;
  margin: 0;
}

.carousel-01 .carousel-caption .header-subtitle {
  font-family: "Lato";
  color: #ffffff;
  font-size: 125%;
  text-shadow: none;
  line-height: 1.2;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  text-align: center;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  margin: 0;
  margin-top: 20px;
}

.carousel-01 .carousel-inner .prev-slide,
.carousel-01 .carousel-inner .next-slide {
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  font-weight: 300;
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s;
}

.carousel-01 .carousel-inner .prev-slide {
  left: 45px;
}

.carousel-01 .carousel-inner .next-slide {
  right: 45px;
}

.carousel-01 .carousel-inner .slick-dots {
  display: none !important;
}

.carousel-01 .carousel-item {
  height: var(--desktoph);
  position: relative;
}

.carousel-01 .carousel-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 1px);
  width: calc(100% + 1px);
  object-fit: cover;
}

.carousel-01 .carousel-item:before {
  content: "";
}

.carousel-01 .carousel-inner>.carousel-item {
  overflow: hidden;
  position: relative;
  z-index: 1;
  max-height: 420px;
  clip-path: inset(0);
}

.carousel-01 .carousel-inner>.carousel-item .carousel-caption {
  transition: 0s all !important;
}

.carousel-01 .carousel-inner>.carousel-item .carousel-caption-title {
  text-align: left;
  transition: 0s all !important;
}

.carousel-01 .carousel-inner>.carousel-item .carousel-caption .header-subtitle {
  text-align: left;
}

.carousel-01 .carousel-inner>.carousel-item>.container {
  z-index: 1;
}

.carousel-01 .carousel-inner>.carousel-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.carousel-01 .carousel-inner>.carousel-item img {
  object-fit: cover !important;
  object-position: center;
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-height: 420px;

  top: unset;
  left: unset;
  transform: unset;
}

.carousel-01 .breadcrumb {
  margin-bottom: 0;
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  color: #ffffff;
  position: absolute;
  bottom: 15px;
  left: 0px;
}

.carousel-01 .breadcrumb br {
  display: none;
}

.carousel-01 .breadcrumb a {
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.carousel-01 .breadcrumb a:hover {
  color: #91bb3e;
}

@media screen and (max-width: 1199px) {
  .carousel-01 .carousel-item {
    height: 500px;
  }

  .carousel-01 .carousel-inner>.carousel-item .carousel-caption {
    left: 30px;
    right: 30px;
  }

  .carousel-01 .breadcrumb {
    left: 30px;
    bottom: 30px;
  }
}

@media screen and (max-width: 991px) {
  .carousel-01 .carousel-item {
    height: var(--tableth);
  }

  .carousel-01 .slick-list,
  .carousel-01 .slick-track,
  .carousel-01 .slick-initialized .slick-slide,
  .carousel-01 .carousel-item {
    max-height: var(--tableth);
  }

  .carousel-01 {
    margin-top: 190px;
  }

  .carousel-01 .carousel-inner .prev-slide,
  .carousel-01 .carousel-inner .next-slide {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {

  .carousel-01 {
    margin-top: 140px;
  }

  .carousel-01 .container {
    max-width: 100%;
  }

  .carousel-01 .carousel-item {
    height: var(--mobileh);
  }

  .carousel-01 .carousel-inner .prev-slide {
    left: 15px;
  }

  .carousel-01 .slick-slide {
    width: 100% !important;
    height: 100% !important;
  }

  .carousel-01 .slick-track {
    display: flex !important;
  }

  .carousel-01 .slick-track .image {
    width: 100% !important;
    height: auto !important;
  }

  .carousel-01 .slick-track .image img {
    width: 100% !important;
    height: 100%;
  }

  .carousel-01 .carousel-caption {
    max-width: 310px;
    width: 100%;
    margin: 0 auto;
  }

  .carousel-01 .carousel-caption-text {
    width: 100%;
  }

  .carousel-caption-text p {
    font-size: 14px;
    width: 100%;
  }

  .carousel-01 .carousel-caption .header-subtitle {
    font-family: "Lato";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    hyphens: manual;
    letter-spacing: normal;
    line-height: 26px;
    margin-top: 8px;
  }

  .carousel-caption-text p {
    margin: 0;
  }

  .carousel-caption-text p:last-of-type {
    margin-bottom: 8px;
    margin-top: 8px;
  }


  .carousel-01 .carousel-caption .btn {
    font-family: "Lato";
    font-size: 15.4px;
    font-style: normal;
    font-weight: 400;
    hyphens: manual;
    letter-spacing:
  }

  .carousel-01 .carousel-caption-text b {
    Font-family: "Lato";
    font-size: 30px;
    line-height: 36px;
    font-style: normal;
  }

  .carousel-01 .carousel-caption-title {
    Font-family: "Lato";
    font-size: 30px;
    line-height: 36px;
    font-style: normal;
  }

  .slick-track {
    height: 100%;
    display: block;
  }

  .carousel-01 .carousel-inner .next-slide {
    right: 15px;
  }

  .carousel-01 .carousel-inner>.carousel-item .carousel-caption-title {
    text-align: center;
  }

  .carousel-01 .carousel-inner>.carousel-item,
  .carousel-inner {
    height: 100%;
  }

  .carousel-01 .breadcrumb {
    left: 15px;
    right: 15px;
    text-align: center;
  }

  .carousel-01 .slick-list,
  .carousel-01 .slick-track,
  .carousel-01 .slick-initialized .slick-slide,
  .carousel-01 .carousel-item {
    max-height: var(--mobileh) !important;
    height: var(--mobileh) !important;
  }

  .carousel-01 .carousel-inner .prev-slide,
  .carousel-01 .carousel-inner .next-slide {
    display: none !important;
  }
}

@media screen and (max-width: 575px) {

  .carousel-01 .carousel-inner>.carousel-item .carousel-caption {
    left: 0;
    right: 0;
    width: calc(100% - 60px);
    max-width: unset;
    margin: 0 30px;
  }

  .carousel-01 .carousel-item {
    height: var(--mobileh);
  }

  .carousel-01 .carousel-item:after {
    content: "";
    padding-bottom: 100%;
    display: block;
  }
}

.carousel-01 .hidden-h1 {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  width: 0px;
  height: 0px;
}
/* === carousel-01 === */.content-text-left-list-right {
    margin-top: 30px;
    margin-bottom: 0px;
}

.content-text-left-list-right .container .row {
    justify-content: space-between;
}

.content-text-left-list-right .left .bg {
    padding: 30px 0 0;
    background: transparent;
    width: 100%;
}

.content-text-left-list-right .right .bg {
    padding: 30px;
    background: #ddd;
}

.content-text-left-list-right .text ul {
    list-style: none;
    padding: 0;
}

.content-text-left-list-right .text ul li {
    position: relative;
    padding-left: 20px;
}

.content-text-left-list-right .text ul li:before {
    content: "\f111";
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    font-size: 12px;
    top: 6px;
    left: 0;
}

.content-text-left-list-right .left .psychologist-miniature .psychologist-miniature-image {
    max-width: 140px;
    max-height: 140px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    border-radius: 50%;
}

.left .psychologist-miniature .psychologist-miniature-image img {
    width: 100%;
}

.content-text-left-list-right .left .psychologist-miniature {
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: flex-end;
    margin: 0 0 60px;
}

.content-text-left-list-right .left .psychologist-miniature .psychologist-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.psychologist-miniature .psychologist-info h3,
.psychologist-miniature .psychologist-info .h3 {
    color: #000000;
    font-size: 25px;
    font-weight: 700;
    font-family: 'Lato';
}

.psychologist-miniature .psychologist-info h4,
.psychologist-miniature .psychologist-info .h4 {
    font-size: 20px;
    color: #666666;
    line-height: 1.5;
}

.content-text-left-list-right .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.content-text-left-list-right .left .content-with-list-title01 {
    color: #424242;
    font-size: 45px;
    font-weight: 700;
    margin: 25px 0 15px;
    font-family: 'Lato';
}

.content-text-left-list-right .left .content_with_list_contacts {
    font-size: 20px;
    color: #666666;
    line-height: 1.5;
    font-style: normal;
    margin: 0 0 75px;
}

.content-text-left-list-right .left .content_with_list_contacts a {
    color: #99cc00;
    font-weight: 600;
}

.content-text-left-list-right .content_with_list_text01 p {
    margin-bottom: 25px;
    font-size: 20px;
    color: #666666;
    line-height: 1.5;
    font-style: normal;
}

.content-text-left-list-right .content_with_list_text01 p strong {
    color: #222222;
    font-weight: 700;
}

.content-text-left-list-right .content_with_list_text01 h4 {
    color: #424242;
    font-size: 24px;
    font-weight: normal;
    font-family: 'Lato';
}

.content-text-left-list-right .content_with_list_text01 a {
    color: #99cc00;
}

.content-text-left-list-right .content_with_list_text01 ul strong {
    color: #222222;
    font-size: 20px;
    padding-left: 15px;
}

.content-text-left-list-right .content_with_list_text01 ul li strong {
    padding: 0;
}

.content-text-left-list-right .content_with_list_text01 ul {
    padding-left: 20px;
}

.content-text-left-list-right .content_with_list_text01 ul strong a {
    color: #7fc11e;
}

.content-text-left-list-right .content_with_list_text01 .contact-btn {
    background: #7fc11e;
    border: none;
    border-radius: 0;
    outline: none;
    font-weight: 400;
    padding: 20px 30px;
    white-space: normal;
    white-space: wrap;
    max-width: 480px;
    text-align: center;
}

.content-text-left-list-right .content_with_list_text01 .contact-btn a {
    margin: 0;
    font-size: 22px;
    color: rgb(255, 255, 255);
    line-height: 1.2;
}

.content-text-left-list-right .content_with_list_text01 div {
    white-space: nowrap;
}

.content-text-left-list-right .content_with_list_text01 div h4,
.content-text-left-list-right .content_with_list_text01 div h4 a {
    font-size: 22px;
    font-weight: bold;
    color: #7fc11e;
    font-family: 'Lato';
    line-height: 35px;
}

.content-text-left-list-right .content_with_list_text01 div h4 a {
    color: #99cc00;
}

.content-text-left-list-right .content_with_list_text01 div p {
    margin-bottom: 25px;
    font-size: 20px;
    color: #666666;
    line-height: 1.5;
}

.content-text-left-list-right .content_with_list_text01 div p:last-of-type {
    margin-bottom: 0;
}

.content-text-left-list-right .right .bg {
    background-color: #e4ecd9;
    padding: 1px 20px;
}

.content-text-left-list-right .right .content_with_list_title02 {
    color: #424242;
    font-size: 45px;
    font-weight: 700;
    margin: 15px 0;
    font-family: 'Lato';
}

.content-text-left-list-right a[href^="tel:"] {
    color: #9acc02;
}

.content-text-left-list-right .right .content_with_list_text02 h4 strong {
    color: #000000;
    font-size: 25px;
    font-weight: 600;
    font-family: 'Lato';
}

.content-text-left-list-right .right .content_with_list_text02 {
    margin-bottom: 40px;
}

.content-text-left-list-right .right .FAQ-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.right .FAQ-list .FAQ-item h2 {
    color: #424242;
    font-size: 25px;
    font-weight: normal;
    font-family: 'Lato';
    line-height: 35px;
    margin: 10px 0;
}

.right .FAQ-list .FAQ-item p {
    margin-bottom: 25px;
    font-size: 20px;
    color: #666666;
    line-height: 1.5;
    font-family: 'Lato';
}

@media (max-width: 1200px) {

    .content-text-left-list-right .left .content-with-list-title01,
    .content-text-left-list-right .right .content_with_list_title02 {
        font-size: 40px;
    }

    .content-text-left-list-right .content_with_list_text01 p,
    .right .FAQ-list .FAQ-item p {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .content-text-left-list-right {
        padding-bottom: 0;
    }

    .content-text-left-list-right .left .content-with-list-title01,
    .content-text-left-list-right .right .content_with_list_title02 {
        font-size: 35px;
    }

    .content-text-left-list-right .left .content-with-list-title01 {
        margin: 15px 0 15px;
    }

    .content-text-left-list-right .left .psychologist-miniature {
        margin-bottom: 40px;
    }

    .content-text-left-list-right .content_with_list_text01 p,
    .right .FAQ-list .FAQ-item p {
        font-size: 17px;
    }

    .content-text-left-list-right .psychologist-miniature {
        margin: 0 0 40px 40px;
    }

}

@media (max-width: 768px) {
    .content-text-left-list-right {}

    .content-text-left-list-right .left .content-with-list-title01,
    .content-text-left-list-right .right .content_with_list_title02 {
        font-size: 42px;
        line-height: 50px;
    }

    .content-text-left-list-right .left {
        width: 100%;
        max-width: 100%;
    }

    .content-text-left-list-right .right {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .content-text-left-list-right .psychologist-miniature {
        margin: 0 auto 30px;
        margin-left: 50px;
    }

    .content-text-left-list-right .content_with_list_text01 p,
    .right .FAQ-list .FAQ-item p {
        font-size: 20px;
        line-height: 1.5;
        max-width: 100%;
    }

    .content-text-left-list-right .content_with_list_text01 div {
        margin: 0 auto;
        white-space: wrap;
    }

    .content-text-left-list-right .left .bg {
        padding: 0;
    }

    .content-text-left-list-right .left .psychologist-miniature {
        margin-bottom: 30px;
    }

    .content-text-left-list-right .left .content_with_list_contacts {
        margin-bottom: 60px;
    }

    .content-text-left-list-right .right .bg {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .content-text-left-list-right {
        padding-top: 15px;
        padding-bottom: 35px;
    }

    .content-text-left-list-right .content_with_list_text01 p,
    .right .FAQ-list .FAQ-item p {
        font-size: 15px;
    }

    .content-text-left-list-right .psychologist-miniature .psychologist-info {
        max-width: 100%;
    }

    .psychologist-miniature .psychologist-info h4 {
        margin-bottom: 0;
    }

    .content-text-left-list-right .left .psychologist-miniature .psychologist-info {
        margin: auto;
    }
}
/* === content-text-left-list-right === */.logos-01 {
  margin: 0;
  color: var(--logos-01-color);
  background-color: var(--logos-01-background);
}

.logos-01 hr {
  margin: 40px 0;
}

.logos-01-title {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Lato';
  text-align: center;
  margin: 0 auto;
}

.logos-01 .verify_credentials_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 20px;
}

.logos-01 .verify_credentials_list .verify_credentials_list_item {
  max-width: 24%;
}

.logos-01 .verify_credentials_list .verify_credentials_list_item img {
  width: 100%;
  max-height: 93px;
}

.slick-slider {
  margin: 0 auto;
}


@media screen and (max-width: 767px) {
  .logos-01-title {
    margin: 40px auto 20px;
    margin-left: 0;
  }

  .logos-01 .slick-list,
  .slick-track {
    height: 150px !important;
  }

  .logos-01 .slick-track {
    display: flex !important;
    align-items: center !important;
    justify-content: center;
  }

  .logos-01 .verify_credentials_list {
    display: block;
    height: 150px !important;
    width: 100%;
    margin: 0 auto;
  }

  .logos-01 .slick-slide {
    display: flex;
    height: auto !important;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
  }

  .logos-01 .slick-slide div {
    width: 100% !important;
  }

  .logos-01 .slick-slide div .verify_credentials_list_item {
    width: 100%;
    max-width: 100% !important;
    max-height: 100%;
    padding: 0 20px;
  }

  .logos-01 .verify_credentials_list .verify_credentials_list_item img {
    height: 100%;
    width: auto;
    max-width: 100%;
    margin: auto;
  }

  .logos-01 hr {
    margin: 30px 0;
  }
}
/* === logos-01 === */.content-02 {
  padding: 180px 0;
  margin: 20px 0 40px;
  background-image: url("/images/4444-testimonialbanner.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.content-02 .row {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  font-family: 'Lato';
  font-style: italic;
}

@media (max-width: 768px) {
  .content-02 {
    margin: 40px 0 0;
    background-size: cover;
  }
}

@media (max-width: 576px) {
  .content-02 {
    padding: 100px 0;
    margin: 30px 0 0;
    background-size: cover;
    background-position: 75% 95%;
  }
}
/* === content-02-2-column === */.testimonials-04-circular {
    padding-top: 30px;
}

.testimonials-04-circular .container>.row {
    /* padding: 0 100px; */
}

.testimonials-04-circular .container .row .what-is-title {
    color: #424242;
    font-size: 45px;
    font-weight: 700;
    margin: 0 0 60px;
    font-family: 'Lato';
    line-height: 1.1;
}

.testimonials-04-circular .container .row .what-is-block-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.testimonials-04-circular .container .row .what-is-block-info .row {
    --bs-gutter-x: 30px;
}

.row .what-is-block-info .what-is-block-left,
.row .what-is-block-info .what-is-block-right {}

.row .what-is-block-info .what-is-block h4 {
    color: #424242;
    font-size: 24px;
    font-weight: normal;
    font-family: 'Lato';
    line-height: 35px;
}

.row .what-is-block-info .what-is-block p {
    margin-bottom: 25px;
    font-size: 20px;
    color: #666666;
    line-height: 1.5;
    font-style: normal;
    font-family: 'Lato';
}

.row .what-is-block-info .what-is-block a {
    color: #000080;
}

@media (max-width: 1200px) {
    .testimonials-04-circular .container>.row {
        /* padding: 0 80px; */
    }

    .testimonials-04-circular .container .row .what-is-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
}

@media (max-width: 992px) {
    .testimonials-04-circular .container>.row {
        /* padding: 0 60px; */
    }

    .testimonials-04-circular .container .row .what-is-title {
        font-size: 35px;
        margin-bottom: 40px;
        max-width: 50%;
    }

    .row .what-is-block-info .what-is-block-left,
    .row .what-is-block-info .what-is-block-right {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .testimonials-04-circular .container>.row {}

    .testimonials-04-circular .container .row .what-is-title {
        font-size: 42px;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .row .what-is-block-info .what-is-block-left,
    .row .what-is-block-info .what-is-block-right {
        width: 100%;
    }

    .testimonials-04-circular .container .row .what-is-block-info {
        flex-direction: column;
    }
}

@media (max-width: 576px) {

    .testimonials-04-circular .container .row .what-is-title {
        font-size: 45px;
        margin-bottom: 20px;
        max-width: 100%;
    }

}
/* === testimonials-04-circular === */.map-01 {
  height: 410px;
  overflow: hidden;
  margin: 30px auto 0;
}

.map-01 .leaflet-popup-content p {
  margin: 10px 0;
}

.map-01 .leaflet-popup-content p strong {
  font-size: 18px;
}

.map-01 .leaflet-popup-content a {
  color: #7fc11e;
  font-size: 20px;
}
/* === map-01 === */.cta-01 {
    padding: 30px 0;
    background-color: #e4ecd9;
    background-position: center center;
    background-size: cover;
    color: #222222;
    text-align: center;
}

.cta-01,
.cta-01 .container,
.cta-01 .container .row {
    min-height: 300px;
}

.cta-01-title {
    font-size: 35px;
    font-weight: normal;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: Lato;
}

.cta-01-btn {
    background: #7fc11e;
    border: none;
    border-radius: 0;
    outline: none;
    font-weight: 400;
    padding: 20px 30px 20px 30px;
    white-space: normal;
    font-size: 22px;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    margin: 20px 0;
    font-family: Lato;
}

.cta-01-phone,
.cta-01-phone a {
    font-weight: 600;
    color: #424242;
    text-align: center;
    font-size: 16px;
    font-family: Lato;
}

/* 
@media (max-width: 1200px) {
    .cta-01-title {
        font-size: 32px;
    }

    .cta-01-btn {
        padding: 18px 28px;
        font-size: 20px;
    }

    .cta-01-phone {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .cta-01,
    .cta-01 .container,
    .cta-01 .container .row {
        min-height: 250px;
    }

    .cta-01-title {
        font-size: 30px;
    }

    .cta-01-btn {
        padding: 16px 26px;
        font-size: 18px;
    }

    .cta-01-phone {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .cta-01,
    .cta-01 .container,
    .cta-01 .container .row {
        min-height: 200px;
    }

    .cta-01-title {
        font-size: 28px;
    }

    .cta-01-btn {
        padding: 14px 24px;
        font-size: 16px;
    }

    .cta-01-phone {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .cta-01 {
        padding: 20px 0;
    }

    .cta-01,
    .cta-01 .container,
    .cta-01 .container .row {
        min-height: 150px;
    }

    .cta-01-title {
        font-size: 25px;
        margin-top: 15px;
        margin-bottom: 8px;
    }

    .cta-01-btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .cta-01-phone {
        font-size: 12px;
    }
} */
/* === call-to-action-01 === */.footer-01 {
    padding: 30px 0;
    color: var(--footer-textcolor);
    background-color: #2a2a2a;
}

.up-footer ul {
    list-style-type: none;
    padding: 0;
}

.up-footer ul li a {
    color: #fff;
}

.footer-01 .widget-title {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    --bs-gutter-x: 30px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-family: Lato;
}

.footer-links .link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 1200px) {
    .footer-01 .widget-title {
        margin-bottom: 35px;
    }
}

@media (max-width: 992px) {
    .footer-01 .widget-title {
        margin-bottom: 30px;
    }

  /*  .footer-links {
        flex-direction: column;
    }*/
}

@media (max-width: 768px) {
    .footer-01 .widget-title {
        margin-bottom: 25px;
    }

    .footer-01 .widget-title {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .footer-01 .up-footer .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .footer-01 {
        padding: 40px 0;
    }

    .footer-01 .widget-title {
        margin-bottom: 40px;
    }

    .footer-links>div {
        padding-bottom: 30px;
    }
}
/* === footer-01 === */.footer-03 {
  padding: 20px 0;
  background-color: var(--footer-background);
  color: var(--footer-textcolor);
  font-size: 14px;
}

.footer-03 a {
  text-decoration: none;
}

.footer-03 a,
.footer-03 a:hover {
  color: rgb(255, 255, 255)
}

.separator {
  font-style: normal;
  padding: 0 3px;
}

.footer-03-design img {
  max-width: 75px;
}

.footer-03-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}


.footer-03-socials a {
  max-width: 15px;
}

.footer-03-socials p {
  margin: 0;
}

.footer-03-socials a img {
  width: 100%;
  max-height: 100%;
}

.footer-03 a.social-logo {
  width: 16px;
  height: 16px;
  display: flex;
  margin-right: 8px;
}

.footer-03 a.social-logo img {
  margin: auto;
}

@media (max-width: 1200px) {
  .footer-03 {
    font-size: 13px;
  }

  .footer-03-design img {
    max-width: 65px;
  }

  .footer-03-socials a {
    max-width: 14px;
  }
}

@media (max-width: 992px) {
  .footer-03 {
    font-size: 12px;
  }

  .footer-03-design img {
    max-width: 60px;
  }

  .footer-03-socials {
    gap: 8px;
  }

  .footer-03-socials a {
    max-width: 13px;
  }
}

@media (max-width: 768px) {
  .footer-03 {
    font-size: 11px;
  }

  .footer-03-design img {
    max-width: 55px;
  }

  .footer-03-socials {
    gap: 6px;
  }

  .footer-03-socials a {
    max-width: 12px;
  }

  .footer-03-socials {
    align-items: end;
    justify-content: end;
  }
}

@media (max-width: 576px) {
  .footer-03 {
    padding: 15px 0;
    font-size: 10px;
  }

  .footer-03-design img {
    max-width: 50px;
  }

  .footer-03-socials {
    gap: 5px;
  }

  .footer-03-socials a {
    max-width: 10px;
  }
}
/* === footer-03 === */