:root {
    --primary-color: #cb132b;
    --secondary-color: hsl(358, 78%, 51%);
    --info-color: #4a300e;
    --light-color: #ffffff;
    --dark-color: #000000;
    --background-color: #ffffff;
    --font-family-base: 'Source Sans Pro', sans-serif;
    --secondary-font-family: 'Dosis', sans-serif;
    --perisan-font-family: 'Vazirmatn' !important;
    --color-green: rgba(78, 140, 65, 0.69);
    --color-dark-green: rgba(0, 92, 43, 0.61);
    --color-light-green: rgba(90, 125, 15, 0.7);
    --color-green-white: rgba(118, 176, 66, 0.7);
    --color-dark-purple: rgba(115, 20, 20, 0.47);
    --color-brown: rgba(60, 35, 22, 0.67);
    --color-lightbrown: rgba(185, 132, 59, 0.7);
    --color-orange: rgba(213, 135, 0, 0.7);
    --color-red: rgba(230, 46, 34, 0.67);
    --color-blue: rgba(0, 96, 112, 0.85);
    --color-lightblue: rgba(50, 139, 182, 0.7);
    --color-darkblue: rgba(27, 54, 104, 0.65);
    --color-pink: rgba(209, 40, 104, 0.7);
    --color-purple: rgba(118, 90, 128, 0.86);
    --color-yellow: rgba(162, 196, 21, 0.55);
    --color-et: rgba(99, 0, 40, 0.67);
    --color-dairy: rgba(0, 159, 235, 0.7);
    --color-biscuit: rgba(214, 142, 17, 0.7);
    --color-chocolate: rgba(111, 59, 29, 0.75);
    --color-traditional: rgba(156, 85, 44, 0.75);
    --color-candy: rgba(183, 30, 88, 0.7);
    --color-sugar: rgba(148, 171, 36, 0.7);
    --color-frozen: rgba(7, 62, 144, 0.7);
    --color-herbal: rgba(48, 99, 37, 0.69);
    --color-beverage: rgba(189, 0, 91, 0.62);
    --color-vinegar: rgba(0, 97, 46, 0.7);
    --color-modern: rgba(54, 134, 3, 0.74);
}

/* Base Styles */

body {
    font-family: var(--font-family-base);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul,
ol,
li {
    list-style-position: inside;
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

/*====================
  HEADER STYLE
====================*/

#header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
}

.mobile-header {
    font-family: var(--secondary-font-family);
}

.header-copyright {
    font-size: 12px;
    color: #c9c9c9;
    margin: 15px 0 0 20px;
    float: left;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.header-social {
    position: relative;
    margin: 15px 20px 0 0;
    float: right;
    list-style-type: none;
}

.header-social li {
    float: left;
}

.header-social li a {
    float: left;
    color: #c9c9c9;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-left: 20px;
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
}

.header-social li a i {
    font-size: 22px;
}

.custom-logo {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 177px;
    height: 91px;
}

/* Menu Styles */
.menu-toggle-wrapper {
    position: absolute;
    left: 20px;
    top: 75px;
}

#js-menu-toggle {
    z-index: 3;
}

.menu {
    overflow: hidden;
    perspective: 200px;
    transition: all 0.4s ease-out;
}

/* Toggle Button */
.menu-toggle {
    width: 150px;
    height: 45px;
    border-radius: 5px;
    display: block;
    line-height: 45px;
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 0 20px;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid #cdcbcc;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    transition-delay: 300ms;
    cursor: pointer;
}

.menu-toggle-wrapper .open {
    width: 300px;
}

.menu-toggle-wrapper .open .wave-effect-top:before,
.menu-toggle-wrapper .open .wave-effect-bottom:before {
    right: 100%;
}

.wave-effect-top,
.wave-effect-bottom {
    position: absolute;
    right: 0;
    left: 0;
    height: 10px;
    overflow: hidden;
}

.wave-effect-top {
    top: -5px;
}

.wave-effect-top:before {
    content: "";
    width: 200px;
    height: 15px;
    display: block;
    position: absolute;
    top: 0;
    right: -200px;
    border-top: 1px solid #cdcbcc;
    background: var(--secondary-color);
    border-radius: 50% 50% 0 0;
    transition: all 0.4s linear;
}

.wave-effect-bottom {
    bottom: -5px;
}

.wave-effect-bottom:before {
    content: "";
    width: 200px;
    height: 15px;
    display: block;
    position: absolute;
    bottom: 0;
    right: -200px;
    border-bottom: 1px solid #cdcbcc;
    background: var(--secondary-color);
    border-radius: 0 0 50% 50%;
    transition: all 0.4s linear;
}

.menu-toggle span {
    position: absolute;
    right: 20px;
    transition: all 0.4s linear;
}

.menu-toggle.open span {
    transform: rotate(180deg);
    transition: all 0.4s linear;
}

/* Menu Body */

#js-menu {
    position: relative;
    top: -6px;
    z-index: 2;
}

.menu.open {
    height: 100%;
    transition-delay: 300ms;
}

.menu-body {
    height: 0;
    background: rgba(235, 0, 10, 0.9);
    border: 1px solid #cdcbcc;
    border-top: 0;
    transition: all 0.4s ease-out;
    transform-origin: 40% 0%;
    visibility: hidden;
    opacity: 0;
    transform: rotateX(-80deg);
}

.menu.open .menu-body {
    height: 100%;
    visibility: visible;
    opacity: 1;
    transform: rotateX(0deg);
    transition-delay: 300ms;
}

.menu-list {
    list-style: none;
    padding-top: 25px;
    padding-bottom: 15px;
    max-width: 298px;
    margin: 0;
}

.menu-list .menu-list-title {
    margin: 0;
    position: relative;
    font-family: var(--secondary-font-family);
}

/* Menu Items */

.menu-list-link {
    position: relative;
    display: flex;
    padding: 10px 20px;
    color: var(--light-color);
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.menu-list-link:hover,
.menu-list-link:focus {
    background: #c21c246c;
    outline: none;
}

.menu-list-link .panels-list-plus {
    position: absolute;
    right: 20px;
    font-weight: 900;
    font-size: 25px;
    line-height: 18px;
}


.menu-list-item.active .menu-list-link {
    background: #d7191f00;
    color: var(--light-color);
}

/* Submenu */

.menu-sublist {
    list-style: none;
    background: rgba(0, 0, 0, 0.16);
    display: none;
    margin: 0;
    padding: 0;
}

.menu-sublist.opened {
    display: block;
    transition: all 4s;
    border-radius: 20px;
}

.menu-sublist-link:hover,
.menu-sublist-link:focus {
    background: rgba(255, 255, 255, 0.2);
    outline: none;
}

.menu-list .menu-sublist-title {
    margin: 0;
    font-family: var(--secondary-font-family);
}

.menu-list .menu-sublist-link {
    color: var(--light-color);
    font-weight: 600;
    font-size: 13px;
    padding: 6px 15px 6px 35px;
    display: block;
}

.menu-sublist.opened .menu-list-item {
    font-size: 13px;
    margin: -10px 10px;
}

/*=====================
  PAGE LANGUAGE STYLE
=====================*/

.page-language {
    position: absolute;
    right: 75px;
    min-width: 120px;
    top: 75px;
}

.language-toggle {
    height: 45px;
    display: block;
    line-height: 45px;
    border-radius: 5px;
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 0 15px;
    font-size: 14px;
    border: 1px solid #cdcbcc;
    position: relative;
    cursor: pointer;
}

.language-toggle a {
    font-size: 15px;
    font-weight: 600;
    color: var(--light-color);
    display: inline-block;
    padding: 5px;
    line-height: 10px;
}

.page-language a.active {
    border-bottom: 1px solid var(--light-color);
}

/*=====================
  SEARCH STYLE
=====================*/

.page-search {
    display: block;
    position: absolute;
    top: 75px;
    right: 20px;
    width: 50px;
    height: 45px;
    background-color: var(--secondary-color);
    border: 1px solid #cdcbcc;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.page-search-opened {
    width: 220px;
}

.page-search .search-text {
    position: absolute;
    right: 45px;
    border: none;
    height: 100%;
    width: 0;
    border-right: none;
    background: transparent;
    color: var(--light-color);
    font-size: 18px;
    font-family: var(--secondary-font-family);
    outline: none;
    padding-left: 0;
    opacity: 0;
    transition: width 0.4s ease, opacity 0.4s ease, padding-left 0.4s ease;
    display: block;
}

.page-search .search-text.visible {
    width: 170px;
    padding-left: 6px;
    opacity: 1;
}

.page-search .search-toggle {
    float: right;
    position: absolute;
    right: 12px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-search a i {
    font-size: 1.5rem;
    color: var(--light-color);
}

input.search-text::placeholder {
    color: var(--light-color);
}

/*SEARCH RESUCT PAGE STYLE*/
.page-search-result.opened {
    display: block;
    font-family: var(--secondary-font-family);
    z-index: 10000;
}

.page-search-result {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(203, 19, 43, .9);
    z-index: 888;
}

.result-close {
    background: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    display: block;
    color: rgba(203, 19, 43, .9);
    cursor: pointer;
    font-size: 40px;
    font-size: 4rem;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 38px;
    z-index: 900;
    border-radius: 50%;
}

.page-search-result-inner {
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -17px;
    margin-right: -17px;
    overflow: auto;
}

.page-search-result-heading {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
}

.result-heading a {
    color: var(--light-color);
}

.result-waiting {
    font-size: 22px;
    color: #fff;
    text-align: center;
    display: block;
}

.result-list li {
    list-style-type: none;
    color: var(--light-color);
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    margin-bottom: 15px;
    border-radius: 4px 4px 0 0;
    min-height: 61px
}

.result-list li:hover {
    background: rgba(0, 0, 0, .2)
}

.result-number {
    font-size: 33px;
    border-radius: 4px 4px 0 0;
    color: #fff;
    float: left;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: rgba(255, 255, 255, .2);
    margin-right: 15px
}

.result-content .result-image {
    float: left;
    margin-right: 15px;
    width: 50px;
    min-height: 60px;
    line-height: 60px;
    display: table
}

.result-content .result-image img {
    max-width: 100%;
    vertical-align: middle;
    max-height: 55px
}

.result-content .result-heading {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-top: 0;
    padding-top: 5px;
    margin-bottom: 5px
}

.result-content p {
    color: #fff;
    font-weight: 300;
    margin-bottom: 6px
}

.result-waiting {
    font-size: 22px;
    color: #fff;
    text-align: center;
    display: block
}

/*=====================
  MOBILE HEADER STYLE
=====================*/
.nav {
    position: relative;
    background-color: var(--primary-color);
    box-shadow: 0 2px 16px hsla(228, 95%, 4%, .1);
    padding: 1rem 1.75rem;
    z-index: 20000;
}

.nav__list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-custom-logo {
    float: left;
    height: 10vw;
    width: 20vw;
}

.nav__item.logo-default {
    flex-grow: 6;
}

.nav__link {
    color: var(--light-color);
    font-size: 1.5rem;
    transition: color .4s;
}

.nav__link img {
    width: 90px;
}

.nav__link:hover {
    color: var(--light-color);
}

.navbar-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 4;
}

/*=============== 
EXPAND BUTTONS 
===============*/
.nav__expand,
.nav__expand-lan,
.nav__expand-social {
    background: transparent;
    border: none;
    color: var(--light-color);
    font-size: 18px;
    cursor: pointer;
}

/*=============== 
SEARCH EXPAND LIST 
===============*/
.nav__expand-search {
    position: absolute;
    right: 2%;
    top: 105%;
    width: 96%;
    height: 45px;
    padding: 4px;
    background-color: var(--primary-color);
    border-radius: 23px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(-50px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav__expand-search.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav__expand-search input {
    width: 100%;
    height: 100%;
    background-color: var(--highlight-color);
    border: 1px solid var(--light-color);
    border-radius: 20px;
    padding: 0 10px;
    color: var(--light-color);
    outline: none;
}

.nav__expand-search input::placeholder {
    color: var(--light-color);
}

.nav__expand-search i {
    position: absolute;
    right: 10px;
    font-size: 22px;
    color: var(--light-color);
    cursor: pointer;
    line-height: 2;
    width: 30px;
}

/*=============== LANGUAGE MENU ===============*/
.expand-language-menu {
    position: absolute;
    right: 19%;
    top: 105%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-100px);
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: 25px;
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.expand-language-menu.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.expand-language-menu li {
    font-size: 15px;
    font-weight: 600;
    padding: 10px 50px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.expand-language-menu li a {
    color: var(--light-color);
}

.expand-language-menu li:hover {
    background-color: var(--highlight-color);
}

.expand-language-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.expand-language-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.expand-language-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.expand-language-menu a.active {
    border-bottom: 2px solid var(--light-color);
}

/*=============== SOCIAL MENU ===============*/

.expand-social-menu {
    position: absolute;
    top: 105%;
    right: 6%;
    display: flex;
    background-color: #cb132b;
    border-radius: 25px;
    padding-left: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(-500px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.expand-social-menu.active {
    opacity: 1;
    transform: translateY(0);
}

.expand-social-menu li {
    opacity: 0;
    transform: translateY(-10px);
    padding: 0 10px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.expand-social-menu li a {
    font-size: 1.5rem;
}

.expand-social-menu li a i {
    color: #ffffff;
}

.expand-social-menu li a i:hover {
    color: rgb(122, 7, 7);
}

.expand-social-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.expand-social-menu.active li:nth-child(2) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.expand-social-menu.active li:nth-child(3) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.expand-social-menu.active li:nth-child(4) {
    transition-delay: 0.7s;
    opacity: 1;
    transform: translateY(0);
}

/*=============== MAIN MENU ===============*/
.expand-main-menu {
    position: absolute;
    top: 105%;
    right: 1%;
    max-height: 400px;
    overflow-y: auto;
    background-color: var(--primary-color);
    padding: 15px 20px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(-500px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}


.main-menu-list-item {
    width: 100%;
    padding: 5px 15px;
    border-radius: 20px;
}

.main-menu-list-item.has-submenu.active,
.main-menu-list-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.main-menu-list-title a {
    color: var(--light-color);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
}

.main-menu-sublist {
    display: none;
    padding: 0;
    margin: 0;
}

.main-menu-sublist.opened {
    display: block;
    padding: 10px;
    font-size: 12px;
    line-height: 30px;
}

.main-menu-sublist.opened li div a {
    color: var(--light-color);
}

.main-menu-sublist.opened li div a:hover {
    color: var(--primary-color);
}

/*=============== HAMBURGER ===============*/
.mobile_hamburger {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger_line {
    position: relative;
    width: 100%;
    height: 2px;
    background: var(--light-color);
    border-radius: 1rem;
    transition: all 0.5s ease-in-out;
}

.hamburger_line::before,
.hamburger_line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background: var(--light-color);
    border-radius: inherit;
    transition: all 0.5s ease-in-out;
}

.hamburger_line::before {
    transform: translateY(-5px);
}

.hamburger_line::after {
    transform: translateY(5px);
}

.hamburger_line.active {
    background: transparent;
}

.hamburger_line.active::before {
    transform: rotate(-45deg);
}

.hamburger_line.active::after {
    transform: rotate(45deg);
}


/*=====================
  FOOTER STYLE
=====================*/

#footer {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    background-image: url(../media/img/bg-banner.jpg);
    background-repeat: repeat;
    background-position: top;
    background-size: 100%;
}

.footer-social-wrapper {
    padding: 15px 0;
    background: rgba(83, 51, 6, 0.2);
}

.contact-image {
    float: right;
    padding-top: 5px;
}

.footer-social {
    font-size: 16px;
    width: 280px;
    text-align: center;
    float: left;
    border-left: 1px solid #000;
}

.footer-social>h3 {
    color: #332c25;
    font-size: 1.425em;
    font-family: var(--secondary-font-family);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
}

.footer-social-list {
    margin-left: 10px;
    color: #fff;
    display: inline-block;
    list-style-type: none;
    padding: 0;
}

.footer-social-list li {
    float: left;
}

.footer-social-list li a {
    color: #332c25;
    width: 35px;
    height: 50px;
    line-height: 55px;
    margin-right: 15px;
    display: block;
    overflow: hidden;
    text-align: center;
}

.footer-social-list li a i {
    font-size: 30px;
}

.copyright {
    background: #f1ece4;
    position: relative;
    height: 60px;
    clear: both;
}

.copyright:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 8px;
    background: url(../media/img/footer-border.png);
    position: absolute;
    top: -8px;
    left: 0;
}

.copyright p {
    margin: 0;
    line-height: 60px;
    color: #868686;
    font-size: 15px;
    font-weight: 600;
    padding-left: 15px;
    text-align: center;
}

/*=============================
  BACK TO THE TOP BUTTON  STYLE
=============================== */
.back_to_top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--primary-color);
    border-radius: 0.4rem;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 0.5rem rgb(255, 58, 58);
    transition: all 0.4s ease-in-out;
    transform: translateY(-30rem);
    z-index: 1000;
}

.back_to_top.show {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
    transform: translateY(0rem);
}

ion-icon {
    color: var(--background-color);
    font-size: 30px;
    margin-top: 4px;
}



/*______________________
  FRONT _ PAGE _ STYLE _ START
*/

/* ===========================
   Hero Section Styles
   =========================== */
#hero-slider {
    margin-bottom: 0;
    position: relative;
}

#hero-slider:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.carousel-item img,
.carousel-item video {
    width: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 35%;
    padding: 1rem;
    visibility: visible;
    transform-origin: left top;
    transform: scale(1);
    opacity: 1;
    transition: opacity 0.4s;
}

.carousel-caption .text-top,
.carousel-caption .text-bottom {
    font-family: 'Lobster', sans-serif;
    color: #fff;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.75);
    position: relative !important;
}

.carousel-caption .text-top {
    font-size: 3vw;
}

.carousel-caption .text-bottom {
    font-size: 6vw;
}

.text-heart {
    visibility: visible;
    position: absolute;
    top: 0px;
    left: 34vw;
    width: 2.5vw;
    height: 2.5vw;
    background: url(../media/img/text-heart.png) no-repeat;
    background-size: contain;
    opacity: 1;
    display: block;
}

/* Carousel Controls */
span.carousel-control-prev-icon,
span.carousel-control-next-icon {
    background: unset;
    font-family: 'Font Awesome 6 Free';
}

span.carousel-control-prev-icon:before {
    content: "\f053";
    font-size: 40px;
    font-weight: 900;
}

span.carousel-control-next-icon:before {
    content: "\f054";
    font-size: 40px;
    font-weight: 900;
}

/* Slider Arrow */
.slider-arrow {
    width: 60px;
    height: 60px;
    line-height: 70px;
    border-radius: 50%;
    margin-left: -30px;
    border: 1px solid #e42129;
    background: rgba(228, 33, 41, 0.6);
    position: absolute !important;
    z-index: 99;
    bottom: 25px;
    left: 50%;
    color: #d09a9c;
    font-size: 38px;
    text-align: center;
    animation: arrow-effect-3 2s infinite;
    animation-delay: 3s;
}

.slider-arrow:after {
    content: "";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* Arrow Animation */
@keyframes arrow-effect-3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ===========================
   Product Section Styles
   =========================== */
.custom-container {
    max-width: 100%;
    width: 100%;
}

#products {
    height: 100%;
    background: url(../media/img/bg-banner.jpg) repeat top;
    background-size: 100%;
    position: relative;
    z-index: 600;
    overflow: hidden;
}

/* About Section */
.about-section {
    display: table;
    margin: auto;
}

.about-section-left {
    width: 75%;
    display: table-cell;
    vertical-align: top;
    text-align: center;
}

.about-section-right {
    width: 25%;
}

.about-section-right img {
    width: 100%;
    height: auto;
}

.about-section-left h1 {
    margin: 1vw 0;
    color: var(--info-color);
    font-weight: 600;
    font-size: 1.57vw;
    font-family: var(--secondary-font-family);
    line-height: normal;
    letter-spacing: -0.5px;
}

.about-section-left h2 {
    color: var(--info-color);
    font-weight: 300;
    font-size: 1.04vw;
    font-family: var(--secondary-font-family);
}

/* Flower Side Images */
.flower-image-left {
    position: absolute;
    width: 17.9%;
    top: 0;
    left: 0;
}

.flower-image-left img,
.flower-image-right img {
    width: 100%;
}

.flower-image-right {
    position: absolute;
    width: 10.7%;
    top: 0;
    right: 0;
}

/* SVG Container */
.svg-container {
    position: absolute;
    top: 30vw;
    left: 18%;
    width: 70%;
    height: 170.4vw;
}

/* Product Text Positions */
.product-section-1 {
    height: 50vw;
}

.product-section-2 {
    height: 25vw;
}

.product-section-3 {
    height: 36vw;
}

.product-section-4 {
    height: 39vw;
}

.product-section-5 {
    height: 28vw;
}

.product-section-6 {
    height: 21vw;
}

.product-text a {
    color: var(--info-color);
    font-family: sans-serif;
    font-size: 1.57vw;
    font-weight: 600;
    line-height: 2vw;
}

.lazy {
    position: absolute;
}

.product-wafer-wrapper {
    position: relative;
}

/* Wafers Text */
.product-text.wafer-text-1 {
    top: 15%;
    right: 20%;
}

.product-text.wafer-text-3 {
    top: 37%;
    right: 15%;
}

.product-text.wafer-text-2 {
    bottom: 5%;
    left: 12%;
}

.product-text.wafer-text-4 {
    bottom: -2%;
    right: 27%;
}

.product-text.splash span::before,
.product-text.splash span::after {
    content: "";
    background-position: 0 -25px;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    width: 9vw;
    height: 1.5vw;
    left: 50%;
    margin-left: -4.5vw;
    transition: all 0.4s ease-out;
}

.product-text.splash span::before {
    background-image: url(../media/img/effect-one-top.png);
    top: -1.3vw;
}

.product-text.splash span::after {
    background-image: url(../media/img/effect-one-bottom.png);
    bottom: -1.3vw;
    background-position: 0 25px;

}

.product-text.splash span.opened::before,
.product-text.splash span.opened::after {
    background-position: 0 0;
}

.product-text.wafer-text-4::before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: -25%;
    width: 0;
    height: 1.7vw;
    background: url(../media/img/effect-two.png) no-repeat;
    transition: all 0.3s ease-out;
    background-size: contain;
}

.product-text.wafer-text-4.opened::before {
    width: 150%;
}

/* Wafers */
.wafer-1 {
    width: 35%;
    top: 18%;
    left: 35%;
    z-index: 500;
}

.wafer-2 {
    width: 40%;
    bottom: 11%;
    left: 5%;
    z-index: 500;
}

.wafer-3 {
    width: 45%;
    top: 35%;
    left: 44%;
    z-index: 500;
}

.wafer-4 {
    width: 55%;
    bottom: -4%;
    left: 42%;
    z-index: 500;
}

/* General product new effect */
.product-new-wrapper {
    position: relative;
    right: 0;
}

.product-new {
    top: 14.2%;
    right: 21.5%;
    width: 41.9%;
    transform-origin: center;
    will-change: transform;
    transition: transform 0.4s ease-out;
    z-index: 1000;
}

/* New product text with effect */
.product-text.new {
    top: 49.45%;
    right: 59%;
}

.product-text.new::before {
    content: "";
    display: block;
    position: absolute;
    top: -4.24vw;
    right: -35.38%;
    width: 45.21%;
    height: 4.3vw;
    background: url(../media/img/effect-new.png) no-repeat;
    transition: all 0.4s ease-out;
    background-size: contain;
}

/* Chocolate product wrapper and chocolates */
.product-chocolate-wrapper {
    position: relative;
}

.chocolate-1 {
    width: 45%;
    top: 40%;
    left: 6%;
    z-index: 420;
}

.chocolate-2 {
    width: 45%;
    top: 55%;
    left: 45%;
    z-index: 419;
}

/* Chocolate text */
.product-text.chocolate-text-1 {
    left: 24%;
    bottom: -32%;
}

.product-text.chocolate-text-2 {
    right: 25%;
    top: 52%;
}

.product-text.chocolate-text-1::before {
    content: "";
    position: absolute;
    top: 100%;
    width: 0;
    height: 1vw;
    margin-left: -24.6%;
    display: block;
    background: url(../media/img/effect-two.png) no-repeat center;
    transition: all 0.3s ease-out;
    background-size: contain;
}

.product-text.chocolate-text-1.opened::before {
    width: 150%;
}

.product-toffee-toffee-wrapper {
    position: relative;
}

.product-miniki {
    width: 40%;
    top: -35%;
    right: 16%;
    z-index: 510;
    transition: transform 0.4s ease-out;
}

.product-text.miniki {
    right: 26%;
    top: 73%;
}

/* Toffee product */
.product-toffee {
    width: 40%;
    top: -20%;
    left: 10%;
    z-index: 511;
    transition: transform 0.4s ease-out;
}

.product-text.toffee {
    top: -30%;
    left: 20%;
}

.product-text.toffee::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -30%;
    width: 0;
    height: 1.7vw;
    display: block;
    background: url(../media/img/effect-two.png) no-repeat;
    transition: all 0.3s ease-out;
    background-size: contain;
}

.product-text.toffee.opened::before {
    width: 150%;
}

/* Safe food wrapper */
.product-safe-food-wrapper {
    position: relative;
}

.safe-food-1 {
    width: 40%;
    top: 60%;
    left: 5%;
}

.safe-food-2 {
    width: 46%;
    top: 90%;
    left: 37%;
}

.product-text.safe-food,
.product-text.safe-food-text-2 {
    z-index: 1000;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    will-change: opacity, transform;
}

.product-text.safe-food {
    top: 55%;
    left: 18%;
}


.product-text.safe-food-text-2 {
    bottom: 6%;
    right: 25%;
}

/* Traditional product wrapper */
.product-traditional-wrapper {
    position: relative;
    transform-origin: center;
    transition: transform 0.4s ease-out;
}

.product-text.traditional,
.product-text.traditional-text-2 {
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    will-change: opacity, transform;
}

.product-text.traditional {
    top: 60%;
    right: 25%;
}

.product-text.traditional-text-2 {
    bottom: 60%;
    left: 20%;
}

/* Traditional product images */
.traditional-1 {
    width: 50%;
    top: 10%;
    right: 10%;
}

.traditional-2 {
    width: 45%;
    top: 30%;
    left: 7%;
}


/* Legumes wrapper */
.product-legumes-wrapper {
    position: relative;
    z-index: 616;
}

.product-legumes {
    width: 40%;
    top: 32%;
    left: 13%;
}

.naturalness-2 {
    width: 30%;
    top: 45%;
    left: 38%;
    z-index: 100;
}

/* Legumes and naturalness texts */
.product-text.naturalness-text-1 {
    top: 50%;
    right: 5%;
}

.product-text.legumes {
    bottom: 32%;
    right: 6%;
}

/* Cheese wrapper and cheeses */
.product-cheese-wrapper {
    position: relative;
    z-index: 616;
}

.cheese-1 {
    width: 50%;
    bottom: 0;
    left: 25%;
}

.cheese-2 {
    width: 50%;
    top: -5%;
    right: 0;
    rotate: 6deg;
}

.cheese-3 {
    width: 24%;
    bottom: 19%;
    right: 19%;
}

/* Cheese texts */
.product-text.cheese-text-1 {
    top: 57%;
    left: 14%;
}

.product-text.cheese-text-2 {
    top: 48%;
    left: 74%;
}

.product-text.cheese-text-3 {
    bottom: 12%;
    right: 18%;
}

/* Cheese texts effects */
.product-text.cheese-text-2::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -20%;
    width: 0;
    height: 1.7vw;
    display: block;
    background: url(../media/img/effect-two.png) no-repeat;
    transition: width 0.3s ease-out;
    background-size: contain;
}

.product-text.cheese-text-2.opened::before {
    width: 150%;
}

/* Naturalness wrapper */
.product-naturalness-wrapper {
    position: relative;
}

.product-text.naturalness-text-2 {
    top: 0;
    left: 8%;
}

.product-text.naturalness-text-3 {
    top: 48%;
    right: 44%;
}

.naturalness-1 {
    width: 70%;
    top: -15%;
    left: 0;
}

.naturalness-3 {
    width: 45%;
    top: -40%;
    right: 30%;
}

/* Insatiable taste product */
.product-insatiable-taste-wrapper {
    position: relative;
}

.product-insatiable-taste {
    width: 50%;
    right: 34%;
    bottom: 0;
}

.product-text.insatiable-taste {
    top: 40%;
    left: 6%;
}

/* Common transition for multiple wrappers and texts */
.product-wafer-wrapper,
.product-new,
.product-legumes-wrapper,
.product-cheese-wrapper,
.product-safe-food-wrapper,
.product-naturalness-wrapper,
.product-insatiable-taste {
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    will-change: transform, opacity;
}

.product-text {
    position: absolute;
    text-align: center;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    will-change: transform, opacity;
    opacity: 0;
    transform: translate(-200%, 0%) matrix(0, 0, 0, 0, 0, 0);
}

/* Chopping board texts */
.chopping-board-wrapper {
    position: relative;
}

.chopping-board-text {
    font-family: 'Myriad Pro', sans-serif !important;
    font-size: 2.2vw;
    font-weight: bold;
    color: rgba(74, 48, 14, 0.7);
    text-align: center;
    position: absolute;
    left: 0;
    line-height: 2.9vw;
}

.chopping-board-firstLeft .chopping-board-text {
    top: 20%;
}

.chopping-board-right .chopping-board-text {
    font-size: 1.8vw;
    top: 20%;
}

/* Chopping board positions and transforms */
.chopping-board-firstLeft,
.chopping-board-right,
.chopping-board-left {
    position: absolute;
    width: 27%;
    z-index: 616;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.chopping-board-left .chopping-board-text {
    top: 40%;
}

.chopping-board-firstLeft {
    top: -32%;
    left: 13%;
}

.chopping-board-right {
    top: -32%;
    right: -5%;
}

.chopping-board-firstLeft,
.chopping-board-right {
    transform: translate(0%, 100%) matrix(0.64278, 0.76604, -0.76604, 0.64278, 0, 0);
    transform-origin: 50% bottom 0px;
}

.chopping-board-left {
    top: -55%;
    left: 46%;
    transform: translate(0%, 50%) matrix(0.64278, -0.76604, 0.76604, 0.64278, 0, 0);
    transform-origin: 50% top 0px;
}

/* Bon appetit text */
.product-bon-appetit-wrapper {
    position: relative;
}

.product-bon-appetit {
    position: absolute;
    width: 64%;
    bottom: 50%;
    left: 10%;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.chopping-board-img,
.lazy img {
    width: 100%;
}

.product-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background-image: url(../media/img/product-bottom-bg.png);
    background-repeat: repeat;
    background-size: contain;
    height: 11vw;
    z-index: 1000;
}

.rolover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.rolover-items {
    display: table;
    cursor: pointer;
    opacity: 0;
    z-index: 1100;
    height: 200px;
    width: 200px;
}

.rolover-items a {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background: #cd1927;
    border-radius: 50%;
    font-family: 'Myriad Pro', sans-serif;
    color: #fff;
    font-size: 1.2vw;
}

.rolover .rolover-items a span {
    opacity: 0;
}

/* Animation */
@keyframes pulse-scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.lazy:hover .rolover-items {
    opacity: 1;
    animation: pulse-scale 1s ease forwards;
}

.lazy:hover .rolover-items a span {
    opacity: 1;
}

.about-section-mobile {
    background-color: #fff;
    padding: 50px 30px;
    font-family: var(--secondary-font-family);
    color: var(--info-color);
    text-align: center;
}

.our-summery h1 {
    padding: 0 30px;
    font-size: 27px;
    font-weight: 600;
}

.our-summery h2 {
    font-size: 20px;
    font-weight: 300;
}

.certificatea-and-new-product {
    padding-top: 50px;
}

.certificate a img {
    width: 100%;
}

.new-product .new-product-img {
    width: 100%;
}

.mobile-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.stiky {
    position: relative;
    width: 50%;
    float: left;
    text-align: left;
    padding: 5px;
    z-index: 100;
}

.stiky a img {
    width: 100%;
}

.chopping-board-wrapper-mobile {
    padding: 25px 0 0;
    background: url(../media/img/bg-banner.jpg);
    overflow: hidden;
}

.chopping-board-wrapper-mobile::after {
    content: "";
    display: table;
    clear: both;
    background: url(../media/img/product-bottom-bg.png) no-repeat;
    background-size: cover;
    height: 110px;
    width: 100%;
}

.chopping-board-right-mobile,
.chopping-board-right-first-mobile {
    float: left;
    text-align: left;
    padding: 10px;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.chopping-board-left-mobile a,
.chopping-board-right-mobile a,
.chopping-board-right-first-mobile a {
    position: relative;
    display: inline-block;
}

.chopping-board-left-mobile {
    float: left;
    text-align: right;
    padding: 10px;
    transition: transform 0.4s ease-out;
    will-change: transform;
}


.chopping-board-text-mobile {
    font-family: 'Myriad Pro', sans-serif;
    font-size: 5vw;
    font-weight: bold;
    color: rgba(74, 48, 14, 0.7);
    text-align: center;
    position: absolute;
    top: 35%;
    left: 0;
    line-height: 7.2vw;
}

.chopping-board-text-mobile.left-one {
    top: 20%;
}

.chopping-board-text-mobile.right-one {
    top: 20%;
    font-size: 3.5vw;
}

/*================
  404 PAGE STYLE*/
.error-404 {
    height: 80vh;
    padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--extra-light);
    font-family: var(--secondary-font-family);
}

.error-container {
    max-width: 400px;
    display: grid;
    color: var(--text-dark);
}

.error {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.error h1 {
    font-size: 4rem;
    font-weight: 900;
}

.error-container h3 {
    font-size: 2rem;
    font-weight: 900;
}

.error-img {
    width: 100%;
    max-width: 400px;
}

.explain {
    display: grid;
    gap: 2rem;
    place-content: baseline;
}

.explain p {
    font-variation-settings: 1rem;
}

.explain button {
    padding: 1rem;
    outline: none;
    border: none;
    border-radius: 5px;
    color: var(--light-color);
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--primary-color);
    cursor: pointer;
    transition: 0.3s;
}

.explain button a {
    color: #fff;
}

.explain button:hover {
    background-color: #cb132c92;
}

section#persianTemplate * {
    font-family: 'Vazirmatn' !important;
}