:root {
    --dark-bg-color: #000;
    --dark-color: #fff;
    --light-bg-color: #fff;
    --light-color: #000;
}

* {
    font-family: 'Courier Prime', monospace;
    scroll-behavior: smooth;
    outline: 0 !important;
}

body {
    font-size: 16px;
}

::selection {
    background-color: #000;
    color: #fff;
}

a {
    text-decoration: none;
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #313131;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1c1c1c;
}

img {
    max-width: 100%;
}

.menu-toggle,
.menu-wrapper {
    transition: 300ms;
    display: none;
}

.wow {
    visibility: hidden;
}

.full-container {
    padding: 0 100px;
}

.main-header .full-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .logo img {
    cursor: pointer;
    height: 200px;
    transition: 300ms;
}

.main-banner img {
    width: 100%;
}

.main-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    padding-top: 30px;
    transition: 300ms;
}

.main-header .reservation {
    font-size: 18px;
    text-align: right;
    color: #fff;
    transition: 300ms;
}

.main-header .reservation a {
    color: #fff;
    transition: 300ms;
    position: relative;
}

.main-header .reservation a:After {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    z-index: 1;
    background: #fff;
}

.main-header .menu nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-header .menu nav a {
    color: #fff;
    font-size: 25px;
    margin-left: 20px;
    transition: 300ms;
    content: '';
    position: relative;
}

.main-header .menu nav a:After {
    content: '';
    position: absolute;
    left: 50%;
    height: 1px;
    bottom: 0;
    background: #fff;
    transition: 300ms;
    width: 0;
}

.main-header .menu nav a:Hover:after {
    left: 0;
    width: 100%;
}

.main-header.fixed-bar {
    background: var(--dark-bg-color);
    padding: 15px 0;
}

.main-header.fixed-bar .logo img {
    height: 100px;
}

.main-header.fixed-bar .reservation {
    margin-top: -44px;
    opacity: 0;
}

.main-about {
    margin: 120px 0;
}

.main-about .about-container {
    display: flex;
}

.main-about .about-container .image {
    width: 35%;
    overflow: hidden;
}

.main-about .about-container .text {
    width: 65%;
    padding-left: 40px;
}

.main-about .about-container .text h1 {
    font-weight: bolder;
}

.main-menu {
    margin: 120px 0;
}

.main-menu .categories-container {
    display: flex;
    flex-wrap: wrap;
}

.main-menu .categories-container .category {
    width: calc(25% - 30px);
    margin: 15px;
    position: relative;
}

.main-menu .categories-container .category header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.main-menu .categories-container .category header .text {
    width: calc(100% - 100px);
    padding-left: 30px;
}

.main-menu .categories-container .category header .title {
    font-size: 20px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.main-menu .categories-container .category header .icon {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 100%;
    height: 100px;
    position: relative;
    transition: 300ms;
}

.main-menu .categories-container .category header .icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.main-menu .categories-container .category .products {
    position: absolute;
    left: -30px;
    top: -30px;
    transition: 300ms;
    width: calc(100% + 100px);
    background: #fff;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    transform: scale(.9);
    padding-left: 160px;
    border-radius: 10px;
    padding-right: 10px;
    min-height: 200px;
}

.main-menu .categories-container .category.active .products {
    max-height: 10000px;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.main-menu .categories-container .category.active:not(.product-active) header .icon {
    z-index: 11;
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.main-menu .categories-container .category .products ul {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.main-menu .categories-container .category .products ul li:not(:last-child) {
    margin-bottom: 10px;
}

.main-menu .categories-container .category .products ul li button {
    display: flex;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    transition: 300ms;
    font-size: 18px;
    padding: 5px 10px;
    align-items: center;
    border-radius: 5px;
}

.main-menu .categories-container .category .products ul li button:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    margin-right: 10px;
    font-size: 12px;
}

.main-menu .categories-container .category .products ul li button:Hover {
    background: #000;
    color: #fff;
}

.main-menu .categories-container .category .products ul li .details {
    position: absolute;
    left: 0;
    top: 0;
    transition: 300ms;
    padding: 15px;
    z-index: 99;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    width: 100%;
    overflow-y: scroll;
}

.main-menu .categories-container .category .products ul li.active .details {
    transform: translate(0);
    opacity: 1;
    visibility: visible;
}

.main-menu .categories-container .category .products ul li.active .details .close {
    position: absolute;
    right: 30px;
    top: 30px;
    background: #000;
    color: #fff;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    z-index: 11;
    cursor: pointer;
    transition: 300ms;
}

.main-menu .categories-container .category .products ul li.active .details .close:Hover {
    background: red;
    box-shadow: 0 0 12px red;
}

.main-menu .categories-container .category .products ul li.active .details .close i {
    font-weight: lighter;
}

.main-menu .categories-container .category .products ul li .details .image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-menu .categories-container .category .products ul li .details .title strong {
    display: block;
    font-size: 28px;
    margin-bottom: 20px;
    padding-right: 60px;
}

.close-products {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 0;
    transition: 300ms;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 1;
    border-radius: 7px;
}

.close-products i {
    margin-right: 10px;
}

.close-products:Hover {
    background-color: red;
    box-shadow: 0 0 12px red;
}

.main-menu .section-header {
    margin-bottom: 50px;
    text-align: center;
}

.main-menu .section-header h2 {
    font-size: 40px;
}

.main-menu .section-footer {
    text-align: center;
    margin-top: 50px;
}

.main-menu .section-footer a {
    display: inline-block;
    color: #000;
    border: 2px solid #000;
    padding: 10px 30px;
    border-radius: 30px;
    transition: 300ms;
    font-weight: 600;
}

.main-menu .section-footer a:Hover {
    background-color: #000;
    color: #fff;
}

.main-survey {
    margin: 120px 0;
    text-align: center;
}

.main-survey img {
    display: inline-block;
    margin: auto;
}

.main-bottles {
    margin: 120px 0;
    text-align: center;
}

.main-bottles img {
    display: inline-block;
    margin: auto;
}

.main-map iframe {
    width: 100%;
    height: 700px;
}

.main-map .section-header h2 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.main-footer {
    background: #262626;
    padding: 100px 0 30px 0;
}

.main-footer .footer-container {
    color: #fff;
}

.main-footer .footer-bar {
    width: 100%;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #444;
}

.footer-boxes {
    display: flex;
    align-items: flex-start;
}

.footer-boxes aside {
    width: 25%;
    display: flex;
}

.footer-boxes aside .icon {
    width: 40px;
    display: flex;
}

.footer-boxes aside .icon i {
    display: flex;
    font-size: 25px;
    opacity: .3;
}

.footer-boxes aside > .text {
    width: calc(100% - 40px);
    padding-left: 20px;
}

.footer-boxes aside > .text strong {
    display: block;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-form .title {
    display: block;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.newsletter-form input {
    width: calc(100% - 40px);
    height: 40px;
    background: #313131;
    border: 0;
    color: #fff;
    padding: 0 15px;
}

.newsletter-form button {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    transition: 300ms;
    background: #978668;
    color: #fff;
    transition: 300ms;
}

.newsletter-form button:Hover {
    background: #313131;
}

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

.footer-bar p {
    margin: 0;
    font-size: 14px;
    font-weight: lighter;
}

.footer-bar p img {
    height: 23px;
    transition: 300ms;
    opacity: .5;
}

.footer-bar p img:Hover {
    opacity: 1;
}

.footer-bar .socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-bar .socials a {
    font-size: 20px;
    margin-left: 10px;
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    background: #313131;
    color: #6a6a6a;
}

.footer-bar .socials a:Hover {
    transition: 300ms;
    background: #978668;
    color: #fff;
}

.newsletter-form p {
    margin-top: 10px;
    width: 100%;
}

.btn-close:focus {
    box-shadow: none;
}

.modal-dialog-scrollable .modal-content {
    border-radius: 0;
}

.modal-title {
    font-size: 30px;
    font-weight: 600;
}


.survey-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.survey-header p {
    margin: 0;
}

.survey-header button {
    border: 0;
    padding: 10px 20px;
    transition: 300ms;
    pointer-events: none;
    transition: 300ms;
}

.survey-header button.active {
    background: #3b9300;
    pointer-events: unset;
    color: #fff;
}

.item .question {
    padding: 30px;
    border-left: 5px solid #ddd;
    margin-bottom: 20px;
    margin-top: 20px;
}

.item .question > .title {
    font-size: 20px;
    font-weight: 500;
}

.item .checks {
    display: flex;
    flex-wrap: wrap;
}

.item .checks .check {
    position: relative;
    margin: 10px;
    cursor: pointer;
}

.item .checks .check label:before {
    content: '';
    width: 20px;
    height: 20px;
    background: #efefef;
    position: absolute;
    left: 0;
    top: 2px;
    border-radius: 5px;
    transition: 300ms;
    z-index: -1;
}

.item .checks .check input {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.item .checks .check label {
    margin: 0;
    color: #8b8b8b;
    transition: 300ms;
    cursor: pointer;
    padding-left: 20px;
}

.item .checks .check input:checked + label {
    color: #000;
}

.item .checks .check input:checked + label:before {
    width: calc(100% + 10px);
    height: 30px;
    top: -3px;
}

.item .checks .check label:after {
    content: '';
    width: 15px;
    height: 15px;
    background: #000;
    position: absolute;
    left: 8px;
    top: 3px;
    border-radius: 5px;
    transition: 300ms;
    opacity: 0;
    transform: scale(0);
}


.item .checks .check input:checked + label:after {
    transform: scale(1);
    opacity: 1;
}

.personal-information {
    display: flex;
    flex-wrap: wrap;
}

.personal-information .input {
    position: relative;
}

.personal-information input,
.personal-information textarea {
    border: 1px solid #000;
    padding: 15px;
    width: 100%;
}

.personal-information .input:first-child {
    width: 100%;
    margin-bottom: 10px;
}

.personal-information .input:nth-child(2),
.personal-information .input:nth-child(3) {
    width: calc(50% - 10px);
    margin-bottom: 10px;
}

.personal-information .input:nth-child(2) {
    margin-right: 20px;
}

.personal-information .input:last-child {
    width: 100%;
}

.personal-information textarea {
    height: 200px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

#final {
    text-align: center;
    padding: 100px 0;
}

#final .title {
    font-size: 35px;
}

.main-branches {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000;
    background-image: url(/images/branches.jpg);
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main-branches .branch .content .title {
    display: block;
    color: #fff;
    font-size: 25px;
    margin-top: 20px;
}

.main-branches .branch {
    margin: 0 30px;
}

.main-branches .branch:not(:last-child) {
    border-right: 1px solid #fff;
    padding-right: 40px;
}

.fixed-phone {
    display: none;
}

.dark-mode {
    background: #222222;
    color: #cfcfcf;
}

.dark-mode .main-menu .categories-container .category header .icon img {
    filter: invert(1);
}

.dark-mode .main-menu .categories-container .category header .icon {
    border-color: #fff;
}

.dark-mode .main-menu .categories-container .category.active:not(.product-active) header .icon {
    border-color: transparent;
    background: #222222;
}

.dark-mode .modal-content {
    background: #222222;
}

.dark-mode .modal-header .btn-close {
    filter: invert(1);
}

.dark-mode .personal-information input,
.dark-mode .personal-information textarea {
    background: #2a2a2a;
    border-color: transparent;
    color: #fff;
}

.dark-mode .main-menu .section-footer a {
    color: #fff;
    border-color: #464646;
}

.dark-mode .main-menu .section-footer a:Hover {
    background-color: #464646;
}

.main-header .reservation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.main-header .reservation .marketplaces:Before {
    content: '|';
    margin: 0 20px;
}

.main-header .reservation .marketplaces {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-header .reservation .marketplaces img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.main-header .reservation p {
    margin: 0;
}

.main-header .menu .marketplaces a {
    margin-left: 10px;
}

.main-header .menu .marketplaces a:After {
    content: none;
}

.main-header .menu .marketplaces a:Hover {
    transform: scale(1.1);
}

.fixed-mobile-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    z-index: 999;
    width: 100%;
    background: #2f2f2f;
    transition: 300ms;
    height: 60px;
    display: none;
}

.fixed-mobile-bar > a {
    width: 33.5%;
    text-align: center;
}

.fixed-mobile-bar .menu-btn{
    color: #fff;
    font-size: 20px;
}



.fixed-mobile-bar .menu-btn{
    color: #fff;
    font-size: 20px;
}

.fixed-mobile-bar > a i {
    color: #fff;
    font-size: 25px;
    margin: auto;
}

.fixed-mobile-bar img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

#workshop-info {
    margin: 120px 0;
}

.main-events {
    margin: 120px 0;
}

.events-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.events-container .event {
    width: calc(50% - 30px);
    margin: 15px;
    border-radius: 15px;
    overflow: hidden;
    background: #e9e9e9;
    padding: 30px;
}

.events-container .event .image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.events-container .event .image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 300ms;
    border-radius: 15px;
}

.events-container .event .date {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
    background: rgb(255 255 255 / 25%);
    transition: 300ms;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 5px;
    backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0px 0px 20px rgb(255 255 255 / 35%);

}

.events-container .event .date p {
    margin: 0;
}

.events-container .event .date .day {
    font-size: 17px;
    letter-spacing: -1px;
    text-transform: uppercase;
}


.events-container .event .date .hours {
    font-size: 18px;
}

.events-container .event .date .hours:Before {
    content: '|';
    margin: 0 5px;
}

.events-container .event .content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.events-container .event .content .title {
    display: block;
    font-size: 25px;
    margin-bottom: 10px;
}

.events-container .event .content p {
    font-size: 14px;
    color: #8b8b8b;
}

.events-container .event .content a {
    display: inline-block;
    background: #000;
    color: #fff;
    transition: 300ms;
    padding: 10px 20px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
}

.events-container .event .content a i {
    margin-left: 15px;
    transition: 300ms;
    font-size: 12px;
}

.events-container .event .content a:Hover i {
    margin-left: 20px;
}

.events-container .event .content a:Hover {
    background: #767676;
}

.events-container .event:Hover .image img {
    filter: brightness(50%);
    transform: scale(1.1);
}

.events-container .event .image .title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 30%, transparent);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 20px;
    color: #fff;
    z-index: 2;
    text-align: center;
}

.events-container .event .content {
    margin-top: -20px;
    padding-top: 50px;
}

.events-container .event .image {
    box-shadow: 0 10px 12px rgba(0, 0, 0, .4);
}

.main-events h2 {
    font-weight: 700;
    margin-bottom: 30px;
}

.survey-form {
    max-height: 70vh;
    overflow-y: scroll;
}

.main-banner .owl-nav {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}

.main-banner .owl-nav i {
    display: flex;
    width: 50px;
    height: 50px;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: 300ms;
}

.main-banner .owl-nav i:Hover {
    background-color: #000;
    color: #fff;
}

.main-banner .owl-item:Before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 9;
    background: linear-gradient(-180deg, rgba(0, 0, 0, 0.5) 30%, transparent);
    top: 0;
    left: 0;
}

.main-banner {
    position: relative;
    overflow: hidden;
}

.main-branches .branch img:hover {
    transform: scale(1.1);
}

.main-branches .branch img {
    transition: 300ms;
}

#workshop-info .owl-carousel {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

#workshop-info .owl-carousel .image {
    overflow: hidden;
}

#workshop-info .owl-carousel .image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 300ms;
}

#workshop-info .owl-carousel .image:Hover img {
    transform: scale(1.1);
    filter: brightness(50%);
}

#workshop-info .slider {
    position: relative;
}

#workshop-info .owl-nav {
    position: absolute;
    left: -40px;
    top: 0;
    width: calc(100% + 80px);
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.events-container .event.limited .content {
    transition: 300ms;
    max-height: 200px;
    overflow: hidden;
}

.events-container .event.limited .content a {
    opacity: 0;
}

.events-container .event.limited .read-more {
    display: block;
    margin-top: -20px;
    transition: 300ms;
    width: 100%;
    font-size: 14px;
    border: 0;
    background: transparent;
    color: #fff;
    background: #161616;
    position: relative;
    z-index: 1;
    padding: 10px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.events-container .event.limited .read-more:Hover {
    background: #565656;
    box-shadow: 0 0 10px #565656;
}

.events-container .event.limited .read-more:after {
    content: '\f107';
    margin-left: 10px;
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    display: inline-block;
    transition: 300ms;
}

.events-container .event.limited.expanded .content {
    max-height: 100%;
}

.events-container .event.limited.expanded .content a {
    opacity: 1;
}

.events-container .event.limited.expanded .read-more:after {
    transform: rotate(180deg);
}

.main-branches .branch > a {
    display: inline-block;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 30px;
    border-radius: 30px;
    transition: 300ms;
    font-weight: 600;
    margin-top: 50px;
}

.main-branches .branch > a:Hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

@media (max-width: 992px) {
    .main-about {
        margin: 30px 0;
    }

    .main-about .about-container {
        flex-direction: column;
    }

    .main-about .about-container .image {
        width: 100%;
    }

    .main-about .about-container .text {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }

    .main-menu .section-header {
        margin-bottom: 30px;
    }

    .main-menu .categories-container .category {
        width: 100%;
    }

    .main-menu .categories-container .category header .title {
        white-space: unset;
    }

    .main-menu .categories-container .category .products {
        left: 0;
        top: 0;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .main-map .section-header h2 {
        font-size: 30px;
    }

    .main-menu .section-header h2 {
        font-size: 30px;
    }

    .footer-boxes {
        flex-direction: column;
    }

    .footer-boxes aside {
        width: 100%;
        margin-bottom: 20px;
    }

    .main-footer .footer-bar {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footer-bar .socials a:first-child {
        margin-left: 0;
    }

    .footer-bar .socials {
        margin-bottom: 30px;
    }

    .main-header .reservation {
        display: none;
    }

    .main-header .menu nav {
        position: fixed;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #000;
        height: 300px;
        top: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: 300ms;
    }

    .main-header .logo img {
        height: 60px;
    }

    .menu-toggle {
        display: flex;
        background: transparent;
        color: #fff;
        border: 0;
    }

    .main-header .full-container {
        padding: 0 10px;
    }

    .main-header.fixed-bar .logo img {
        height: 30px;
    }

    .open-menu .main-header .menu nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .open-menu .menu-toggle {
        transform: translateY(200px);
        background: #000;
    }

    .fixed-phone {
        position: fixed;
        left: 30px;
        bottom: 30px;
        z-index: 99;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
        border-radius: 100%;
        color: #fff;
    }

    .close-products {
        margin-bottom: 70px;
    }

    .main-menu .categories-container .category .products ul li .details .title strong {
        padding-right: 0;
    }

    .fixed-mobile-bar {
        display: flex;
    }

    .main-branches {
        flex-direction: column;
        height: calc(100vh - 60px);
        padding-bottom: 50px;
    }

    .main-branches .branch {
        margin: 15px 0;
        border-right: 0 !important;
        padding: 0 !important;
    }

    .main-branches .branch img {
        max-width: 50%;
        max-height: calc(33vh - 20px);
    }

    .events-container .event {
        width: 100%;
        margin: 15px 0;
    }

    .main-banner .owl-nav {
        padding: 0 15px 15px 0;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .main-banner .owl-nav i {
        width: 30px;
        height: 30px;
        margin-left: 10px;
    }

    #workshop-info .owl-carousel .image img {
        height: 130px;
    }

    .main-menu .categories-container .category.active .products {
        z-index: 99999;
    }

    .dark-mode .main-menu .categories-container .category.active:not(.product-active) header .icon {
        z-index: 999999;
    }

    .main-branches .branch > a {
        margin-top: 15px;
        font-size: 13px;
    }

    .main-branches .branch img {
        height: 78px;
    }
}
