@charset "UTF-8";
:root {
    --color-red: #ec2d3f;
    --clr-text-white: #ffffff;
    --clr-text-primary: #1a1a1a;
    --clr-text-secondary: #333333;
    --clr-text-hvr: var(--clr-brand-sushi);
    --clr-web-btn: var(--clr-brand-sushi);
    --clr-brand-sushi: #8FBC4A;
    --font-special-m: '';
    --font-special-s: '';
}


/* General */

.home__btn {
    display: table;
    width: 100%;
    max-width: 210px;
    color: #ffffff;
    text-align: center;
    border: solid 1px var(--clr-brand-sushi);
    background: var(--clr-brand-sushi);
    padding: 15px 10px;
}

.home__btn:hover {
    color: var(--clr-brand-sushi);
    background: #fff;
}

.main__title {
    font-weight: 700;
    font-size: clamp(24px, 3.5vw, 30px);
    color: var(--clr-brand-sushi);
    text-transform: capitalize;
    margin-bottom: 0;
}

.main__time {
    text-align: left;
    color: var(--clr-text-secondary);
    margin-top: 1rem;
}

.main__time span:nth-child(1) {
    margin-right: 0.25rem;
}

.main__time span:nth-child(2) {
    display: inline-block;
}

.share {
    line-height: normal;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    background: #80808026;
    padding: 1rem;
    margin-top: 1rem;
}

.share b {
    display: block;
    margin-bottom: 0.375rem;
}


/* Owl arrows */

.control-owl {
    --w: 45px;
    --h: 45px;
    --pos: 20px;
    position: absolute;
    left: 0px;
    top: -webkit-calc(50% - var(--h)/2);
    top: -moz-calc(50% - var(--h)/2);
    top: calc(50% - var(--h)/2);
    z-index: 2;
    width: 100%;
}

.control-owl button {
    opacity: 0.5;
    position: absolute;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    width: var(--w);
    height: var(--h);
    font-size: 25px;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #000000;
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.control-owl button:hover {
    opacity: 1;
}

.control-owl button.owl-prev {
    left: var(--pos);
}

.control-owl button.owl-next {
    right: var(--pos);
}


/* Slick arrows */

.slick-custom {
    --offset-x: 10px;
    position: absolute;
    top: 50%;
    z-index: 10;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 35px;
    height: 35px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

.slick-custom>span {
    font-size: 28px;
    color: var(--clr-text-primary);
}

.slick-custom:hover {
    color: var(--clr-brand-sushi);
}

.slick-custom--prev {
    left: var(--offset-x);
}

.slick-custom--next {
    right: var(--offset-x);
}


/* Lazyload */

img.lazy {
    opacity: 0;
}

img.lazy:not(.initial) {
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    -moz-transition: opacity 1s;
    transition: opacity 1s;
}

img.lazy.initial,
img.lazy.loaded,
img.lazy.error {
    opacity: 1;
}

img.lazy:not([src]) {
    visibility: hidden;
}


/* Meta Toc */

.meta-toc {
    border: 1px solid #dedede;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    background: #eeeeee;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.meta-toc ul {
    list-style-type: none;
    counter-reset: item;
    padding: 0;
    margin: 0;
}

.meta-toc ul ul {
    margin-top: 0.25rem;
}

.meta-toc ul li {
    display: table;
    counter-increment: item;
}

.meta-toc ul li:not(:last-child) {
    margin-bottom: 0.25rem
}

.meta-toc ul li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    font-weight: 700;
    padding-right: 0.25rem
}

.meta-toc ul li a {
    font-weight: 700;
    color: var(--clr-text-primary) !important;
    cursor: pointer;
}

.meta-toc ul li a:hover {
    text-decoration: underline !important;
}


/* Social */

.social .social__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.25rem 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social .social__item-inner.hvr-spin-icon img {
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.social .social__item-inner.hvr-spin-icon:hover img {
    -webkit-transform: rotateZ(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
}


/* Header */

.header {
    padding: 0.375rem 0;
}

.header>.header__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/* Navigation */

.navigation {
    --nav-f-sz: 16px;
    --nav-clr: var(--clr-text-primary);
    --nav-clr-hvr: var(--clr-brand-sushi);
    --nav-bg: #fff;
    position: relative;
    z-index: 200;
    background: transparent;
    padding: 3rem 2rem;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation.is-index.icon-white {
    --nav-clr: var(--clr-text-white);
}

.navigation>.navigation__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 4rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
}

.navigation .navigation__logo {
    max-width: 180px;
    pointer-events: auto;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation.open-nav .navigation__logo,
.navigation.open-nav .navigation__search,
.navigation.open-nav .navigation__link,
.navigation.open-nav .navigation__social {
    opacity: 0;
    visibility: hidden;
}

.navigation .navigation__right {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.5rem;
}

.navigation .navigation__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    pointer-events: auto;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation .navigation__link>span {
    font-size: 22px;
    color: var(--nav-clr);
}
.navigation .navigation__social {
    position: absolute;
    top: 110%;
    right: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    pointer-events: auto;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation .navigation__social .social__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigation .navigation__social .social__item:not(:last-child) {
    margin-bottom: 1rem;
}

.navigation .navigation__social .social__item-inner {
    display: block;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation .navigation__social .social__item-inner:hover {
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    -o-transform: translateX(-5px);
    transform: translateX(-5px);
}

.navigation .navigation__social .social__photo-inner img {
    display: block;
}

.navigation .navigation__open-nav {
    pointer-events: auto;
}

.navigation .navigation__open-nav--sidebar {
    position: relative;
    z-index: 15;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: auto;
}

.navigation .hamburger {
    position: relative;
    width: 28px;
    height: 20px;
    background: none;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation .hamburger.open-click {
    --nav-clr: #fff;
    z-index: 100;
}

.navigation .hamburger:before,
.navigation .hamburger:after,
.navigation .hamburger>span {
    position: absolute;
    display: block;
    height: 3px;
    -webkit-border-radius: 100rem;
    -moz-border-radius: 100rem;
    border-radius: 100rem;
    background: var(--nav-clr);
}

.navigation .hamburger:before,
.navigation .hamburger:after {
    content: '';
    left: 0;
    width: 100%;
    -webkit-transition: left 0.3s ease-in 0.3s, width 0.3s ease-in 0.3s, top 0.3s ease-in 0.3s, bottom 0.3s ease-in 0.3s, -webkit-transform 0.3s ease-in;
    transition: left 0.3s ease-in 0.3s, width 0.3s ease-in 0.3s, top 0.3s ease-in 0.3s, bottom 0.3s ease-in 0.3s, -webkit-transform 0.3s ease-in;
    -o-transition: left 0.3s ease-in 0.3s, width 0.3s ease-in 0.3s, top 0.3s ease-in 0.3s, bottom 0.3s ease-in 0.3s, -o-transform 0.3s ease-in;
    -moz-transition: transform 0.3s ease-in, left 0.3s ease-in 0.3s, width 0.3s ease-in 0.3s, top 0.3s ease-in 0.3s, bottom 0.3s ease-in 0.3s, -moz-transform 0.3s ease-in;
    transition: transform 0.3s ease-in, left 0.3s ease-in 0.3s, width 0.3s ease-in 0.3s, top 0.3s ease-in 0.3s, bottom 0.3s ease-in 0.3s;
    transition: transform 0.3s ease-in, left 0.3s ease-in 0.3s, width 0.3s ease-in 0.3s, top 0.3s ease-in 0.3s, bottom 0.3s ease-in 0.3s, -webkit-transform 0.3s ease-in, -moz-transform 0.3s ease-in, -o-transform 0.3s ease-in;
}

.navigation .hamburger.open-click:before,
.navigation .hamburger.open-click:after {
    left: 0;
    width: 100%;
    -webkit-transition: top 0.3s ease-in, bottom 0.3s ease-in, left 0.3s ease-in, width 0.3s ease-in, -webkit-transform 0.3s ease-in 0.3s;
    transition: top 0.3s ease-in, bottom 0.3s ease-in, left 0.3s ease-in, width 0.3s ease-in, -webkit-transform 0.3s ease-in 0.3s;
    -o-transition: top 0.3s ease-in, bottom 0.3s ease-in, left 0.3s ease-in, width 0.3s ease-in, -o-transform 0.3s ease-in 0.3s;
    -moz-transition: top 0.3s ease-in, bottom 0.3s ease-in, left 0.3s ease-in, width 0.3s ease-in, transform 0.3s ease-in 0.3s, -moz-transform 0.3s ease-in 0.3s;
    transition: top 0.3s ease-in, bottom 0.3s ease-in, left 0.3s ease-in, width 0.3s ease-in, transform 0.3s ease-in 0.3s;
    transition: top 0.3s ease-in, bottom 0.3s ease-in, left 0.3s ease-in, width 0.3s ease-in, transform 0.3s ease-in 0.3s, -webkit-transform 0.3s ease-in 0.3s, -moz-transform 0.3s ease-in 0.3s, -o-transform 0.3s ease-in 0.3s;
}

.navigation .hamburger:before {
    top: 0;
}

.navigation .hamburger.open-click:before {
    top: -webkit-calc(50% - 3px/2);
    top: -moz-calc(50% - 3px/2);
    top: calc(50% - 3px/2);
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.navigation .hamburger:after {
    bottom: 0;
}

.navigation .hamburger.open-click:after {
    bottom: -webkit-calc(50% - 3px/2);
    bottom: -moz-calc(50% - 3px/2);
    bottom: calc(50% - 3px/2);
    -webkit-transform: rotateZ(135deg);
    -moz-transform: rotateZ(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotateZ(135deg);
    transform: rotateZ(135deg);
}

.navigation .hamburger>span {
    top: -webkit-calc(50% - 3px/2);
    top: -moz-calc(50% - 3px/2);
    top: calc(50% - 3px/2);
    width: 100%;
    -webkit-transition: opacity 0.3s ease-in 0.2s;
    -o-transition: opacity 0.3s ease-in 0.2s;
    -moz-transition: opacity 0.3s ease-in 0.2s;
    transition: opacity 0.3s ease-in 0.2s;
}

.navigation .hamburger.open-click>span {
    opacity: 0;
}


/* Search Block */

.search--block {
    border: solid 1px #ccc;
}

.search--block .search__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    width: 340px;
    height: 36px;
}

.search--block .search__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    width: 40px;
    font-size: 16px;
    color: var(--clr-text-primary);
    background: none;
}

.search--block .search__input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    font-size: 12px;
    color: var(--clr-text-primary);
    text-indent: 10px;
    background: none;
}

.search--block .search__input::-webkit-input-placeholder {
    color: #ccc;
}

.search--block .search__input:-moz-placeholder {
    color: #ccc;
}

.search--block .search__input::-moz-placeholder {
    color: #ccc;
}

.search--block .search__input:-ms-input-placeholder {
    color: #ccc;
}

.search--block .search__input::-ms-input-placeholder {
    color: #ccc;
}

.search--block .search__input::placeholder {
    color: #ccc;
}


/* Search Toggle */

.search--toggle {
    --search-clr: var(--clr-brand-sushi);
    position: relative;
    pointer-events: auto;
}

.search--toggle .search__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    aspect-ratio: 1;
    width: 40px;
    font-size: 22px;
    color: var(--nav-clr);
    border: 1px solid transparent;
    cursor: pointer;
}

.search--toggle .search__icon.active {
    color: var(--search-clr);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
}

.search--toggle .search__grid {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    top: 50px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    width: 0;
    height: 40px;
    border: 1px solid var(--search-clr);
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    background: #fff;
    padding: 0rem 0.25rem;
}

.search--toggle .search__icon.active+.search__grid {
    visibility: visible;
}

.search--toggle .search__grid .search__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    width: 35px;
    font-size: 17px;
    color: var(--search-clr);
    background: none;
}

.search--toggle .search__grid .search__input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    color: var(--clr-text-primary);
    text-indent: 10px;
}

.search--toggle .search__grid input::-webkit-input-placeholder {
    color: #ccc;
}

.search--toggle .search__grid input:-moz-placeholder {
    color: #ccc;
}

.search--toggle .search__grid input::-moz-placeholder {
    color: #ccc;
}

.search--toggle .search__grid input:-ms-input-placeholder {
    color: #ccc;
}

.search--toggle .search__grid input::-ms-input-placeholder {
    color: #ccc;
}

.search--toggle .search__grid input::placeholder {
    color: #ccc;
}


/* Mmenu */

.menu-res {
    position: relative;
    z-index: 199;
    height: 50px;
    background: var(--clr-brand-sushi);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#hamburger {
    position: relative;
    display: block;
    width: 40px;
    height: 23px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
    content: '';
    position: absolute;
    left: 0px;
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
}

#hamburger:before {
    top: 0px;
}

#hamburger span {
    top: 10px;
}

#hamburger:after {
    top: 20px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
    -webkit-transition: none 0.5s ease 0.5s;
    -o-transition: none 0.5s ease 0.5s;
    -moz-transition: none 0.5s ease 0.5s;
    transition: none 0.5s ease 0.5s;
    -webkit-transition-property: transform, top, bottom, left, opacity;
    -webkit-transition-property: top, bottom, left, opacity, -webkit-transform;
    transition-property: top, bottom, left, opacity, -webkit-transform;
    -o-transition-property: transform, top, bottom, left, opacity;
    -o-transition-property: top, bottom, left, opacity, -o-transform;
    -moz-transition-property: transform, top, bottom, left, opacity, -moz-transform;
    transition-property: transform, top, bottom, left, opacity;
    transition-property: transform, top, bottom, left, opacity, -webkit-transform, -moz-transform, -o-transform;
    transition-property: transform, top, bottom, left, opacity, -webkit-transform;
}

.menu-res #menu {
    display: none;
}

.mm-wrapper_opening #hamburger:before,
.mm-wrapper_opening #hamburger:after {
    top: 10px;
}

.mm-wrapper_opening #hamburger span {
    left: -50px;
    opacity: 0;
}

.mm-wrapper_opening #hamburger:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mm-wrapper_opening #hamburger:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mm-menu_opened {
    display: block !important;
}


/* Slideshow */

.slideshow .slideshow__list {
    position: relative;
}

.slideshow .slideshow__item-inner {
    display: block;
    -webkit-transition: all 10s ease-out;
    -o-transition: all 10s ease-out;
    -moz-transition: all 10s ease-out;
    transition: all 10s ease-out;
}

.slideshow .slideshow__item.slick-current .slideshow__item-inner {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25);
}

.slideshow .slideshow__item-inner img {
    height: 100dvh;
    height: 100svh;
    height: 100vh;
}

.slideshow .control-slideshow {
    opacity: 0;
}

.slideshow:hover .control-slideshow {
    opacity: 1;
}


/* Breadcrumb */

.breadCrumbs {
    position: relative;
    background: #eee;
}

.breadCrumbs .wrap-content {
    padding: 0.75rem 1rem;
}

.breadCrumbs .breadcrumb {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadCrumbs .breadcrumb-item {
    display: inline;
}

.breadCrumbs .breadcrumb-item a {
    color: #212529;
}

.breadCrumbs .breadcrumb-item.active a {
    color: #6c757d;
}


/* Video */

.video .video__list.flex-container {
    --columns: 4;
    --space-x: 0.625rem;
    --space-y: -webkit-calc(var(--space-x, 0.625rem) * 2);
    --space-y: -moz-calc(var(--space-x, 0.625rem) * 2);
    --space-y: calc(var(--space-x, 0.625rem) * 2);
}

.video .video__photo {
    display: block;
}

.video .video__photo.play-icon {
    position: relative;
}

.video .video__photo.play-icon:before {
    --w: 50px;
    --h: 35px;
    content: '';
    position: absolute;
    top: -webkit-calc(50% - var(--h)/2);
    top: -moz-calc(50% - var(--h)/2);
    top: calc(50% - var(--h)/2);
    left: -webkit-calc(50% - var(--w)/2);
    left: -moz-calc(50% - var(--w)/2);
    left: calc(50% - var(--w)/2);
    z-index: 1;
    width: var(--w);
    height: var(--h);
    background: url(../images/play.png) no-repeat;
    pointer-events: none;
}

.video .video__info {
    margin-top: 0.5rem;
}

.video .video__info-inner {
    text-align: center;
}

.video .video__name {
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-text-primary);
    text-transform: capitalize;
    margin-bottom: 0;
}

.video .video__item-inner:hover .video__name {
    color: var(--clr-text-hvr);
}


/* Album */

.album .album__list.flex-container {
    --columns: 4;
    --space-x: 0.625rem;
    --space-y: -webkit-calc(var(--space-x, 0.625rem) * 2);
    --space-y: -moz-calc(var(--space-x, 0.625rem) * 2);
    --space-y: calc(var(--space-x, 0.625rem) * 2);
}

.album .album__photo {
    display: block;
}

.album .album__info {
    margin-top: 0.5rem;
}

.album .album__info-inner {
    text-align: center;
}

.album .album__name {
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-text-primary);
    text-transform: capitalize;
    margin-bottom: 0;
}

.album .album__item-inner:hover .album__name {
    color: var(--clr-text-hvr);
}


/* Product */

.product .product__list.flex-container {
    --columns: 4;
    --space-x: 0.625rem;
    --space-y: -webkit-calc(var(--space-x) * 2);
    --space-y: -moz-calc(var(--space-x) * 2);
    --space-y: calc(var(--space-x) * 2);
}

.product .product__item-inner {
    position: relative;
}

.product .product__photo {
    display: block;
}

.product .product__info {
    text-align: center;
    margin-top: 1rem;
}

.product .product__name {
    margin-bottom: 0.5rem;
}

.product .product__name a {
    --line-clamp: 1;
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-text-primary);
    text-transform: uppercase;
}

.product .product__item-inner:hover .product__name a {
    color: var(--clr-text-hvr);
}

.product .product__price--text {
    font-size: 14px;
    color: var(--clr-text-secondary);
}

.product .product__price--new {
    font-weight: 700;
    font-size: 15px;
    color: #b40800;
}

.product .product__price--old {
    font-size: 14px;
    color: #858585;
    text-decoration: line-through;
}

.product .product__price--per {
    position: absolute;
    top: 15px;
    right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    width: 45px;
    height: 25px;
    color: var(--clr-text-white);
    background: var(--color-red);
    padding-left: 5px;
    pointer-events: none;
}

.product .product__price--per:before,
.product .product__price--per:after {
    content: '';
    position: absolute;
}

.product .product__price--per:before {
    --triangle-h: 12.5px;
    --triangle-w: 9px;
    top: 0;
    left: -webkit-calc(-1 * var(--triangle-w));
    left: -moz-calc(-1 * var(--triangle-w));
    left: calc(-1 * var(--triangle-w));
    border-top: var(--triangle-h) solid transparent;
    border-right: var(--triangle-w) solid var(--color-red);
    border-bottom: var(--triangle-h) solid transparent;
}

.product .product__price--per:after {
    --circle-size: 6px;
    top: -webkit-calc(50% - var(--circle-size)/2);
    top: -moz-calc(50% - var(--circle-size)/2);
    top: calc(50% - var(--circle-size)/2);
    left: 0px;
    width: var(--circle-size);
    height: var(--circle-size);
    aspect-ratio: 1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
}


/* Product Detail */

.grid-pro-detail {
    margin-bottom: 3rem;
}

.left-pro-detail {
    position: relative;
    text-align: center;
}

.left-pro-detail .MagicZoom {
    border: 1px solid #eee;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    padding: 7px;
}

.gallery-thumb-pro {
    position: relative;
    margin-top: 10px;
}

.owl-pro-detail {
    padding: 0px 30px;
}

.control-pro-detail button {
    opacity: 1;
    width: 25px;
    font-size: 23px;
    color: #222;
    background-color: transparent;
}

.control-pro-detail button:hover {
    opacity: 0.7;
}

.control-pro-detail button.owl-prev {
    left: 0px;
}

.control-pro-detail button.owl-next {
    right: 0px;
}

.thumb-pro-detail {
    display: block !important;
    border: 1px solid #eee;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #fff;
    padding: 5px;
    cursor: pointer;
}

.thumb-pro-detail.mz-thumb.mz-thumb-selected {
    border-color: #cecfd2;
}

.thumb-pro-detail img {
    -webkit-filter: brightness(100%) !important;
    filter: brightness(100%) !important;
    border-bottom: 0 !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    padding-bottom: 0 !important;
}

.title-pro-detail {
    font-weight: 700;
    font-size: 20px;
    text-transform: capitalize;
}

.comment-pro-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}

.social-plugin-pro-detail {
    margin-top: 0 !important;
    margin-bottom: 1rem;
}

.desc-pro-detail {
    margin-bottom: 1rem;
}

.attr-pro-detail {
    list-style: none;
    padding: 0;
}

.attr-pro-detail li {
    margin-bottom: 0.5rem;
}

.attr-label-pro-detail {
    font-weight: 700;
    color: var(--clr-text-primary);
    margin: 0px 5px 0px 0px;
}

.attr-label-pro-detail.d-block {
    display: block;
    margin: 0px 0px 5px 0px;
}

.attr-content-pro-detail {
    display: inline-block;
}

.price-new-pro-detail {
    font-weight: 700;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-red);
}

.price-old-pro-detail {
    color: #6c757d;
    text-decoration: line-through;
    padding-left: 10px;
}

.color-pro-detail:not(.--color-name) {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 30px;
    border: 1px solid transparent;
    vertical-align: top;
    margin: 0px 0px 3px 0px;
    cursor: pointer;
}

.color-pro-detail.--color-name,
.size-pro-detail {
    position: relative;
    display: inline-block;
    border: 1px solid #ccc;
    padding: 3px 10px 4px 10px;
    cursor: pointer;
}

.color-pro-detail.active,
.size-pro-detail.active {
    color: #e5101d;
    border-color: #e5101d;
}

.color-pro-detail.active:after,
.size-pro-detail.active:after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 13px;
    height: 13px;
    background: url(../images/check-cart.png) center center / contain no-repeat;
}

.color-pro-detail input[type=radio],
.size-pro-detail input[type=radio] {
    display: none;
}

.quantity-pro-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    max-width: 110px;
    width: 100%;
    line-height: normal;
    text-align: center;
}

.quantity-pro-detail span {
    width: 30px;
    height: 30px;
    color: #5f5f5f;
    font-size: 22px;
    line-height: 25px;
    border: 1px solid #ccc;
    padding: 0px;
    cursor: pointer;
}

.quantity-pro-detail span.quantity-plus-pro-detail {
    border-left: 0px;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
    border-right: 0px;
}

.quantity-pro-detail input {
    width: -webkit-calc(100% - 60px);
    width: -moz-calc(100% - 60px);
    width: calc(100% - 60px);
    height: 30px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 5px;
}

.cart-pro-detail {
    margin-bottom: 1rem;
}

.cart-pro-detail a {
    min-width: 8rem;
    font-weight: 700;
    font-size: 14px;
    color: #fff !important;
    text-transform: uppercase;
}

.tags__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    gap: 0.375rem 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags__item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    gap: 0.25rem;
    height: 32px;
    font-size: 13px;
    color: var(--clr-text-white) !important;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    background: var(--clr-brand-sushi);
    padding: 0rem 0.75rem;
}

.tabs-pro-detail .nav-tabs .nav-link {
    border-top-width: 3px;
    font-size: 13px;
}

.tabs-pro-detail .nav-tabs .nav-link.active,
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
    border-top-color: #555;
}


/* Product Related - Have Just Seen */

.product--related,
.product--just-seen {
    margin-top: 3rem;
}


/* Article */

.article .article__list.flex-container {
    --columns: 4;
    --space-x: 0.5rem;
    --space-y: -webkit-calc(var(--space-x, 0.625rem) * 2);
    --space-y: -moz-calc(var(--space-x, 0.625rem) * 2);
    --space-y: calc(var(--space-x, 0.625rem) * 2);
}

.article .article__photo {
    display: block;
}

.article .article__info {
    margin-top: 1rem;
}

.article .article__name {
    margin-bottom: 0.5rem;
}

.article .article__name a {
    --line-clamp: 2;
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-text-primary);
}

.article .article__desc {
    --line-clamp: 2;
    color: var(--clr-text-secondary);
}


/* News */

.news .news__list.flex-container {
    --columns: 1;
    --space-x: 0rem;
    --space-y: 1rem;
}

.news .news__item-inner {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news .news__list.flex-container .news__item:nth-child(2n) .news__item-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.news .news__photo {
    display: block;
}

.news .news__photo,
.news .news__info {
    width: 50%;
}

.news .news__info {
    padding: 2rem 3rem;
}

.news .news__list.flex-container .news__item:nth-child(2n) .news__info {
    text-align: right;
}

.news .news__name {
    margin-bottom: 0.5rem;
}

.news .news__name a {
    --line-clamp: 1;
    font-weight: 600;
    font-size: clamp(18px, 3vw, 25px);
    text-transform: uppercase;
}

.news .news__name a:hover {
    color: var(--clr-text-hvr);
}

.news .news__time {
    font-size: clamp(16px, 2.3vw, 18px);
    margin-bottom: 10px;
}

.news .news__desc {
    --line-clamp: 2;
    font-size: 14px;
    line-height: 1.8em;
    color: var(--clr-text-secondary);
}

.news .news__btn {
    position: relative;
    display: table;
    font-size: clamp(17px, 2.5vw, 20px);
    color: var(--clr-brand-sushi);
    padding: 0 15px;
}

.news .news__list.flex-container .news__item:nth-child(2n) .news__info .news__btn {
    margin-left: auto;
}

.news .news__btn:before,
.news .news__btn:after {
    position: absolute;
    top: 50%;
    color: var(--clr-text-primary);
    pointer-events: none;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.news .news__btn:hover:before,
.news .news__btn:hover:after {
    color: var(--clr-brand-sushi);
}

.news .news__btn:before {
    content: '[';
    left: 0;
}

.news .news__btn:hover:before {
    left: -0.25rem;
}

.news .news__btn:after {
    content: ']';
    right: 0;
}

.news .news__btn:hover:after {
    right: -0.25rem;
}


/* News Other */

.news--other .news__list {
    list-style: inside square;
    padding: 0;
    margin: 0;
}

.news--other .news__item:not(:last-child) {
    margin-bottom: 0.25rem;
}

.news--other .news__name {
    color: var(--clr-text-primary);
}


/* Contact */

.contact-article {
    margin-bottom: 3rem;
}

.contact-input {
    position: relative;
    margin-bottom: 1rem;
}

.contact-input textarea {
    resize: none;
    height: 150px;
}

.contact-input .custom-file-label::after {
    content: attr(title);
}

.contact-map {
    position: relative;
    height: 500px;
}

.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}


/* Intro */

.intro__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    /* flex-wrap: wrap; */
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.intro.section.fp-section .intro__left,
.intro.section.fp-section .intro__center,
.intro.section.fp-section .intro__right {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.intro.section.fp-section.active .intro__left,
.intro.section.fp-section.active .intro__center,
.intro.section.fp-section.active .intro__right {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s ease-out 0.5s;
    -o-transition: all 0.5s ease-out 0.5s;
    -moz-transition: all 0.5s ease-out 0.5s;
    transition: all 0.5s ease-out 0.5s;
}

.intro.section.fp-section.active .intro__left,
.intro.section.fp-section.active .intro__right {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.intro__left,
.intro__right {
    width: 28%;
}

.intro.section.fp-section .intro__left,
.intro.section.fp-section .intro__right {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}

.intro__center {
    width: 33.333333%;
    /* 400/1200 */
}

.intro__logo {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    aspect-ratio: 1;
    width: 100%;
}

.intro__logo:before,
.intro__logo:after {
    content: '';
    position: absolute;
    background: #fff;
    z-index: -1;
    pointer-events: none;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.intro__logo:before {
    top: -50px;
    left: -webkit-calc(50% - 0.5px);
    left: -moz-calc(50% - 0.5px);
    left: calc(50% - 0.5px);
    width: 1px;
    height: 100px;
}

.intro.section.fp-section .intro__logo:before {
    height: 0px;
}

.intro.section.fp-section.active .intro__logo:before {
    height: 100px;
    -webkit-transition: all 0.5s ease-out 0.6s;
    -o-transition: all 0.5s ease-out 0.6s;
    -moz-transition: all 0.5s ease-out 0.6s;
    transition: all 0.5s ease-out 0.6s;
}

.intro__logo:after {
    /* autoprefixer: off */
    --n: 160;
    --d: 1deg;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    padding: 4px;
    mask: linear-gradient(#0000 0 0) content-box intersect, repeating-conic-gradient(from calc(var(--d) / 2), #000 0 calc(360deg / var(--n) - var(--d)), #0000 0 calc(360deg / var(--n)));
    animation: spinCircle 20s linear infinite alternate;
}

.intro__desc {
    --line-clamp: 5;
    max-width: 500px;
    line-height: 1.8em;
    color: var(--clr-text-white);
    text-align: center;
    margin: 1rem auto 0;
}

.intro.section.fp-section .intro__desc {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.intro.section.fp-section.active .intro__desc {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.5s ease-out 0.6s;
    -o-transition: all 0.5s ease-out 0.6s;
    -moz-transition: all 0.5s ease-out 0.6s;
    transition: all 0.5s ease-out 0.6s;
}

.intro__statistic {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 0.5rem;
}

.intro__statistic-numb {
    position: relative;
    font-size: clamp(40px, 7vw, 90px);
    color: var(--clr-text-white);
    margin-right: 2rem;
}

.intro__statistic-numb:after {
    content: '';
    position: absolute;
    left: 100%;
    bottom: -20px;
    width: 1px;
    height: 90px;
    background: #ffffff;
    margin-left: 14px;
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
    transform: rotate(15deg);
}

.intro__statistic-name {
    color: var(--clr-text-white);
}


/* Product New */

.product--new .product__inner {
    text-align: right;
}

.product--new .product__top {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
}

.product--new .product__top-right {
    overflow: hidden;
    isolation: isolate;
    position: relative;
}

.product--new .product__top-right:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: var(--clr-brand-sushi);
    pointer-events: none;
}

.product--new.section.fp-section .product__top-right:before {
    overflow: hidden;
    right: 100%;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.product--new.section.fp-section.active .product__top-right:before {
    right: 0;
    left: 110%;
    -webkit-transition: right 0.4s ease-out 0.6s, left 0.4s ease-out 1s;
    -o-transition: right 0.4s ease-out 0.6s, left 0.4s ease-out 1s;
    -moz-transition: right 0.4s ease-out 0.6s, left 0.4s ease-out 1s;
    transition: right 0.4s ease-out 0.6s, left 0.4s ease-out 1s;
}

.product--new .product__title {
    position: absolute;
    top: 0;
    left: -290px;
    width: 290px;
    height: 290px;
    margin-bottom: 0;
}

.product--new .product__title:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../images/menu-pattern.png) var(--clr-brand-sushi);
    pointer-events: none;
}

.product--new.section.fp-section .product__title:before {
    right: 110%;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.product--new.section.fp-section.active .product__title:before {
    right: 0;
    -webkit-transition: all 0.4s ease-out 0.6s;
    -o-transition: all 0.4s ease-out 0.6s;
    -moz-transition: all 0.4s ease-out 0.6s;
    transition: all 0.4s ease-out 0.6s;
}

.product--new .product__title span {
    position: absolute;
    right: 25px;
    display: block;
    font-weight: 700;
    font-size: clamp(36px, 5.5vw, 60px);
    color: var(--clr-text-white);
    text-transform: uppercase;
    white-space: nowrap;
}

.product--new.section.fp-section .product__title span {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0) translateY(-100px);
    -moz-transform: scale(0) translateY(-100px);
    -ms-transform: scale(0) translateY(-100px);
    -o-transform: scale(0) translateY(-100px);
    transform: scale(0) translateY(-100px);
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.product--new.section.fp-section.active .product__title span {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1) translateY(0);
    -moz-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    -o-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transition: all 0.4s ease-out 1.4s;
    -o-transition: all 0.4s ease-out 1.4s;
    -moz-transition: all 0.4s ease-out 1.4s;
    transition: all 0.4s ease-out 1.4s;
}

.product--new .product__title span:nth-child(1) {
    top: 50px;
}

.product--new .product__title span:nth-child(2) {
    top: 140px;
}

.product--new .product__banner-photo {
    overflow: hidden;
    display: block;
}

.product--new.section.fp-section .product__banner-photo {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.product--new.section.fp-section.active .product__banner-photo {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease-out 1s;
    -o-transition: all 0.4s ease-out 1s;
    -moz-transition: all 0.4s ease-out 1s;
    transition: all 0.4s ease-out 1s;
}

.product--new .product__bottom {
    position: relative;
    max-width: 450px;
    background: #ffffff;
    padding: 25px;
    margin-top: -115px;
    margin-right: 305px;
    margin-left: auto;
}

.product--new.section.fp-section .product__bottom {
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.product--new.section.fp-section.active .product__bottom {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.4s ease-out 1.4s;
    -o-transition: all 0.4s ease-out 1.4s;
    -moz-transition: all 0.4s ease-out 1.4s;
    transition: all 0.4s ease-out 1.4s;
}

.product--new .prodcut__info {
    background: var(--clr-brand-sushi);
    padding: 13px 10px;
}

.product--new .prodcut__info-inner {
    text-align: center;
}

.product--new .prodcut__name {
    margin-bottom: 0;
}

.product--new .prodcut__name a {
    --line-clamp: 2;
    font-size: 13px;
    color: var(--clr-text-white);
}


/* Product List Featured */

.product-list--featured .product-list__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 1.5rem;
}

.product-list--featured .product-list__left {
    overflow: hidden;
    width: 39.166667%;
    /* 470/1200 */
}

.product-list--featured .product-list__right {
    width: 55.833333%;
    /* 670/1200 */
}

.product-list--featured.section.fp-section .product-list__title,
.product-list--featured.section.fp-section .product-list__desc,
.product-list--featured.section.fp-section .product-list__left>.product-list__btn {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

.product-list--featured.section.fp-section.active .product-list__title,
.product-list--featured.section.fp-section.active .product-list__desc,
.product-list--featured.section.fp-section.active .product-list__left>.product-list__btn {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.product-list--featured .product-list__title {
    font-weight: 600;
    font-size: clamp(30px, 4.45vw, 47px);
    color: var(--clr-text-white);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.product-list--featured.section.fp-section .product-list__title {
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.product-list--featured.section.fp-section.active .product-list__title {
    -webkit-transition: all 0.5s ease-out 0.6s;
    -o-transition: all 0.5s ease-out 0.6s;
    -moz-transition: all 0.5s ease-out 0.6s;
    transition: all 0.5s ease-out 0.6s;
}

.product-list--featured .product-list__desc {
    font-size: 16px;
    color: var(--clr-text-white);
    line-height: 24px;
    margin-bottom: 35px;
}

.product-list--featured.section.fp-section .product-list__desc {
    -webkit-transition: all 0.5s ease-out 0.15s;
    -o-transition: all 0.5s ease-out 0.15s;
    -moz-transition: all 0.5s ease-out 0.15s;
    transition: all 0.5s ease-out 0.15s;
}

.product-list--featured.section.fp-section.active .product-list__desc {
    -webkit-transition: all 0.5s ease-out 0.8s;
    -o-transition: all 0.5s ease-out 0.8s;
    -moz-transition: all 0.5s ease-out 0.8s;
    transition: all 0.5s ease-out 0.8s;
}

.product-list--featured .product-list__left>.product-list__btn {
    overflow: hidden;
}

.product-list--featured.section.fp-section .product-list__left>.product-list__btn {
    -webkit-transition: all 0.5s ease-out 0.3s;
    -o-transition: all 0.5s ease-out 0.3s;
    -moz-transition: all 0.5s ease-out 0.3s;
    transition: all 0.5s ease-out 0.3s;
}

.product-list--featured.section.fp-section.active .product-list__left>.product-list__btn {
    -webkit-transition: all 0.5s ease-out 1s;
    -o-transition: all 0.5s ease-out 1s;
    -moz-transition: all 0.5s ease-out 1s;
    transition: all 0.5s ease-out 1s;
}

.product-list--featured .product-list__list {
    position: relative;
}

.product-list--featured .control-product-list.control-owl {
    --w: 40px;
    --h: 40px;
    top: unset;
    right: 0;
    bottom: 0;
    left: unset;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.product-list--featured .control-product-list.control-owl button {
    position: unset;
    opacity: 1;
    font-size: 20px;
    color: var(--clr-text-white);
    border: 1px solid var(--clr-brand-sushi);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: var(--clr-brand-sushi);
}

.product-list--featured .control-product-list.control-owl button:hover {
    color: var(--clr-brand-sushi);
    background: #fff;
}

.product-list--featured .product-list__col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
}

.product-list--featured .product-list__item {
    position: relative;
}

.product-list--featured .product-list__item:nth-child(1) {
    width: 44.444444%;
}

.product-list--featured .product-list__item:nth-child(2) {
    width: 55.555556%;
    margin-bottom: 80px;
}

.product-list--featured .product-list__photo-inner img {
    -webkit-filter: brightness(0.75);
    filter: brightness(0.75);
    -webkit-transition: all 0.3s ease-out !important;
    -o-transition: all 0.3s ease-out !important;
    -moz-transition: all 0.3s ease-out !important;
    transition: all 0.3s ease-out !important;
}

.product-list--featured .product-list__item-inner:hover .product-list__photo-inner img {
    -webkit-filter: brightness(1);
    filter: brightness(1);
}

.product-list--featured .product-list__name {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    font-weight: 600;
    font-size: clamp(18px, 2.9vw, 24px);
    color: #ffffff;
    text-transform: uppercase;
    text-align: right;
    padding: 1.5rem 1rem;
    pointer-events: none;
}

.product-list--featured .product-list__right .product-list__btn {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    max-width: 170px;
    padding: 11px 10px;
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.product-list--featured .product-list__item-inner:hover .product-list__btn {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* Branch Featured */

.branch--featured .branch__inner {
    --w: 680px;
}

.branch--featured .branch__title,
.branch--featured .branch__desc {
    overflow: hidden;
    text-align: center;
}

.branch--featured .branch__title span {
    font-weight: bold;
    font-size: clamp(32px, 5vw, 50px);
    line-height: 60px;
    color: #ffffff;
    text-transform: uppercase;
}

.branch--featured.section.fp-section .branch__title span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.branch--featured .branch__desc {
    margin-bottom: 30px;
}

.branch--featured .branch__desc span {
    color: #ffffff;
}

.branch--featured.section.fp-section .branch__desc span {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}

.branch--featured .branch__title span,
.branch--featured .branch__desc span {
    display: block;
}

.branch--featured.section.fp-section .branch__title span,
.branch--featured.section.fp-section .branch__desc span {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.branch--featured.section.fp-section.active .branch__title span,
.branch--featured.section.fp-section.active .branch__desc span {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.5s ease-out 0.6s;
    -o-transition: all 0.5s ease-out 0.6s;
    -moz-transition: all 0.5s ease-out 0.6s;
    transition: all 0.5s ease-out 0.6s;
}

.branch--featured .branch__select {
    --h: 54px;
}

.branch--featured.section.fp-section .branch__select {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.branch--featured.section.fp-section.active .branch__select {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.5s ease-out 0.8s;
    -o-transition: all 0.5s ease-out 0.8s;
    -moz-transition: all 0.5s ease-out 0.8s;
    transition: all 0.5s ease-out 0.8s;
}

.branch--featured .branch__select .select2 {
    display: block;
    max-width: 400px;
    width: 100% !important;
    margin: 0 auto;
}

.branch--featured .branch__select .select2-container--default .select2-selection--single {
    height: var(--h);
    border: 3px solid var(--clr-text-white);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: transparent;
}

.branch--featured .branch__select .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 18px;
    color: var(--clr-text-white);
    line-height: var(--h);
    padding-left: 1.5rem;
    padding-right: 2rem;
}

.branch--featured .branch__select .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 12px;
    height: -webkit-calc(var(--h) - 2px);
    height: -moz-calc(var(--h) - 2px);
    height: calc(var(--h) - 2px);
}

.branch--featured .branch__select .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 7px 6px 0;
    border-top-color: var(--clr-text-white);
}

.branch--featured .branch__select .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 7px 6px;
    border-bottom-color: var(--clr-text-white);
}

.branch--featured .branch__btn {
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    text-align: center;
    margin: 1.5rem 0;
}

.branch--featured.section.fp-section .branch__btn {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.branch--featured.section.fp-section.active .branch__btn {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease 0.8s;
    -o-transition: all 0.3s ease 0.8s;
    -moz-transition: all 0.3s ease 0.8s;
    transition: all 0.3s ease 0.8s;
}

.branch--featured .branch__advise {
    max-width: 720px;
    width: 100%;
    color: var(--clr-text-white);
    text-transform: uppercase;
    background: var(--clr-brand-sushi);
    padding: 15px 35px;
    text-align: center;
    margin-top: 30px;
    pointer-events: auto;
}

.branch--featured.section.fp-section .branch__advise {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.branch--featured.section.fp-section.active .branch__advise {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.5s ease-out 1s;
    -o-transition: all 0.5s ease-out 1s;
    -moz-transition: all 0.5s ease-out 1s;
    transition: all 0.5s ease-out 1s;
}


/* News Featured */

.news--featured .news__title {
    overflow: hidden;
    text-align: center;
    margin-bottom: 1rem;
}

.news--featured .news__title span {
    display: block;
    font-weight: 600;
    font-size: clamp(28px, 4.75vw, 45px);
    color: var(--clr-text-white);
    text-transform: uppercase;
}

.news--featured.section.fp-section .news__title span {
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.news--featured.section.fp-section.active .news__title span {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-out 0.6s;
    -o-transition: all 0.3s ease-out 0.6s;
    -moz-transition: all 0.3s ease-out 0.6s;
    transition: all 0.3s ease-out 0.6s;
}

.news--featured .news__item {
    isolation: isolate;
}

.news--featured .news__item:not(:nth-child(2n)) .news__item-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.news--featured .news__photo {
    overflow: hidden;
    position: relative;
}

.news--featured .news__photo:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: var(--clr-brand-sushi);
    pointer-events: none;
}

.news--featured.section.fp-section .news__photo:before {
    right: 110%;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.news--featured.section.fp-section.active .news__photo:before {
    right: 0;
    left: 110%;
    -webkit-transition: right 0.3s ease-out 0.6s, left 0.3s ease-out 1s;
    -o-transition: right 0.3s ease-out 0.6s, left 0.3s ease-out 1s;
    -moz-transition: right 0.3s ease-out 0.6s, left 0.3s ease-out 1s;
    transition: right 0.3s ease-out 0.6s, left 0.3s ease-out 1s;
}

.news--featured.section.fp-section .news__photo-inner {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.news--featured.section.fp-section.active .news__photo-inner {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s ease-out 0.9s;
    -o-transition: all 0.5s ease-out 0.9s;
    -moz-transition: all 0.5s ease-out 0.9s;
    transition: all 0.5s ease-out 0.9s;
}

.news--featured .news__item:not(:nth-child(2n)) .news__info {
    text-align: right;
}

.news--featured .news__item:not(:nth-child(2n)) .news__info .news__btn {
    margin-left: auto;
}
.news--featured .news__time,
.news--featured .news__name,
.news--featured .news__desc,
.news--featured .news__info .news__btn{
    color: var(--clr-text-white);
}
.news--featured.section.fp-section .news__time,
.news--featured.section.fp-section .news__name,
.news--featured.section.fp-section .news__desc,
.news--featured.section.fp-section .news__info .news__btn {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.news--featured.section.fp-section.active .news__time,
.news--featured.section.fp-section.active .news__name,
.news--featured.section.fp-section.active .news__desc,
.news--featured.section.fp-section.active .news__info .news__btn {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.news--featured.section.fp-section.active .news__time {
    -webkit-transition: all 0.3s ease-out 0.9s;
    -o-transition: all 0.3s ease-out 0.9s;
    -moz-transition: all 0.3s ease-out 0.9s;
    transition: all 0.3s ease-out 0.9s;
}

.news--featured.section.fp-section.active .news__name {
    -webkit-transition: all 0.3s ease-out 1s;
    -o-transition: all 0.3s ease-out 1s;
    -moz-transition: all 0.3s ease-out 1s;
    transition: all 0.3s ease-out 1s;
}

.news--featured.section.fp-section.active .news__desc {
    -webkit-transition: all 0.3s ease-out 1.1s;
    -o-transition: all 0.3s ease-out 1.1s;
    -moz-transition: all 0.3s ease-out 1.1s;
    transition: all 0.3s ease-out 1.1s;
}

.news--featured.section.fp-section.active .news__info .news__btn {
    -webkit-transition: all 0.3s ease-out 1.2s;
    -o-transition: all 0.3s ease-out 1.2s;
    -moz-transition: all 0.3s ease-out 1.2s;
    transition: all 0.3s ease-out 1.2s;
}

.news--featured .news__btn:before,
.news--featured .news__btn:after {
    color: var(--clr-text-white);
}

.news--featured .news__inner>.news__btn {
    margin: 1rem auto 0;
}

.news--featured.section.fp-section .news__inner>.news__btn {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.news--featured .news__inner>.news__btn .home__btn {
    margin: 0 auto;
}

.news--featured.section.fp-section.active .news__inner>.news__btn {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.5s ease-out 1s;
    -o-transition: all 0.5s ease-out 1s;
    -moz-transition: all 0.5s ease-out 1s;
    transition: all 0.5s ease-out 1s;
}


/* Media */

.media__inner {
    --w: 1000px;
}

.media__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 1.75rem;
}

.media.section.fp-section .media__item {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.media__item:nth-child(1),
.media__item:nth-child(2),
.media__item:nth-child(3) {
    width: 45%;
}

.media.section.fp-section.active .media__item {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.media.section.fp-section.active .media__item:nth-child(1) {
    -webkit-transition: all 0.5s ease-out 0.6s;
    -o-transition: all 0.5s ease-out 0.6s;
    -moz-transition: all 0.5s ease-out 0.6s;
    transition: all 0.5s ease-out 0.6s;
}

.media.section.fp-section.active .media__item:nth-child(2) {
    -webkit-transition: all 0.5s ease-out 0.8s;
    -o-transition: all 0.5s ease-out 0.8s;
    -moz-transition: all 0.5s ease-out 0.8s;
    transition: all 0.5s ease-out 0.8s;
}

.media.section.fp-section.active .media__item:nth-child(3) {
    -webkit-transition: all 0.5s ease-out 1s;
    -o-transition: all 0.5s ease-out 1s;
    -moz-transition: all 0.5s ease-out 1s;
    transition: all 0.5s ease-out 1s;
}

.media__item-inner {
    overflow: hidden;
    position: relative;
}

.media__photo {
    display: block;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: solid 10px #ffffff59;
}

.media__info {
    position: absolute;
    top: 50%;
    left: 10px;
    pointer-events: none;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.media__name {
    position: relative;
    font-weight: 700;
    font-size: clamp(20px, 2.9vw, 24px);
    color: var(--clr-text-white);
    background: var(--clr-brand-sushi);
    text-transform: uppercase;
    padding: 6px 10px;
    padding-left: 20px;
}

.media__name:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 70px;
    background: -webkit-gradient(linear, left top, right top, from(var(--clr-brand-sushi)), to(#00000000));
    background: -webkit-linear-gradient(left, var(--clr-brand-sushi) 0%, #00000000 100%);
    background: -moz-linear-gradient(left, var(--clr-brand-sushi) 0%, #00000000 100%);
    background: -o-linear-gradient(left, var(--clr-brand-sushi) 0%, #00000000 100%);
    background: linear-gradient(to right, var(--clr-brand-sushi) 0%, #00000000 100%);
    pointer-events: none;
}


/* Newsletter */

.newsletter__item:not(:last-child) {
    margin-bottom: 0.625rem;
}

.newsletter__item input {
    height: 50px;
}

.newsletter__item input,
.newsletter__item textarea {
    font-size: 14px;
    color: var(--clr-text-primary);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #fff;
}

.newsletter__item input::placeholder,
.newsletter__item input:focus,
.newsletter__item textarea::placeholder,
.newsletter__item textarea:focus {
    /* autoprefixer: off */
    font-size: 14px;
    color: var(--clr-text-primary);
    background: #fff;
    box-shadow: none !important;
}

.newsletter__item button {
    height: 50px;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid var(--clr-brand-sushi);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: var(--clr-brand-sushi);
    padding: 0 30px;
}

.newsletter__item button::placeholder,
.newsletter__item button:focus {
    /* autoprefixer: off */
    box-shadow: none !important;
}

.newsletter__item button:hover {
    color: var(--clr-brand-sushi);
    background: transparent;
}


/* Footer */

.footer__article {
    position: relative;
}

.footer__article .footer__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__decor {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    left: 0;
    opacity: 0.3;
    pointer-events: none;
}

.footer__decor img {
    position: absolute;
    z-index: 1;
}

.footer__decor img:nth-child(1) {
    top: 320px;
    right: 15px;
    width: 75px;
}

.footer__decor img:nth-child(2) {
    top: 65px;
    right: 30px;
    width: 125px;
}

.footer__decor img:nth-child(3) {
    top: 185px;
    right: 45px;
    width: 175px;
}

.footer__decor img:nth-child(4) {
    top: 230px;
    left: -20px;
    width: 95px;
}

.footer__decor img:nth-child(5) {
    width: 70px;
    position: absolute;
    top: 130px;
    left: 5px;
    z-index: 1;
}

.footer__left {
    width: 58.333333%;
    /* 700/1200 */
}

.footer__right {
    overflow: hidden;
    width: 20%;
    /* 200/1200 */
    padding: 1rem 0;
}

.footer__name {
    overflow: hidden;
    margin-bottom: 1rem;
}

.footer__name span {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: var(--clr-text-white);
    text-transform: uppercase;
}

.footer__article.section.fp-section .footer__name span {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.footer__article.section.fp-section.active .footer__name span {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-out 0.6s;
    -o-transition: all 0.3s ease-out 0.6s;
    -moz-transition: all 0.3s ease-out 0.6s;
    transition: all 0.3s ease-out 0.6s;
}

.footer__title {
    font-weight: 700;
    font-size: 18px;
    color: var(--clr-text-white);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer__detail {
    overflow: hidden;
    color: var(--clr-text-white);
}

.footer__article.section.fp-section .footer__detail>.ckeditor {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.footer__article.section.fp-section.active .footer__detail>.ckeditor {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-out 0.8s;
    -o-transition: all 0.3s ease-out 0.8s;
    -moz-transition: all 0.3s ease-out 0.8s;
    transition: all 0.3s ease-out 0.8s;
}

.footer__social {
    margin-bottom: 1rem;
}

.footer__article.section.fp-section .footer__social {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.footer__article.section.fp-section.active .footer__social {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.3s ease-out 0.8s;
    -o-transition: all 0.3s ease-out 0.8s;
    -moz-transition: all 0.3s ease-out 0.8s;
    transition: all 0.3s ease-out 0.8s;
}

.footer__social .social__list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer__policy {
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer__article.section.fp-section .footer__btn-map {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.footer__article.section.fp-section.active .footer__btn-map {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.5s ease-out 1s;
    -o-transition: all 0.5s ease-out 1s;
    -moz-transition: all 0.5s ease-out 1s;
    transition: all 0.5s ease-out 1s;
}

.footer__btn-map a {
    display: inline-block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: var(--clr-text-white);
    border: 3px solid #fff;
    text-transform: uppercase;
    padding: 8px 24px;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.footer__btn-map a:hover {
    color: var(--clr-text-primary);
    background: #fff;
}

.footer__ul-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: inside;
    padding: 0;
    margin: 0;
    gap: 0.5rem 1rem;
}

.footer__article.section.fp-section .footer__ul-list {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.footer__article.section.fp-section.active .footer__ul-list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.6s ease-out 1s;
    -o-transition: all 0.6s ease-out 1s;
    -moz-transition: all 0.6s ease-out 1s;
    transition: all 0.6s ease-out 1s;
}

.footer__ul-item::marker {
    color: var(--clr-text-white);
}

.footer__ul-name {
    font-size: 14px;
    color: var(--clr-text-white);
}

.footer__ul-name:hover {
    color: var(--clr-text-white);
}

.footer__ul-name.hvr-underline {
    --line-clr: var(--clr-text-white);
}

.footer__powered {
    padding: 1rem 0;
}

.footer__copyright {
    font-size: 12px;
    color: var(--clr-text-white);
}

.footer__article.section.fp-section .footer__copyright {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.footer__article.section.fp-section.active .footer__copyright {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.6s ease-out 1s;
    -o-transition: all 0.6s ease-out 1s;
    -moz-transition: all 0.6s ease-out 1s;
    transition: all 0.6s ease-out 1s;
}

.footer__copyright span:nth-child(1) {
    font-weight: 600;
    text-transform: uppercase;
}

.footer__copyright span:nth-child(2) {
    display: inline-block;
}

.footer__copyright a:hover {
    color: #ec2d3f;
    text-decoration: underline;
}

.footer__statistic {
    font-size: 12px;
    color: var(--clr-text-white);
    text-align: right;
}

.footer__statistic span:not(:last-child) {
    padding-right: 10px;
}

#footer-map {
    position: relative;
    height: 500px;
}

#footer-map iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}


/* Like Share */

.social-plugin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    gap: 0.125rem;
}


/* Paging */

.pagination-home .pagination .page-item .page-link {
    font-size: .875rem;
    color: #555;
}

.pagination-home .pagination .page-item.active .page-link {
    color: #fff;
    border-color: #555;
    background-color: #555;
}


/* Paging Ajax */

.pagination-ajax {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    gap: 0.25rem;
    margin-top: 2rem;
}

.pagination-ajax a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    width: 35px;
    height: 35px;
    font-size: 15px;
    color: var(--clr-text-primary);
    border: 1px solid var(--clr-brand-sushi);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pagination-ajax a.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.pagination-ajax a.current,
.pagination-ajax a:not(.disabled):hover {
    color: var(--clr-text-white);
    background: var(--clr-brand-sushi);
}

.pagination-ajax a:is(.first, .prev, .next, .last) {
    position: relative;
    text-indent: -9999px;
}

.pagination-ajax a:is(.first, .prev, .next, .last):before {
    position: absolute;
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    font-size: 16px;
    text-indent: 0;
}

.pagination-ajax a.first:before {
    content: '\f100';
}

.pagination-ajax a.prev:before {
    content: '\f104';
}

.pagination-ajax a.next:before {
    content: '\f105';
}

.pagination-ajax a.last:before {
    content: '\f101';
}


/* Popup */

#popup .modal-body {
    position: relative;
    padding: 0;
}

#popup .modal-body button {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}


/* Hidden Google Captcha */

.grecaptcha-badge {
    visibility: hidden !important;
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    overflow: hidden;
}


/* Hidden Check Grammar Coccoc */

coccocgrammar {
    display: none;
}


/* Scroll to top */

.scroll-to-top {
    --size: 50px;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 20px;
    bottom: -100px;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    width: var(--size);
    height: var(--size);
    border: 2px solid var(--clr-web-btn);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 5rem;
}

.scroll-to-top.is-bottom,
.scroll-to-top:hover {
    background: var(--clr-web-btn);
}

.scroll-to-top span {
    position: absolute;
    left: 32%;
    width: 36%;
    height: 2px;
}

.scroll-to-top span:nth-child(1) {
    top: 42%;
}

.scroll-to-top span:nth-child(2) {
    -webkit-transform: scale(.6);
    -ms-transform: scale(.6);
    -moz-transform: scale(.6);
    -o-transform: scale(.6);
    transform: scale(.6);
    top: 55%;
}

.scroll-to-top span:after,
.scroll-to-top span:before {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--clr-web-btn);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.scroll-to-top span:before {
    left: 0;
    -webkit-transform: skewY(-35deg);
    -ms-transform: skewY(-35deg);
    -moz-transform: skewY(-35deg);
    -o-transform: skewY(-35deg);
    transform: skewY(-35deg);
}

.scroll-to-top span:after {
    right: 0;
    -webkit-transform: skewY(35deg);
    -ms-transform: skewY(35deg);
    -moz-transform: skewY(35deg);
    -o-transform: skewY(35deg);
    transform: skewY(35deg);
}

.scroll-to-top.is-bottom span:before,
.scroll-to-top.is-bottom span:after,
.scroll-to-top:hover span:before,
.scroll-to-top:hover span:after {
    background-color: #fff;
}

.scroll-to-top:hover span:nth-child(1) {
    -webkit-animation: floatingArrow .7s ease-out 0s infinite forwards;
    -moz-animation: floatingArrow .7s ease-out 0s infinite forwards;
    -o-animation: floatingArrow .7s ease-out 0s infinite forwards;
    animation: floatingArrow .7s ease-out 0s infinite forwards;
}

.scroll-to-top:hover span:nth-child(2) {
    -webkit-animation: floatingArrow .7s ease-out .3s infinite forwards;
    -moz-animation: floatingArrow .7s ease-out .3s infinite forwards;
    -o-animation: floatingArrow .7s ease-out .3s infinite forwards;
    animation: floatingArrow .7s ease-out .3s infinite forwards;
}


/* Button Frame */

.btn-frame {
    --size: 50px;
    --kenit-circle: 10px;
    --kenit-circle-fill: 20px;
    position: fixed;
    right: 20px;
    z-index: 999;
    display: block;
    aspect-ratio: 1;
    width: var(--size);
    height: var(--size);
}

.btn-frame .btn-frame__icon {
    position: relative;
    z-index: 1;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    aspect-ratio: 1;
    width: var(--size);
    height: var(--size);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--clr-web-btn);
}

.btn-frame .kenit-alo-circle {
    opacity: .5;
    position: absolute;
    top: -webkit-calc(50% - -webkit-calc(var(--size) + var(--kenit-circle))/2);
    top: -moz-calc(50% - -moz-calc(var(--size) + var(--kenit-circle))/2);
    top: calc(50% - calc(var(--size) + var(--kenit-circle))/2);
    right: -webkit-calc(50% - -webkit-calc(var(--size) + var(--kenit-circle))/2);
    right: -moz-calc(50% - -moz-calc(var(--size) + var(--kenit-circle))/2);
    right: calc(50% - calc(var(--size) + var(--kenit-circle))/2);
    aspect-ratio: 1;
    width: -webkit-calc(var(--size) + var(--kenit-circle));
    width: -moz-calc(var(--size) + var(--kenit-circle));
    width: calc(var(--size) + var(--kenit-circle));
    height: -webkit-calc(var(--size) + var(--kenit-circle));
    height: -moz-calc(var(--size) + var(--kenit-circle));
    height: calc(var(--size) + var(--kenit-circle));
    border: 2px solid var(--clr-web-btn);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: transparent;
}

.btn-frame .kenit-alo-circle-fill {
    opacity: .4;
    position: absolute;
    top: -webkit-calc(50% - -webkit-calc(var(--size) + var(--kenit-circle-fill))/2);
    top: -moz-calc(50% - -moz-calc(var(--size) + var(--kenit-circle-fill))/2);
    top: calc(50% - calc(var(--size) + var(--kenit-circle-fill))/2);
    right: -webkit-calc(50% - -webkit-calc(var(--size) + var(--kenit-circle-fill))/2);
    right: -moz-calc(50% - -moz-calc(var(--size) + var(--kenit-circle-fill))/2);
    right: calc(50% - calc(var(--size) + var(--kenit-circle-fill))/2);
    aspect-ratio: 1;
    width: -webkit-calc(var(--size) + var(--kenit-circle-fill));
    width: -moz-calc(var(--size) + var(--kenit-circle-fill));
    width: calc(var(--size) + var(--kenit-circle-fill));
    height: -webkit-calc(var(--size) + var(--kenit-circle-fill));
    height: -moz-calc(var(--size) + var(--kenit-circle-fill));
    height: calc(var(--size) + var(--kenit-circle-fill));
    border: 2px solid transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #00000059;
}


/* Zalo */

.btn-zalo {
    bottom: 310px;
}


/* Phone */

.btn-phone {
    bottom: 230px;
}


/* Messenger */

.js-facebook-messenger-container.closed,
.js-facebook-messenger-tooltip.closed {
    display: none !important
}

.js-facebook-messenger-tooltip {
    right: 97px;
    bottom: 97px;
}

.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
    z-index: 999;
}

.js-facebook-messenger-tooltip {
    overflow: hidden;
    position: fixed;
    z-index: 1.0E+30;
    display: none;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
    -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
    box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
    padding: 10px;
}

.js-facebook-messenger-close-tooltip {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    cursor: pointer;
}

.js-facebook-messenger-box.rubberBand {
    -webkit-animation-name: rubberBand;
    -moz-animation-name: rubberBand;
    -o-animation-name: rubberBand;
    animation-name: rubberBand;
}

.js-facebook-messenger-box.animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
    z-index: 999;
}

.js-facebook-messenger-box {
    overflow: hidden;
    position: fixed;
    right: 17px;
    bottom: 150px;
    z-index: 99;
    display: block;
    width: 56px;
    height: 56px;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background: var(--clr-web-btn);
    -webkit-box-shadow: 1px 1px 4px 0 #0000004d;
    -moz-box-shadow: 1px 1px 4px 0 #0000004d;
    box-shadow: 1px 1px 4px 0 #0000004d;
    cursor: pointer;
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.js-facebook-messenger-box svg#fb-msng-icon {
    opacity: 1;
    overflow: hidden;
    position: absolute;
    top: 13px;
    left: 12px;
    width: 32px;
    height: 33px;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -webkit-transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, -o-transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -moz-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -webkit-transform 160ms ease-in-out, -moz-transform 160ms ease-in-out, -o-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.js-facebook-messenger-box svg#close-icon {
    opacity: 0;
    position: absolute;
    top: 19px;
    left: 19px;
    width: 19px;
    height: 20px;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -webkit-transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, -o-transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -moz-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -webkit-transform 160ms ease-in-out, -moz-transform 160ms ease-in-out, -o-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
    z-index: 1000;
}

.js-facebook-messenger-container {
    opacity: 0;
    position: fixed;
    right: 90px;
    bottom: 110px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -o-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -webkit-transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, -o-transform 160ms ease-in-out;
    -moz-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out, -moz-transform 160ms ease-in-out;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out, -moz-transform 160ms ease-in-out, -o-transform 160ms ease-in-out;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
    pointer-events: none;
}

.js-facebook-messenger-top-header {
    width: 220px;
}

.js-facebook-messenger-top-header {
    color: #fff;
    background: var(--clr-web-btn);
}

.js-facebook-messenger-top-header {
    position: relative;
    display: block;
    width: 220px;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    text-align: center;
    -webkit-border-top-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    border-top-right-radius: 10px;
    background: var(--clr-web-btn);
    padding: 10px;
}

.js-facebook-messenger-container iframe,
.js-facebook-messenger-container-button iframe {
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    border-bottom-right-radius: 10px;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
    z-index: 999;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
    z-index: 1000;
}

.js-facebook-messenger-top-header {
    color: #fff;
    background: var(--clr-web-btn);
}

.js-facebook-messenger-top-header {
    width: 220px;
}

.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff;
}

.js-facebook-messenger-container.open {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    pointer-events: all;
}

.js-facebook-messenger-tooltip {
    right: 97px;
    bottom: 97px;
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
    opacity: 0;
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.js-facebook-messenger-box.open svg#close-icon {
    opacity: 1;
}


/* Cart Fix */

.cart-fixed {
    position: fixed;
    right: 20px;
    bottom: 400px;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #fff !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--clr-web-btn);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.cart-fixed i {
    font-size: 20px;
}

.cart-fixed span {
    position: absolute;
    top: 0;
    right: -5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--color-red);
}


/* Toolbar */

.toolbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background: var(--clr-brand-sushi);
    -webkit-box-shadow: 0px -2px 4px 0px #00000080;
    -moz-box-shadow: 0px -2px 4px 0px #00000080;
    box-shadow: 0px -2px 4px 0px #00000080;
    padding: 0.5rem 0;
}

.toolbar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.toolbar ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    text-align: center;
}

.toolbar ul li a {
    display: block;
}

.toolbar ul li a img {
    height: 25px;
}

.toolbar ul li a figcaption {
    font-weight: 700;
    font-size: 14px;
    color: var(--clr-text-white);
    margin-top: 0.125rem;
}


/* Fullpage Tool */

#fullpage-tool {
    position: fixed;
    z-index: 20;
    left: 0;
    right: 0;
    bottom: 90px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    pointer-events: none;
}

#fullpage-tool .padgi {
    font-size: 18px;
    line-height: 26px;
    position: relative;
    margin-right: 20px;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

#fullpage-tool.icon-white .padgi {
    color: var(--clr-text-white);
}

#fullpage-tool .padgi .total:before {
    content: "/";
}

#fullpage-tool .padgi .num {
    font-size: 72px;
    line-height: 62px;
    font-weight: 300;
    position: absolute;
    right: 100%;
    bottom: 100%;
}

#fullpage-tool .nav {
    position: relative;
    margin-left: 30px;
    margin-bottom: 30px;
}

#fullpage-tool .nav svg {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 25px;
}

#fullpage-tool .nav svg path {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

#fullpage-tool .nav ul li {
    margin-bottom: 5px;
    position: relative;
}

#fullpage-tool .nav ul li:before {
    content: "";
    top: 5px;
    left: -30px;
    width: 0;
    border-bottom: solid 1px #333333;
    position: absolute;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.s linear;
    -webkit-transition: all 0.s linear;
    -moz-transition: all 0.s linear;
    transition: all 0.s linear;
}

#fullpage-tool .nav ul li.active:before {
    width: 25px;
}

#fullpage-tool .nav ul li button {
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    pointer-events: auto;
    padding: 0;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

#fullpage-tool.icon-white .nav ul li button {
    color: #ffffff;
}

#fullpage-tool.icon-white .nav svg path {
    stroke: #ffffff;
}

#fullpage-tool.icon-white .nav ul li:before {
    border-color: #ffffff;
}