@charset "utf-8";
/* CSS Document */
/*
Theme Name: Ресторан "Где же кролик"
Version: 1.0
Description: Ресторан с бронированием столиков и доставкой
Author: Веб-студия LAIKA
Author URI: http://laikaweb.ru/
*/
@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    margin-top: 0!important;
}

#wpadminbar {
    position: unset;
}

body {
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #fff;
}

* {
    box-sizing: border-box;
    outline: none !important;
    box-shadow: unset !important;
}

input,
textarea {
    -webkit-appearance: none;
}
textarea {
    height: 100px;
}
input::placeholder,
textarea::placeholder {
    color: #7E7E7E;
}

a,
a:not([href]):not([class]){
    color: #000;
    text-decoration-color: #000;
    transition: .3s;
}

a:hover,
a:not([href]):not([class]):hover{

    text-decoration-color: transparent;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

h1,
h2 {
    font-size: 34px;
    line-height: 1.23;
    font-weight: 600;
    color:#000;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    border-radius: 10px;
    text-decoration: none;
    height: 44px;
    font-size: 16px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    border:1px solid #808080;
}
.btn:hover {
    border-color:#000;
    color:#000;
    background-color: #d6d6d6;
}
.btn:focus,
.btn:active {
    border-color:#000;
    color:#000;
    background-color: #d6d6d6;
}


/* HEADER */
body:not(.home) header {
    margin-bottom: 48px;
}
.menu-trigger {
    display: none;
}
.header-top {
    padding:10px 0;
    /* border-bottom: 1px solid #949494; */
}
.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 920px;
}
.header-top-col:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.header-top-col:last-child > * {
    text-align: end;
}
header .logo {
    display: block;
    text-decoration: none;
    outline: none;
    width: 100px;
    height: auto;
}
header .logo img {
    width: 100%;
    height: auto;
    display: block;
}
header .address {
    font-size: 13px;
    line-height: 1.2;
    max-width: 156px;
}

header .telephone {
    font-size: 13px;
    display: inline-flex;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: .3s;
}
header .telephone:hover {
    color:#000;
    text-decoration-color: #000;
}
.header-bottom {
    padding-bottom: 15px;
}
.header-bottom .container {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #949494;
    border-top: 1px solid #949494;
}
header .menu {
    list-style-type: none;
    display: flex;
    gap:30px;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
}
header .menu > li > a {
    display: block;
    text-decoration: none;
    outline: none;
    padding:10px 0;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
    color:#000;
    transition: .3s;
    cursor: pointer;
}
header .menu > li > .sub-menu {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    left:-15px;
    top:100%;
    z-index: 22;
    min-width: 210px;
}
header .menu > li.menu-item-has-children {
    position: relative;
    padding-right: 24px;
}
header .menu > li.menu-item-has-children > .trigger-sub-menu {
    content:'';
    display: block;
    width: 20px;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='6' viewBox='0 0 13 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5L6.5 4.5L11.5 1.5' stroke='%23000000' stroke-width='2' stroke-linecap='round'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 8px;
    transition: .3s;
    cursor: pointer;
}
header .menu > li.menu-item-has-children:hover > .trigger-sub-menu {
    transform: rotate(180deg);
}
header .menu > li.menu-item-has-children:hover > .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #fff;
    box-shadow: 0 10px 16px 1px #00000031 !important;
    padding: 15px 15px;
}
header .menu > li.menu-item-has-children > .sub-menu li a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 14px;
    color:#000;
    font-weight: 600;
}
.header-bottom .logo,
.header-bottom .address,
.header-bottom .telephone {
    display: none;
}
.menu-trigger .container .telefon_icon {
    display: none;
}
@media(max-width:992px) {
    .menu-trigger {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 20px 0;
        background-color: #111;
    }
    .menu-trigger .container {
        display: flex;
        align-items: center;
        gap:24px;
        justify-content: flex-end;
    }
    .menu-trigger .container .telefon_icon {
        display: block;
        width: 20px;
        height: 20px;
        text-decoration: none;
        outline: none;
        background-image: url("data:image/svg+xml,%3Csvg width='22' height='23' viewBox='0 0 22 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.901 18.0363L21.7915 17.7063C21.5322 16.9353 20.6821 16.1312 19.9012 15.9193L17.0108 15.1296C16.227 14.9163 15.1089 15.2031 14.5355 15.7767L13.4894 16.8229C9.68778 15.7955 6.70672 12.8138 5.68085 9.01219L6.72696 7.96588C7.30043 7.3923 7.58712 6.27549 7.37388 5.49154L6.58573 2.59925C6.37249 1.81672 5.56706 0.966503 4.79768 0.709965L4.46774 0.599013C3.69688 0.342475 2.59752 0.601918 2.02409 1.17545L0.459329 2.74193C0.179785 3.02005 0.00112279 3.81553 0.00112279 3.81844C-0.0536056 8.78733 1.89439 13.5746 5.40854 17.0895C8.91407 20.5956 13.6825 22.5411 18.6361 22.4993C18.662 22.4993 19.4804 22.3235 19.7599 22.0453L21.3247 20.4803C21.8981 19.9068 22.1575 18.8073 21.901 18.0363Z' fill='white'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: .3s;
    }
    .menu-trigger .box-sub-btn {
        position: relative;
        width: 28px;
        height: 20px;
        display: flex;
        cursor: pointer;
    }
    .menu-trigger .box-sub-btn span {
        display: block;
        position: absolute;
        width: 100%;
        height: 3px;
        left:0;
        transition: .25s ease-in-out;
        background-color: #949494;
    }
    .menu-trigger .box-sub-btn span:nth-child(1) {
        top:0;
    }
    .menu-trigger .box-sub-btn span:nth-child(2),
    .menu-trigger .box-sub-btn span:nth-child(3) {
        top:8px;
    }
    .menu-trigger .box-sub-btn span:nth-child(4) {
        top:16px;
    }
    .menu-trigger .box-sub-btn.in span:nth-child(1),
    .menu-trigger .box-sub-btn.in span:nth-child(4) {
        width: 0%;
    }
    .menu-trigger .box-sub-btn.in span:nth-child(2) {
        transform: rotate(45deg);
    }
    .menu-trigger .box-sub-btn.in span:nth-child(3) {
        transform: rotate(-45deg);
    }
    header {
        position: relative;
    }
    .menu-popup {
        position: absolute;
        left: 0;
        right: 0;
        top:100%;
        display: none;
        background-color: #fff;
        z-index: 123;
        max-height: 100vh;
        overflow: auto;
    }
    .header-top {
        display: none;
    }
    .header-bottom .logo,
    .header-bottom .address,
    .header-bottom .telephone {
        display: block;
    }
    .header-bottom .container {
        border-bottom: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-top: 0;
    }
    .header-bottom {
        padding:32px 0 48px;
    }
    .header-bottom .logo {
        margin-bottom: 24px;
    }
    .header-bottom .address {
        margin-bottom: 12px;
        text-align: center;
    }
    .header-bottom .telephone {
        margin-bottom: 12px;
        text-align: center;
    }
    header .menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:0;
        margin-bottom: 32px;
    }
    header .menu > li.menu-item-has-children {
        width: 100%;
        padding-right: 0;
    }
    header .menu > li.menu-item-has-children > a {
        padding-right: 24px;
        padding-left: 24px;
    }
    header .menu > li.menu-item-has-children > .trigger-sub-menu {
        height: 34px;
    }
    header .menu > li > a {
        text-align: center;
    }
    header .menu > li.menu-item-has-children:hover > .trigger-sub-menu {
        transform: unset;
    } 
    header .menu > li.menu-item-has-children > .trigger-sub-menu.in {
        transform: rotate(180deg);
    }
    header .menu > li.menu-item-has-children:hover > .sub-menu {
        display: none;
        background-color: transparent;
        box-shadow: unset!important;
        position: unset;
        padding: 0 0 12px;
        gap:0;
    }
    header .menu > li > .sub-menu {
        min-width: auto;
        position: unset;
        padding-bottom: 12px;
    }
    header .menu > li > .sub-menu li {
        margin-bottom: 12px;
    }
    header .menu > li > .sub-menu li:last-child {
        margin-bottom: 0;
    }
    header .menu > li > .sub-menu a {
        text-align: center;
        width: 100%;
        display: block;
    }
}
/* END */

/* INTRO */
.intro {
    width: 100%;
    height: 650px;
    background-image:url('img/booking-table-bg-3.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.intro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)); 
    padding:48px 12px;
}
.intro-inner .subtitle {
    font-weight: 400;
    font-size: 32px;
    text-align: center;
    color:#fff;
    line-height: 1.23;
    margin-bottom: 0;
    margin-top: auto;
}
.intro-inner .title {
    font-size: 82px;
    text-align: center;
    color:#fff;
    line-height: 1.23;
    font-weight: 600;
    margin-bottom: 50px;
}
.intro-inner .description {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin: 0;
    color:#fff;
}
.intro-cover__arrow {
    display: block;
    width: 38px;
    height: 22px;
    margin-top: auto;
    text-decoration: none;
    outline: none;
    -webkit-animation: t-arrow-bottom 1.7s ease infinite;
    animation: t-arrow-bottom 1.7s ease infinite;
}
@keyframes t-arrow-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-7px);
        transform: translateY(-7px);
    }
    55% {
        -webkit-transform: translateY(-7px);
        transform: translateY(-7px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.intro-cover__arrow svg {
    width: 100%;
    height: 100%;
    display: block;
    fill:#fff;
}
@media(max-width:768px) {
    .intro-inner .title {
        font-size: 52px;
    }
}
@media(max-width:420px){
    .intro {
        height: 550px;
    }
    .intro-inner .subtitle {
        font-size: 24px;
    }
    .intro-inner .title {
        font-size: 42px;
        margin-bottom: 30px;
    }
}
/*END*/

/* ABOUT US */
.about-us {
    padding-top: 60px;
    padding-bottom: 60px;
}
.about-us-inner {
    max-width: 960px;
    width: 100%;
    margin: auto;
}
.about-us-inner .title {
    text-align: center;
    margin: 0;
    padding-bottom: 43px;
    position: relative;
    color:#000;
}
.about-us-inner .title::after {
    content:'';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #000;
    position: absolute;
    left:50%;
    bottom:0;
    transform: translateX(-50%);
}
.about-us-text {
    margin-top: 40px;
    text-overflow: ellipsis;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.55;
    text-align: center;
}
@media(max-width:576px) {
    .about-us-inner .title {
        padding-bottom: 32px;
        font-size: 28px;
        line-height: 1.2;
    }
    .about-us-text {
        margin-top: 24px;
        font-size: 16px;
        line-height: 1.5;
    }
    .about-us {
        padding-bottom: 32px;
    }
}
/* END */

/* interior */
.interior {
    margin-bottom: 70px;
}
.interior-gallery {
    height: 200px;
    overflow: hidden;
}
.interior-gallery .slick-prev {
    opacity: 1;
    z-index: 22;
    left:25px;
    outline: none;
    box-shadow: unset;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='30' height='30' rx='15' fill='white'/%3E%3Cpath d='M21 14.5L9 14.5M9 14.5L12.5122 18M9 14.5L12.5122 11' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: .3s;
}
.interior-gallery .slick-prev:hover {
    opacity: .7;
}
.interior-gallery .slick-prev::before {
    display: none;
}
.interior-gallery .slick-next {
    opacity: 1;
    z-index: 22;
    right:25px;
    outline: none;
    box-shadow: unset;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='30' height='30' rx='15' fill='white'/%3E%3Cpath d='M9 14.5L21 14.5M21 14.5L17.4878 11M21 14.5L17.4878 18' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: .3s;
}
.interior-gallery .slick-next:hover {
    opacity: .7;
}
.interior-gallery .slick-next::before {
    display: none;
}
.interior-gallery .slick-track {
    height: 100%;
    display: flex;
    gap:20px;
}
.interior-gallery .slick-list {
    height: 100%;
    margin: 0 -10px;
}
.interior-gallery .slick-slide {
    height: 100%;
    outline: none;
}
.interior-gallery a {
    display: block;
    height: 100%;
    text-decoration: none;
    outline: none;
}
.interior-gallery img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
@media(max-width:576px) {
    .interior-gallery {
        height: 120px;
    }
    .interior-gallery .slick-track {
        gap:10px;
    }
    .interior-gallery .slick-list {
        margin: 0 -5px;
        padding-right: 75px;
    }
}
/* END */

/* BOOKING SECTION */
.booking-table {
    padding-top: 75px;
    padding-bottom: 75px;
    margin-bottom: 70px;
    background-color: #bdbbb8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('img/booking-table-bg-3.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.booking-table::after {
    content:'';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-color: #000;
    z-index: 1;
	opacity:50%;
}
.booking-table > * {
    position: relative;
    z-index: 2;
}
.booking-table .title {
    color:#fff;
    font-size: 48px;
    line-height: 1.23;
    font-weight: 600;
    margin: 0;
}
.booking-table .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    background-color: #ffffff;
    border-radius: 100px;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    text-decoration: none;
    height: 60px;
    font-size: 16px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    border:1px solid #fff;
    margin-top: 70px;
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}
.booking-table .btn:hover {
    border-color:#000;
    color:#fff;
    background-color: #000;
}
.booking-table .btn:focus,
.booking-table .btn:active {
    border-color:#000;
    color:#fff;
    background-color: #000;
}
.booking-table .btn::before {
    content:'';
    display: block;
    width: 45px;
    height: 100px;
    position: absolute;
    left:-60px;
    bottom:-20px;
    background-image: url("data:image/svg+xml,%3Csvg role='presentation' class='t580__arrow-icon ' style='fill:%23c9c9c9; ' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 180'%3E%3Cpath d='M54.1 109c-.8 0-1.6-.4-2-1.1-.8-1.1-.5-2.7.6-3.5 1.3-.9 6.8-4 11.6-6.6-15.9-1.3-29.2-8.3-38.5-20.2C8.9 56 8.5 24.1 13.2 3.4c.3-1.3 1.7-2.2 3-1.9 1.3.3 2.2 1.7 1.9 3-4.5 19.6-4.2 49.8 11.6 70 9 11.5 21.5 17.7 37.2 18.4l-1.8-2.3c-1.4-1.7-2.7-3.4-4.1-5.1-.7-.9-1.5-1.9-2.3-2.9-.9-1.1-.7-2.6.4-3.5 1.1-.9 2.6-.7 3.5.4 0 0 0 .1.1.1l6.4 7.9c.5.5.9 1.1 1.4 1.7 1.5 1.8 3.1 3.6 4.4 5.6 0 .1.1.1.1.2.1.3.2.5.3.8v.6c0 .2-.1.4-.2.6-.1.1-.1.3-.2.4-.1.2-.3.4-.5.6-.1.1-.3.2-.5.3-.1 0-.1.1-.2.1-1.2.6-16 8.6-18.1 10-.5.5-1 .6-1.5.6z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.booking-shorts {
    margin-bottom: 70px;
}
.booking-shorts .wpcf7-form {
    max-width: 960px;
    margin: auto;
}
.booking-shorts .wpcf7-form .row {
    margin: 0;
    padding: 0;
    gap:24px;
}
.booking-shorts .wpcf7-form .wpcf7-form-control-wrap {
    width: calc(100% / 4 - 18px);
    padding: 0;
}
.booking-shorts .wpcf7-form .btn-submit {
    width: calc(100% / 4 - 18px);
    margin: 0;
    margin-bottom: 10px;
    height: auto;
}
.booking-shorts .wpcf7-form .policy-privacy {
    max-width: 100%;
    text-align: end;
}
@media(max-width:992px) {
    .booking-shorts .wpcf7-form .row {
        gap: 12px;
    }
    .booking-shorts .wpcf7-form .btn-submit {
        width: calc(100% / 4 - 9px);
    }
    .booking-shorts .wpcf7-form .wpcf7-form-control-wrap {
        width: calc(100% / 4 - 9px);
    }
    .booking-table .btn {
        margin-top: 110px;
    }
    .booking-table .btn::before {
        content:'';
        display: block;
        width: 20px;
        height: 40px;
        position: absolute;
        bottom:calc(100% + 20px);
        left:50%;
        transform: translateX(-50%);
        background-image: url("data:image/svg+xml,%3Csvg role='presentation' class='t580__arrow-icon_mobile' style='fill:%23c9c9c9;' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35 70'%3E%3Cpath d='M31.5 47c-1.1-.9-2.7-.7-3.5.4L20.2 57V5.8c0-1.4-1.1-2.5-2.5-2.5s-2.5 1.1-2.5 2.5V57l-7.8-9.7c-.8-1-2.4-1.2-3.5-.3-1.1.9-1.2 2.4-.4 3.5l12.2 15.2c.5.6 1.2.9 1.9.9s1.5-.3 1.9-.9l12.2-15.2c1-1.1.9-2.6-.2-3.5z'%3E%3C/path%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
}
@media(max-width:768px) {
    .booking-shorts .wpcf7-form .row {
        margin: 0;
        padding: 0;
        gap: 0;
    }
    .booking-shorts .wpcf7-form .btn-submit {
        width: 100%;
    }
    .booking-shorts .wpcf7-form .wpcf7-form-control-wrap {
        width: 100%;
    }
    .booking-shorts .wpcf7-form .policy-privacy {
        max-width: 100%;
        text-align: start;
    }
}
@media(max-width:576px) {
    .booking-table {
        padding-top: 48px;
        padding-bottom: 48px;
        padding-left: 12px;
        padding-right: 12px;
    }
    .booking-table .btn {
        width: 100%;
        margin-top: 68px;
    }
    .booking-table .title {
        font-size: 30px;
    }
}
/* END */

/* ACTIONS */
.action-single {
    margin-bottom: 70px;
}
.actions {
    padding:30px 0;
    margin-bottom: 40px;
}
.home .actions {
	padding-top:0;
}
.actions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:10px;
}
body.post-type-archive-actions .actions-list {
    justify-content: flex-start;
}
.actions-item {
    width: calc(100% / 3 - 7px);
    height: 430px;
    display: flex;
    position: relative;
    transition: .3s;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    overflow: hidden;
}
.home .actions-item {
	width: calc(100% / 3 - 7px);
    height: auto;
    display: flex;
    position: relative;
    transition: .3s;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    overflow: hidden;
}
.actions-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .3s;
}
.home .actions-item img {
	height:auto;
}
body:not(.home) .actions-item:hover img {
    transform: scale(1.1);
}
.actions-item-filter {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding:50px 40px;
}
.actions-item-filter .title {
    text-decoration: none;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 600;
    color:#fff;
    margin: 0;
}
.actions-item-filter .excerpt {
    margin: 0;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    color:#fff;
}
.action-single-wrap {
    display: flex;
    gap:32px;
}
.action-single-ls {
    width: 360px;
}
.action-single-ls img {
    width: 100%;
    height: auto;
}
.action-single-rs {
    width: calc(100% - 360px - 32px);
}
@media(max-width:1400px) {
    .actions-list {
        gap:10px;
    }
    .actions-item {
        width: calc(100% / 3 - 7px);
    }
}
@media(max-width:992px) {
    .actions-item {
        width: calc(100% / 2 - 20px);
    }
}
@media(max-width:768px) {
    .action-single-wrap {
        display: flex;
        flex-direction: column;
        gap:32px;
    }
    .action-single-ls {
        width: 100%;
    }
    .action-single-rs {
        width: 100%;
    }
}
@media(max-width:576px) {
    .action-single {
        margin-bottom: 48px;
    }
    .action-single .title {
        font-size: 26px;
        line-height: 1.2;
    }
    .actions-list {
        gap: 12px;
    }
    .actions-item {
        width: 100%;
        height: 260px;
    }
	.home .actions-item {
		height:auto;
	}
    .actions-item-filter {
        padding: 40px 20px;
    }
}
/* END */

/* EVENTS */
body.single-events header {
    margin-bottom: 0;
}
.event-intro {
    background-attachment: fixed;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
    text-align: center;
    -moz-transform: unset;
    vertical-align: middle;
    width: 100%;
}
.event-intro-inner {
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
    display: block;
    width: 100%;
    height: 100%;
}
.event-intro-filter {
    min-height: 720px;
    max-width:1200px;
    margin:auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-intro-filter-ls {
    width: calc(100% - 360px);
}
.event-intro-filter-ls .title {
    color:#fff;
    margin: 0;
    text-align: left;
    font-size: 52px;
}
.event-intro-filter-rs {
    width:100%;
    max-width:460px;
    padding-left: 100px;
}
.event-intro-filter-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}
.event-intro-filter-col:first-of-type {
    padding-top: 0;
}
.event-intro-filter-col .icon {
    display: flex;
    margin-right: 35px;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}
.event-intro-filter-col .text {
    font-size: 20px;
    line-height: 1.55;
    font-weight: 500;
    color:#fff;
    text-align: left;
    width: calc(100% - 50px - 35px);
}
.event-content {
    max-width: 960px;
    margin:auto;
    padding:0 12px;
    padding-top: 75px;
    padding-bottom: 45px;
    text-align: center;
    font-size: 24px;
    line-height: 1.4;
}
.event-content h3,
.event-content h2 {
    margin-bottom: 24px;
}
.event-content-tag {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 93px;
    margin: 0;
}
.event-content-quote {
    margin-bottom: 48px;
}
.event-content-quote-header {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.event-content-quote-header::after {
    content:'';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left:0;
    right:0;
    top:50%;
    transform: translateY(-50%);
    z-index: 1;
}
.event-content-quote-header .title {
    position: relative;
    z-index: 2;
    background-color: #000;
    color:#fff;
    padding: 10px 43px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.event-content-quote-text {
    padding: 40px 0 30px;
    text-align: center;
    border-bottom: 1px solid #000;;
}
body.single-events .booking-table > * {
    filter:invert(1);
}
.event-timetable {
    margin-bottom: 78px;
}
.event-timetable .title {
    text-align: center;
}
.event-timetable-list {
    display: flex;
    flex-direction: column;
    gap:60px;
    max-width: 960px;
    margin: auto;
    align-items: center;
}
.event-timetable-item {
    display: flex;
    align-items: flex-start;
    gap:40px;
    width: 100%;
}
.event-timetable-item .thumbnail {
    width: 360px;
    height: auto;
}
.event-timetable-item .thumbnail img {
    width: 100%;
    height: auto;
}
.event-timetable-item .name-date {
    width: calc(100% - 360px - 30px);
    display: flex;
    justify-content: space-between;
    gap:24px;
}
.event-timetable-item .name {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
}
.event-timetable-item .name h3 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
    margin-bottom: 12px;
}
.event-timetable-item .start {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    text-align: end;
}
@media(max-width:992px) {
    .event-intro-filter {
        flex-direction: column;
        align-items: flex-start;
        gap:32px;
        min-height: 520px;
    }
    .event-intro-filter-col {
        padding-top: 24px;
    }
    .event-intro-filter-col:first-of-type {
        padding-top: 0;
    }
    .event-intro-filter-ls {
        width: 100%;
    }
    .event-intro-filter-rs {
        width: 100%;
        padding-left: 0;
    }
    .event-content {
        padding-top: 48px;
        font-size: 18px;
    }
    .event-content-tag {
        padding-bottom: 48px;
    }
    .event-timetable-list {
        gap:48px;
    }
    .event-timetable-item {
        flex-direction: column;
        align-items: center;
        gap:24px;
        justify-content: center;
    }
    .event-timetable-item .name-date {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:12px;
    }
    .event-timetable-item .thumbnail {
        width: 300px;
    }
}
@media(max-width:576px) {
    .event-intro-filter-ls .title {
        font-size: 32px;
    }
}
/* END */

/* BOOKING TEMPLATE */
.booking-form {
    /* max-width: 560px;
    margin: auto; */
    background-image: url('img/112.jpg');
    background-position: center;
    background-size: cover;
    padding: 70px 0;
    position: relative;
    margin-bottom: 70px;
}
section.booking-form::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000000d4;
}
section.booking-form .container {
    max-width: 560px;
    margin: auto;
    position: relative;
    z-index: 2;
}
section.booking-form .wpcf7 {
    /* filter: invert(1); */
}
section.booking-form .modal-title {
    color:#fff;
}
section.booking-form .wpcf7-form .input {
    border-color:#fff;
    color:#fff;
}
section.booking-form .wpcf7-form .input::placeholder {
    color:#ffffffa6;
}
section.booking-form .wpcf7-form .input:focus {
    border-color: #000;
}
section.booking-form .wpcf7-form .btn-submit {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 10px;
    background-color: #000;
    border-color:#808080;
    color:#fff;
}
section.booking-form .wpcf7-form .btn-submit:hover {
    background-color:#d6d6d6;
    color:#000;
    border-color: #000;
}
.acceptance-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 24px;
}
.acceptance-wrapper input {
    -webkit-appearance: auto;
}
.wpcf7-form  .acceptance-wrapper .wpcf7-form-control-wrap {
    width: 23px;
    margin-right: 12px;
}
.acceptance-wrapper > .policy-privacy {
    width: calc(100% - 35px);
}
section.booking-form .wpcf7-form .policy-privacy {
    color:#fff;
}
section.booking-form .wpcf7-form .policy-privacy a {
    text-decoration-color: #fff;
    color:#fff;
}
section.booking-form .wpcf7-form .policy-privacy a:hover {
    text-decoration-color: transparent;
}
section.booking-form .wpcf7 form.invalid .wpcf7-response-output {
    color:#fff;
}
section.booking-form .wpcf7-form.sent .wpcf7-response-output {
    color:#fff;
}
/* END */

/* GALLERY */
.gallery {
    padding:0 20px;
    margin-bottom: 70px;
}
.gallery-list {
    display: flex;
    gap:20px;
    flex-wrap: wrap;
}
.gallery-item {
    display: block;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition: .3s;
    width: calc(100% / 4 - 15px);
    height: 280px;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .3s;
}
@media(max-width:992px) {
    .gallery-item {
        width: calc(100% / 3 - 15px);
    }
}
@media(max-width:576px) {
    .gallery-list {
        gap:10px
    }
    .gallery-item {
        width: calc(100% / 2 - 5px);
        height: 220px;
    }
    .gallery {
        padding-left: 12px;
        padding-right: 12px;
    }    
}
@media(max-width:414px) {
    .gallery-item {
        height: 180px;
    }
}
/* END */

/* FORM AND MODAL */
.modal .btn-close {
    display: flex;
    margin-left: auto;
}
.modal-title {
    color: #000;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 30px;
}
.wpcf7-form .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}
.wpcf7-form .input {
    background-color: transparent;
    outline: none;
    margin-bottom: 10px;
    padding:14px 17px;
    border-radius: 10px;
    border: 1px solid #000;
    width: 100%;
    display: block;
    transition: .3s;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.wpcf7-form textarea.input {
	max-height:100px;
}
.wpcf7-form .input::placeholder {
    color:#000;
}
.wpcf7-form .input:focus {
    border-color:#000;
}
.wpcf7-form .colset2 {
    display: flex;
    flex-wrap: wrap;
    margin:0 -5px;
}
.wpcf7-form .colset2 .wpcf7-form-control-wrap {
    width: calc(100% / 2 - 10px);
    margin:0 5px;
}
.wpcf7-form .btn-submit {
    width: 100%;
    /* margin-top: 30px; */
    /* margin-bottom: 10px; */
}
.wpcf7-form .policy-privacy {
    color: #000;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    max-width: 100%;
    margin:0;
}
.wpcf7-form .policy-privacy a {
    color:#000;
    text-decoration-color: transparent;
    font-weight: 700;
    transition: .3s;
}
.wpcf7-form .policy-privacy a:hover {
    text-decoration-color: #000;
}
.wpcf7-spinner {
    display: none;
}
.wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
    font-weight: 500;
}
.wpcf7 form.invalid .wpcf7-response-output{
    border-width:1px;
    border-color:#a46932;
    margin: 15px 0;
    padding: 14px 17px;
    font-size: 14px;
    line-height: 130%;
    border-radius: 2px;
}
.wpcf7-form.sent > *:not(.wpcf7-response-output) {
    display: none!important;
}
.wpcf7-form.sent .wpcf7-response-output {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 0;
    padding: 20px 20px 30px;
	border-color:#000!important;
}
.wpcf7-form.sent .wpcf7-response-output::before {
    content:'Спасибо';
    display: block;
    font-weight: 500;
    font-size: 38px;
    line-height: 120%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    margin-bottom: 8px;
}
.datepickers-container {
    z-index: 99999;
}
.ui-timepicker-standard {
    z-index: 99999!important;
}
@media(max-width:420px) {
    .modal-title {
        margin-bottom: 24px;
        font-size: 28px;
    }
}
/* END */

.main-shop {
    margin-bottom: 32px;
}
/* pdf section */
.pdf-block-menu {
    margin-bottom: 75px;
}
.pdf-block-list {
    display: flex;
    gap:40px
}
.pdf-block-menu-item {
    display: flex;
    align-items: center;
    width: calc(100% / 2 - 20px);
    text-decoration: none;
}
.pdf-block-menu-item img {
    width: 240px;
}
.pdf-block-menu-item .content {
    width: calc(100% - 240px);
    padding: 30px 30px 40px;
}
.pdf-block-menu-item .content .title {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
    margin: 0;
    text-decoration: none;
}
.pdf-block-menu-item .content .link {
    margin-top: 5px;
    font-size: 16px;
    color: #a46932;
    line-height: 1.55;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.pdf-block-menu-item .content .link::after {
    content: "\00a0→";
}
@media(max-width:992px) {
    .main-shop {
        margin-bottom: 0px;
    }
    .pdf-block-list {
        gap: 20px;
        flex-wrap: wrap;
    }
    .pdf-block-menu-item {
        width: 100%;
    }
    .pdf-block-menu-item:last-child {
        flex-direction: row-reverse;
    }
    .pdf-block-menu-item:last-child .content {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
}
@media(max-width:576px) {
    .pdf-block-menu-item img {
        width: 140px;
    }
    .pdf-block-menu-item .content {
        width: calc(100% - 140px);
        padding: 10px 20px 20px;
    }
    .pdf-block-menu-item .content .title {
        font-size: 18px;
    }
    .pdf-block-menu-item .content .link {
        margin-top: 5px;
        font-size: 14px;
    }
    .pdf-block-menu {
        margin-bottom: 48px;
    }
}
/* end */

/* FOOTER */
footer {
    display: flex;
}
.footer-ls {
    padding: 90px;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap:45px;
}
.footer-col .title {
    font-size: 28px;
    line-height: 1.17;
    font-weight: 600;
    margin: 0;
}
.footer-col .subtitle {
    font-size: 18px;
    line-height: 1.17;
    font-weight: 600;
    margin: 0;
}
.footer-col {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
}
.footer-col .telephone {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: .3s;
}
.footer-col .telephone:hover {
    text-decoration-color: #000;
}
.footer-rs {
    width: 50%;
}
.footer-rs > * {
    width: 100%;
    height: 100%;
}
.social-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    max-width: 244px;
}
.social-links .links-item {
    display: block;
    width: 40px;
    height: 40px;
    margin:0 10px 10px 0;
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
}
.social-links .links-item svg {
    width: 100%;
    height: 100%;
    display: block;
}
.social-links .inst-warning {
    font-size: 11px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0em;
    text-align: left;    
    color:#000;
    margin: 0;
    width: 100%;
}
.social-links .links-item.inst {
    position: relative;
}
.social-links .links-item.inst::before {
    content:'';
    display: block;
    width: 11px;
    height: 11px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='13' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.98622 12.02H5.14622L5.34622 7.42L1.50622 9.94L0.626221 8.34L4.70622 6.26L0.626221 4.18L1.50622 2.62L5.34622 5.1L5.14622 0.5H6.98622L6.74622 5.1L10.5862 2.62L11.5062 4.18L7.42622 6.26L11.5062 8.34L10.5862 9.94L6.74622 7.42L6.98622 12.02Z' fill='%23000000'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top:-7px;
    right:-11px;
}
@media(max-width:992px) {
    .footer-ls {
        padding: 40px;
    }
    .footer-rs {
        height: 400px;
    }
}
@media(max-width:768px) {
    footer {
        flex-wrap: wrap;
    }
    .footer-ls {
        padding: 30px 20px;
        width: 100%;
        gap:25px;
    }
    .footer-rs {
        height: 400px;
        width: 100%;
    }
    .footer-col .title {
        font-size: 24px;
    }
    .footer-col .subtitle {
        font-size: 16px;
    }
    .footer-col {
        font-size: 16px;
    }
}
/* END */

.fixed-btn {
    display: block;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    position: fixed;
    right: 30px;
    bottom: 130px;
    padding: 0;
    z-index: 23;
    border: 1px solid #fff;
    box-shadow: 0 0 9px 3px #00000080 !important;
    transition: .3s;
    overflow: hidden;
    background-color: #000;
}
.fixed-btn:hover {
    box-shadow: 0 0 14px 7px #00000080 !important;
}
.fixed-btn span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-align: center;
    font-size: 13px;
    line-height: 130%;
    font-weight: bold;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.fixed-btn-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: block;
    width: 62px;
    height: 62px;
    border: none;
    outline: none;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%)!important;
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    padding:0;
    z-index: 24;
}
.fixed-btn-scroll-top svg {
    width: 100%;
    height: 100%;
}
.fixed-btn-scroll-top.opacity-1 {
  visibility:visible;
  opacity:1;
}
@media(max-width:576px) {
    .fixed-btn-scroll-top {
        right: 12px;
        width: 42px;
        height: 42px;
    }
    .fixed-btn {
        display: block;
        width: 130px;
        height: auto;
        border-radius: 16px;
        position: fixed;
        padding: 20px;
        right: 12px;
        bottom: 90px;
        padding: 10px 20px;
        z-index: 23;
        border: 0;
    }
    .fixed-btn span {
        font-size: 12px;
    }
}


/* MODAL COOKIE */
#cookie_note {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: #e3e3e3;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4)!important;
    z-index: 999;
}

#cookie_note .btn {
    background-color: #e3e3e3;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 130%;
    border: 1px solid #000;
    box-shadow: unset !important;
    outline: none !important;
    padding: 6.5px 22px 5.5px;
    height: 100%;
}

#cookie_note .btn:hover {
    background-color: #000;
    color: #fff;
}

#cookie_note p {
    margin: 0;
    font-size: 14px;
    line-height: 130%;
    text-align: left;
    color: #000;
}

#cookie_note a {
    color: #000;
    transition: .3s;
    text-decoration-color: #000;
}

#cookie_note a:hover {
    text-decoration-color: transparent;
}

.cookie_accept {
    width: 20%;
}

@media(max-width:992px) {
    #cookie_note {
        flex-direction: column;
    }

    #cookie_note .btn {
        width: auto;
		font-size: 10px;
        margin-top: 12px;
		border: none;
		margin-left: auto;
		margin-right: auto;
		background: none;
        /* margin-left: auto; */
        padding: 4px 6px;
    }
	#cookie_note p {
        font-size: 10px;
        line-height: 12px;
    }
}

@media (min-width: 576px) {
    #cookie_note.show {
        display: flex;
    }
}

@media (max-width: 575px) {
    #cookie_note.show {
        display: block;
        text-align: left;
        width: 100%;
        padding: 10px 10px;
    }
}

.grecaptcha-badge {
	right:-256px !important;
}


/* ZALY CSS */
body.page-template-page-zaly header {
    margin-bottom: 0;
}
body.page-template-page-zaly .intro-inner .title {
    font-size: 52px;
    max-width: 790px;
}
.zaly-advs {
    padding-top: 48px;
    padding-bottom: 48px;
}
.zaly-advs .title {
    text-align: center;
}
.zaly-advs-list {
    display: flex;
    gap:24px;
    flex-wrap:wrap;
}
.zaly-advs-item {
    width: calc(100% / 2 - 12px);
    display: flex;
    gap:12px;
    align-items: flex-start;
}
.zaly-advs-item .icon {
    display: block;
    width: 52px;
    height: 52px;
}
.zaly-advs-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.zaly-advs-item .text {
    width: calc(100% - 52px - 12px);
    padding-top: 14px;
}
.zaly-content {
    margin-bottom: 70px;
}
.zaly-list {
    /* padding-top: 48px;
    padding-bottom: 48px;
    background-color: #000; */
    margin-bottom: 70px;

}
.zaly-list-row {
    display: flex;
    flex-wrap: wrap;
    gap:48px;
}
.zaly-list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:24px;
}
.zaly-list-item:nth-child(2n + 2) {
    flex-direction: row-reverse;
    align-items: center;
}
.zaly-list-item .thumbnail {
    display: block;
    width: 600px;
    height: 300px;
    transition: .3s;
    border-radius: 12px;
    overflow: hidden;
}
.zaly-list-item .thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .3s;
}
.zaly-list-item .text {
    font-size: 14px;
    width: calc(100% - 600px - 24px);
}
.zaly-list-item .text h3 {
    font-size: 24px;
    margin: 0;
    margin-bottom: 12px;
}
@media(max-width:992px) {
    .zaly-list-item .thumbnail {
        display: block;
        width: 300px;
        height: 300px;
    }
    .zaly-list-item .text {
        width: calc(100% - 300px - 24px);
    }
}
@media(max-width:576px) {
    .zaly-advs-item {
        flex-wrap: wrap;
        width: 100%;
    }
    body.page-template-page-zaly .intro-inner .title {
        font-size: 32px;
    }
    .zaly-list-item {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .zaly-list-item:nth-child(2n + 2) {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .zaly-list-item .text {
        width: 100%;
    }
    .zaly-list-item .thumbnail {
        display: block;
        max-width: 300px;
        width: 100%;
    }
}
/* END */
@media(max-width:767.98px){
	.header-bottom .menu-item-has-children.active .sub-menu {
        display: block!important;
    }
}