@font-face {
    font-family: 'iranSans';
    src: url('../fonts/IRANSansWeb.eot') format('eot'),
    url("../fonts/IRANSansWeb(FaNum).eot") format("eot"),
    url("../fonts/IRANSansWeb(FaNum).woff") format("woff"),
    url("../fonts/IRANSansWeb(FaNum).ttf") format("ttf"),
    url("../fonts/IRANSansWeb(FaNum).woff2") format("woff2"),
    url('../fonts/IRANSansWeb.ttf') format('truetype'),
        /* Safari, Android, iOS */ url('../fonts/IRANSansWeb.woff2') format('woff2'),
        /* Super Modern Browsers */ url('../fonts/IRANSansWeb.woff') format('woff');
    /* Pretty Modern Browsers */
}

* {
    text-decoration: none !important;
    list-style: none;
}

/* MAIN STYLE START */

:root {
    --dark-background: #333333;
    --dark-background-color: #6e6e6e;
    --dark-border-color: #DEDEDEFF;
    --dark-border-color-light: #DEDEDEFF;
    --dark-text-color: #f3f3f3;
    --dark-text-color-tow: #c7c7c7;
    --dark-background-color-btn: #ff4bed;
    --dark-box-shadow-color: #77767656;
    --dark-box-shadow-color-tow: #56565656;
    --dark-background-color-overlay: #07070738;
    --dark-white-color: #282828;
    --dark-dark-color: #ffffff;

    --red: 229, 62, 62;
    --redText: 255, 230, 230;
    --green: 23, 234, 26;
    --greenText: 23, 234, 26;
    --blue: 66, 153, 225;
    --blueText: 190, 227, 248;
    --yellow: 236, 201, 75;
    --yellowText: 254, 252, 191;
    --alertBorderRadius: 20px;
    --alertGlareDelay: 0;
}

body {
    font-family: 'iranSans', serif;
    direction: rtl;
    background: var(--background);
    overflow-x: hidden !important;
    --background: #eef1f1;
    --background-color: #f4f4f4;
    --border-color: #878787;
    --border-color-light: #eee;
    --text-color: #333333;
    --text-color-tow: #535353;
    --background-color-btn: #cd3cdd;
    --box-shadow-color: #77767656;
    --box-shadow-color-tow: #cecece;
    --background-color-overlay: #07070738;
    --white-color: #ffffff;
    --dark-color: #000000;
}

body.theme-dark {
    --background: var(--dark-background);
    --background-color: var(--dark-background-color);
    --border-color: var(--dark-border-color);
    --text-color: var(--dark-text-color);
    --text-color-tow: var(--dark-text-color-tow);
    --background-color-btn: var(--dark-background-color-btn);
    --box-shadow-color: var(--dark-box-shadow-color);
    --box-shadow-color-tow: var(--dark-box-shadow-color-tow);
    --background-color-overlay: var(--dark-background-color-overlay);
    --white-color: var(--dark-white-color);
    --dark-color: var(--dark-dark-color);
}


@media (prefers-color-scheme: dark) {
    body.theme-auto {
        --background: var(--dark-background);
        --background-color: var(--dark-background-color);
        --border-color: var(--dark-border-color);
        --text-color: var(--dark-text-color);
        --text-color-tow: var(--dark-text-color-tow);
        --background-color-btn: var(--dark-background-color-btn);
        --box-shadow-color: var(--dark-box-shadow-color);
        --box-shadow-color-tow: var(--dark-box-shadow-color);
        --background-color-overlay: var(--dark-background-color-overlay);
        --white-color: var(--dark-white-color);
        --dark-color: var(--dark-dark-color);
    }
}

body::-webkit-scrollbar {
    width: 7px;
    border-radius: 50px;
}

body::-webkit-scrollbar-thumb {
    background: var(--background-color-btn);
    border-radius: 50px;
}

body::-webkit-scrollbar-track {
    background: var(--white-color);
    border-radius: 50px;
}

/* MAIN STYLE END */

.container-fluid {
    --bs-gutter-x: 10rem;
}

/* control mode start */
.control-mood {
    width: 90px;
    background: transparent;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.control-mood.active {
    top: 57px;
}

.control-mood label {
    width: 70px;
    height: 30px;
    position: relative;
    display: block;
    background: #ebebeb;
    border-radius: 200px;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.4), inset 0 -5px 15px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    top: 0;
    z-index: 9;
}

.control-mood label:after {
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    top: 3px;
    left: 8px;
    background: linear-gradient(180deg, #ffcc89, #d8860b);
    border-radius: 180px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.control-mood label #sun-item svg,
label #moon-item svg {
    position: absolute;
    width: 70px;
    top: 5px;
    z-index: 100;
    font-size: 20px;
}

.control-mood label #sun-item svg {
    left: -15px;
    color: #fff;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.control-mood label #moon-item svg {
    left: 18px;
    color: #7e7e7e;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.control-mood input {
    width: 0;
    height: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.control-mood input:checked + label {
    background: linear-gradient(90deg, var(--background), var(--background-color));
}

input:checked + label:after {
    left: 40px;
    background: linear-gradient(180deg, #777, #3a3a3a);
}

.control-mood input:checked + label #sun-item svg {
    color: #7e7e7e;
}

.control-mood input:checked + label #moon-item svg {
    color: #fff;
}

.control-mood input:checked + label + .background {
    background: #242424;
}

.control-mood input:active:after {
    width: 260px;
}

.add-to-basket {
    width: 100%;
    display: inline-block;
    background: var(--background-color-btn);
    padding: 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: var(--white-color);
    margin: 10px 0;
    text-align: center;
}

/* control mode end */

/* HEADER START */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999999;
    background: var(--background);
    transition: all 0.3s ease-in-out;
}

.header.fixed {
    top: -70px;
}

.header .header-top {
    width: 100%;
    display: flex;
    padding: 10px 0;
}

.header .header-top .logo-box img {
    width: 120px;
    height: 50px;
}

.header .header-top .search-box {
    width: 100%;
}

.header .header-top .search-box form {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header-top .search-box form .select-store {
    position: relative;
    background: var(--background-color);
    border-radius: 0 10px 10px 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    cursor: pointer;
    min-width: 100px;
}

.header .header-top .search-box form .select-store .select-store-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header-top .search-box form .select-store .select-store-box p {
    margin: 0;
    font-size: 12px;
}

.header .header-top .search-box form .select-store .select-store-box svg {
    font-size: 13px;
    margin-right: 3px;
    margin-top: 5px;
}

.header .header-top .search-box form .select-store .select-store-list {
    position: absolute;
    top: 60px;
    right: -4px;
    background-color: var(--white-color);
    border: 1px solid #9faac2;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    width: 146px;
    display: none;
}

.header .header-top .search-box form .select-store .select-store-list.active {
    display: flex;
}

.header .header-top .search-box form .select-store .select-store-list .select-store-list-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.header .header-top .search-box form .select-store .select-store-list .select-store-list-items .select-store-list-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 15px 10px;
}

.header .header-top .search-box form .select-store .select-store-list .select-store-list-items .select-store-list-item:hover {
    background: var(--background-color);
    cursor: pointer;
}

.header .header-top .search-box form .select-store .select-store-list .select-store-list-items .select-store-list-item .select-store-list-item-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header-top .search-box form .select-store .select-store-list .select-store-list-items .select-store-list-item .select-store-list-item-text .select-store-list-item-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header-top .search-box form .select-store .select-store-list .select-store-list-items .select-store-list-item .select-store-list-item-text .select-store-list-item-checkbox input {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header .header-top .search-box form .select-store .select-store-list .select-store-list-items .select-store-list-item .select-store-list-item-text .select-store-list-item-checkbox span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    box-shadow: inset 0 2px 3px var(--box-shadow-color);
    border: 1px solid var(--border-color);
    cursor: pointer;
    margin-left: 5px;
}

.header .header-top .search-box form .select-store .select-store-list .select-store-list-items .select-store-list-item .select-store-list-item-text .select-store-list-item-checkbox span:hover {
    border: 1px solid var(--background-color-btn);
}

.header .header-top .search-box form .select-store .select-store-list .select-store-list-items .select-store-list-item .select-store-list-item-text .select-store-list-item-checkbox span.active {
    background: var(--background-color-btn);
}

.header .header-top .search-box form .select-store .select-store-list .select-store-list-items .select-store-list-item .select-store-list-item-text p {
    display: none;
}

.header .header-top .search-box form .select-store .select-store-list .select-store-list-items .select-store-list-item img {
    width: 60px;
    height: 16px;
    object-fit: contain;
}

.header .header-top .search-box form .input-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.header .header-top .search-box form .input-box .input-search {
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 0;
    outline: none;
}

.header .header-top .search-box form .input-box .input-search-text {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header-top .search-box form .input-box .input-search-text span {
    font-size: 12px;
}

.header .header-top .search-box form .input-box .input-search-text #image-search {
    width: 65px;
    margin: 0 5px;
}

.header .header-top .search-box form .search-btn-store {
    border: none;
    background: var(--background-color-btn);
    border-radius: 10px 0 0 10px;
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header-top .search-box form .search-btn-store svg {
    font-size: 20px;
    color: var(--white-color);
}

.header .header-top .header-info {
    width: 33%;
}

.header .header-top .support-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 200px;
    margin-right: 20px;
}

.header .header-top .support-number a {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600;
}

.header .header-top .support-number p {
    color: var(--text-color-tow);
    font-size: 12px;
    font-weight: 300;
    margin: 0;
}

.header .header-top .register-login {
    border-radius: 10px;
    background-color: transparent;
    min-height: 48px;
    padding: 0 10px;
    color: var(--white-color);
    width: 200px;
    margin-right: 10px;
    background: var(--background-color-btn);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header-top .register-login svg {
    margin-left: 10px;
}


.header .header-top .header-info .basket-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: transparent;
    min-height: 48px;
    padding: 0 10px;
    color: var(--text-color);
    width: 35px;
    height: 30px;
    margin-right: 10px;
}

.header .header-top .header-info .basket-box .basket-icon {
    position: relative;
}

.header .header-top .header-info .basket-box .basket-icon span {
    position: absolute;
    top: -9px;
    left: 4px;
    background: var(--background-color-btn);
    color: var(--white-color);
    display: flex;
    width: 14px;
    height: 14px;
    border-radius: 50px;
    font-size: 12px;
    align-items: center;
    justify-content: center;
}

.header .header-top .account-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: transparent;
    min-height: 48px;
    padding: 0 10px;
    color: var(--text-color);
    width: 150px;
    cursor: pointer;
    position: relative;
}

.header .header-top .account-box .account-box-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.header .header-top .account-box .account-box-title p {
    margin-bottom: 0;
    margin-left: 5px;
    font-size: 14px;
}

.header .header-top .account-box .account-box-title svg {
    font-size: 12px;
}

.header .header-top .account-box .account-box-list {
    position: absolute;
    top: 52px;
    left: 0;
    width: 185px;
    background-color: var(--white-color);
    border-radius: 10px;
    display: none;
    z-index: 999;
}

.header .header-top .account-box .account-box-list.active {
    display: flex;
}

.header .header-top .account-box .account-box-list::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--white-color);
    display: inline-block;
    position: absolute;
    top: -5px;
    left: 20px;
    transform: rotate(45deg);
    z-index: -1;
}

.header .header-top .account-box .account-box-list ul {
    padding: 0;
    margin: 0;
    width: 100%;
}

.header .header-top .account-box .account-box-list ul li {
    width: 100%;
    padding: 10px 15px;
}

.header .header-top .account-box .account-box-list ul li:first-child {
    border-bottom: 1px dotted var(--border-color);
    border-radius: 10px 10px 0 0;
}

.header .header-top .account-box .account-box-list ul li:last-child {
    border-top: 1px dotted var(--border-color);
    border-radius: 0 0 10px 10px;
}

.header .header-top .account-box .account-box-list ul li:hover {
    background: var(--background-color);
}

.header .header-top .account-box .account-box-list ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-color);
    font-size: 13px;
}

.header .header-top .account-box .account-box-list ul li a p {
    margin-bottom: 0;
    margin-right: 10px;
}

.header .header-bottom {
    width: 100%;
    display: flex;
}

.header .header-bottom .nav-menu {
    width: 100%;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
}

.header .header-bottom .nav-menu .logo-responsive-header {
    display: none;
    width: 100px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.header .header-bottom .nav-menu .menu-item-responsive {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header .header-bottom .nav-menu .menu-item-responsive img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header .header-bottom .nav-menu .menu-item-responsive svg {
    font-size: 26px;
    color: var(--dark-color);
}

.header .header-bottom .nav-menu .product-category-box {
    width: 110px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.header .header-bottom .nav-menu .product-category-box .product-category-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header .header-bottom .nav-menu .product-category-box .product-category-title p {
    margin: 0 5px 0 5px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 800;
}

.header .header-bottom .nav-menu .product-category-box .product-category-title svg {
    font-size: 14px;
    color: var(--text-color);
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items {
    width: 100%;
    background: var(--white-color);
    box-shadow: 0 0 2px var(--box-shadow-color);
    position: absolute;
    top: 50px;
    right: 0;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.header .header-bottom .nav-menu .product-category-box:hover .product-category-menu-items {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    height: 400px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-right {
    width: 20%;
    height: 100%;
    overflow-y: auto;
    border-left: 1px solid var(--border-color-light);
    background: var(--background-color);
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-right .product-category-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-right .product-category-main .product-category-main-item {
    margin: 8px 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    font-size: 14px;
    width: 100%;
}


.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-right .product-category-main .product-category-main-item a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-right .product-category-main .product-category-main-item a.active {
    color: #c00;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-right .product-category-main .product-category-main-item a svg {
    display: none;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-right .product-category-main .product-category-main-item a svg.active {
    display: block;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-right .product-category-main .product-category-main-item:hover a svg {
    display: block;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left {
    width: 80%;
    height: 100%;
    overflow-y: auto;
    padding: 20px 50px;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left::-webkit-scrollbar {
    width: 7px;
    border-radius: 50px;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left::-webkit-scrollbar-thumb {
    background: var(--background-color-btn);
    border-radius: 50px;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left::-webkit-scrollbar-track {
    background: var(--white-color);
    border-radius: 50px;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left .product-category-col-items {
    width: 100%;
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-right: 20px;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left .product-category-col-items.active {
    display: flex;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left .product-category-col-items .product-category-col-item {
    width: calc(25% - 10px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left .product-category-col-items .product-category-col-item h3 {
    width: 100%;
    margin: 10px 0;
    position: relative;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left .product-category-col-items .product-category-col-item h3 a {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left .product-category-col-items .product-category-col-item h3 a::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #c00;
    border-radius: 100px;
    top: 12px;
    right: -15px;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left .product-category-col-items .product-category-col-item ul {
    padding: 0;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left .product-category-col-items .product-category-col-item ul li {
    margin: 5px 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    font-size: 14px;
    width: 100%;
}

.header .header-bottom .nav-menu .product-category-box .product-category-menu-items .product-category-left .product-category-col-items .product-category-col-item ul li a {
    color: var(--text-color);
}

.header .header-bottom .control-menu {
    display: flex;
    align-items: center;
}

.header .header-bottom .control-menu .support-number-responsive {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 35px;
    margin-right: 20px;
    background: var(--background-color-btn);
    padding: 5px;
    border-radius: 10px;
}

.header .header-bottom .control-menu .support-number-responsive a svg {
    color: var(--white-color);
}


/* menu start*/
.nav-menu .menu-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
}

.nav-menu .menu-items .menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    transition: all 0.3s ease-in-out;
    border-radius: 10px 10px 0 0;
    margin-left: 15px;
}

.nav-menu .menu-items .menu-item img {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.nav-menu .menu-items .menu-item .menu-item-link {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 3px 0 3px;
}

.nav-menu .menu-items .menu-item:hover .menu-item-link {
    color: var(--text-color);
}

.nav-menu .menu-items .menu-item > span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin: 0 3px 0 3px;
    color: var(--text-color);
}

.nav-menu .menu-items .menu-item:hover > span {
    color: var(--background-color);
}

.nav-menu .menu-items .menu-item .sub-menu-items {
    position: absolute;
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    box-shadow: 0 0 5px var(--box-shadow-color);
    top: 50px;
    right: 0;
    padding: 0;
    min-width: 200px;
    border-radius: 10px;
    overflow: hidden;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99;
}

.nav-menu .menu-items .menu-item.sub-menu:hover .sub-menu-items {
    animation: showSubMenu 0.3s ease-in-out forwards;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@keyframes showSubMenu {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

.nav-menu .menu-items .menu-item .sub-menu-items .sub-menu-item {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease-in-out;
}

.nav-menu .menu-items .menu-item .sub-menu-items .sub-menu-item:hover {
    background: var(--background-color-btn);
}

.nav-menu .menu-items .menu-item .sub-menu-items .sub-menu-item:last-child {
    border-bottom: none;
}

.nav-menu .menu-items .menu-item .sub-menu-items .sub-menu-item .sub-menu-item-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px 10px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 800;
}

.nav-menu .menu-items .menu-item .sub-menu-items .sub-menu-item:hover .sub-menu-item-link {
    color: var(--white-color);
}

.nav-menu .menu-items .menu-item.mega-menu {
    position: static;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu {
    position: absolute;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: var(--white-color);
    box-shadow: 0 0 5px var(--box-shadow-color);
    top: 50px;
    right: 0;
    padding: 0;
    width: 1200px;
    min-width: 920px;
    height: 270px;
    border-radius: 10px;
    overflow: hidden;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99;
}

.nav-menu .menu-items .menu-item.mega-menu:hover .sub-mega-menu {
    animation: showMegaMenu 0.3s ease-in-out forwards;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


@keyframes showMegaMenu {
    0% {
        transform: scaleY(0);

    }
    100% {
        transform: scaleY(1);
    }
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-right {
    width: 30%;
    height: 100%;
    overflow-y: auto;
    border-left: 1px solid var(--border-color-light);
    background: var(--background-color);
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-right::-webkit-scrollbar {
    width: 7px;
    border-radius: 50px;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-right::-webkit-scrollbar-thumb {
    background: var(--background-color-btn);
    border-radius: 50px;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-right::-webkit-scrollbar-track {
    background: var(--white-color);
    border-radius: 50px;
}


.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-right ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-right ul li {
    margin: 8px 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    width: 100%;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-right ul li a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-right ul li:hover a {
    color: #c00;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-left {
    width: 70%;
    height: 100%;
    overflow-y: auto;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-left::-webkit-scrollbar {
    width: 7px;
    border-radius: 50px;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-left::-webkit-scrollbar-thumb {
    background: var(--background-color-btn);
    border-radius: 50px;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-left::-webkit-scrollbar-track {
    background: var(--white-color);
    border-radius: 50px;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-left .sub-mega-menu-items-left-items {
    width: 100%;
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-right: 20px;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-left .sub-mega-menu-items-left-items.active {
    display: flex;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-left .sub-mega-menu-items-left-items .sub-mega-menu-items-left-item {
    width: 100%;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-left .sub-mega-menu-items-left-items .sub-mega-menu-items-left-item ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-left .sub-mega-menu-items-left-items .sub-mega-menu-items-left-item ul li {
    flex: calc(25% - 10px);
    max-width: calc(25% - 10px);
    padding: 10px 0;
}

.nav-menu .menu-items .menu-item.mega-menu .sub-mega-menu .sub-mega-menu-items-left .sub-mega-menu-items-left-items .sub-mega-menu-items-left-item ul li a {
    color: var(--text-color);
    display: inline-flex;
    height: 40px;
    align-items: center;
    justify-content: center;
}

/* menu end*/


/* NAVBAR RESPONSIVE START  */


.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    right: 0;
    left: -100%;
    bottom: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.overlay.active {
    opacity: 1;
    left: 0;
    visibility: visible;
    pointer-events: auto;
}

.header .navbar-responsive {
    width: 320px;
    height: 100vh;
    position: fixed;
    background: linear-gradient(90deg, var(--background-color), var(--background));
    top: 0;
    right: -100%;
    z-index: 9999;
    text-align: center;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    overflow-y: auto;
}

.header .navbar-responsive.open {
    right: 0;
}

.header .navbar-responsive .top-navbar-responsive {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
    position: relative;
    background: var(--background-color-btn);
}

.header .navbar-responsive .top-navbar-responsive .logo-responsive {
    width: 120px;
    height: 50px;
}

.header .navbar-responsive .top-navbar-responsive .logo-responsive img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header .navbar-responsive .top-navbar-responsive .user-name-responsive {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white-color);
    font-size: 13px;
    font-weight: 900;
}

.header .navbar-responsive .top-navbar-responsive .user-name-responsive p {
    margin: 0;
}

.header .navbar-responsive .close-navbar-responsive {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.header .navbar-responsive .close-navbar-responsive svg {
    color: var(--white-color);
    font-size: 25px;
}

.header .navbar-responsive .menu-responsive-top {
    padding: 5px 15px;
}

.header .navbar-responsive .menu-responsive-top ul {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    border-bottom: 1px solid var(--border-color);
    padding: 0 0 20px 0;
}

.header .navbar-responsive .menu-responsive-top ul li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header .navbar-responsive .menu-responsive-top ul li a {
    color: var(--text-color);
    padding: 7px 0;
}

.header .navbar-responsive .menu-responsive-top ul li a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.header .navbar-responsive .menu-responsive {
    padding: 5px 15px;
}


.header .navbar-responsive .menu-responsive .social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;

}

.header .navbar-responsive .menu-responsive .social-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 15px 0;
}

.navbar-responsive .menu-responsive .social-box ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.navbar-responsive .menu-responsive .social-box ul li {
    margin: 0;
}

.navbar-responsive .menu-responsive .social-box ul li a {
    color: var(--text-color);
    font-size: 25px;
    background: rgba(255, 255, 255, 0.28);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.navbar-responsive .menu-responsive .social-box ul li a:hover {
    box-shadow: 0 0 1px var(--box-shadow-color);
}

.navbar-responsive .menu-responsive .social-box ul li a svg {
    transition: all .9s ease-in-out;
    -webkit-transition: all .9s ease-in-out;
    -moz-transition: all .9s ease-in-out;
    -ms-transition: all .9s ease-in-out;
    -o-transition: all .9s ease-in-out;
}

.navbar-responsive .menu-responsive .social-box ul li a:hover svg {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}


.header .navbar-responsive .menu-responsive .menu-responsive-main {
    text-align: right;
    padding: 5px 20px;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main > li {
    overflow: hidden;
    position: relative;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li a {
    color: var(--text-color);
    padding: 10px 0;
    display: block;
    width: 70%;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li span {
    font-size: 15px;
    color: var(--text-color);
    position: absolute;
    left: 0;
    top: 15px;
    width: 30%;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li .show-sub-menu .fa-plus {
    display: block;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li .show-sub-menu .fa-minus {
    display: none;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li .show-sub-menu .fa-plus.hide {
    display: none;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li .show-sub-menu .fa-minus.show {
    display: block;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li ul {
    height: 0;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    padding: 0;
}


.menu-responsive .menu-responsive-main > li ul li {
    position: relative;
    padding-right: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.menu-responsive .menu-responsive-main li ul li::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--background-color-btn);
    top: 25px;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-responsive .menu-responsive-main li ul li ul li {
    position: relative;
}

.menu-responsive .menu-responsive-main li ul li ul li::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--background-color-btn);
    top: 25px;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li > ul > li > ul > li > a {
    width: 100%;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li .show-sub-menu-tow .fa-plus {
    display: block;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li .show-sub-menu-tow .fa-minus {
    display: none;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li .show-sub-menu-tow .fa-plus.hide {
    display: none;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li .show-sub-menu-tow .fa-minus.show {
    display: block;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li ul {
    height: 0;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    padding-right: 5px;
}


.header .navbar-responsive .menu-responsive .menu-responsive-main li .show-sub-menu-three .fa-plus {
    display: block;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li .show-sub-menu-three .fa-minus {
    display: none;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li .show-sub-menu-three .fa-plus.hide {
    display: none;
}

.header .navbar-responsive .menu-responsive .menu-responsive-main li .show-sub-menu-three .fa-minus.show {
    display: block;
}

.menu-responsive .menu-responsive-main ul li ul li ul li::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--background-color-btn);
    top: 25px;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.navbar-responsive .menu-responsive-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.navbar-responsive .menu-responsive-footer .menu-responsive-footer-text {
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.navbar-responsive .menu-responsive-footer .menu-responsive-footer-copy-right {
    width: 100%;
}

.navbar-responsive .menu-responsive-footer .menu-responsive-footer-copy-right a {
    color: var(--text-color);
}

.navbar-responsive .menu-responsive-footer .menu-responsive-footer-copy-right a .fa-code {
    color: #77c500;
    font-size: 14px;
}

.navbar-responsive .menu-responsive-footer .menu-responsive-footer-copy-right a .fa-heart-pulse {
    color: #ff4d2c;
    font-size: 14px;
}

/* NAVBAR RESPONSIVE END  */


/* HEADER END */


/* CUSTOM BTN START */
.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'iranSans', serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
}


/* 12 */
.btn-12 {
    position: relative;
    right: -25px;
    bottom: 20px;
    border: none;
    box-shadow: none;
    width: 100%;
    height: 40px;
    line-height: 42px;
    -webkit-perspective: 230px;
    perspective: 230px;
}

.btn-12 span {
    background: var(--background-color-btn);
    background: linear-gradient(0deg, var(--background-color-btn) 0%, #ed89f4 100%);
    display: block;
    position: absolute;
    width: 100%;
    height: 40px;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
    border-radius: 5px;
    margin: 0;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn-12 span:nth-child(1) {
    box-shadow: -7px -7px 20px 0px #fff9,
    -4px -4px 5px 0px #fff9,
    7px 7px 20px 0px #0002,
    4px 4px 5px 0px #0001;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
}

.btn-12 span:nth-child(2) {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
}

.btn-12:hover span:nth-child(1) {
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.btn-12:hover span:nth-child(2) {
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
    color: transparent;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}

/* 11 */
.btn-11 {
    border: none;
    background: var(--background-color-btn);
    background: linear-gradient(0deg, var(--background-color-btn) 0%, rgb(239, 94, 255) 100%);
    color: #fff;
    overflow: hidden;
}

.btn-11:hover {
    text-decoration: none;
    color: #fff;
}

.btn-11:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}

.btn-11:hover {
    opacity: .7;
}

.btn-11:active {
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .3),
    -4px -4px 6px 0 rgba(116, 125, 136, .2),
    inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}


@-webkit-keyframes shiny-btn1 {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}


/* CUSTOM BTN END */

/* TITLE BOX START */
.title-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 15px;
}

.title-box .title-box-text {
    color: var(--text-color-tow);
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.title-box .title-box-text h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.title-box .title-box-btn {
    width: 132px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.title-box .title-box-btn a {
    color: var(--white-color);
    background: var(--background-color-btn);
    padding: 10px 20px;
    border-radius: 10px;
}

/* TITLE BOX END */

.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.owl-nav button {
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-stage {
    padding: 30px 0;
}

/* FLIP BOX START  */


.flip-box {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
    background-size: contain;
    background: var(--background-color);
    border-radius: 8px;
    min-height: 200px;
    -ms-transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
    transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
    -webkit-transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box-front {
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
}

.flip-box:hover .flip-box-front {
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
}

.flip-box-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.flip-box:hover .flip-box-back {
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform-style: preserve-3d;
}


.flip-box .inner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
    color: var(--text-color);
    transform: translateY(-50%) translateZ(60px) scale(.94);
    -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
    top: 60%;
    padding: 10px 25px;
    -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
    -moz-transform: translateY(-50%) translateZ(60px) scale(.94);
    -o-transform: translateY(-50%) translateZ(60px) scale(.94);
}

.flip-box .inner .img-flip {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    z-index: -1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.flip-box-header {
    font-size: 34px;
}

.flip-box h3 {
    font-size: 16px;
    margin-top: 110px;
    color: var(--text-color);
}

.flip-box p {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 20px;
}

.inner svg {
    margin-top: 25px;
    font-size: 50px;
}

.flip-box-button {
    padding: 5px 30px;
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    color: var(--white-color);
    background: var(--background-color-btn);
    transition: all .3s ease-in-out;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    margin-top: 110px;
}

.flip-box-button:hover {
    box-shadow: 0 0 1px var(--box-shadow-color);
}


/* FLIP BOX END  */


/* FOOTER START */

#goUp {
    width: 40px;
    height: 40px;
    position: fixed;
    left: -100px;
    bottom: 20px;
    background: var(--background-color-btn);
    box-shadow: 0 0 5px var(--box-shadow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

#goUp:hover {
    box-shadow: 0 0 1px var(--box-shadow-color);
}

#goUp a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

#goUp.active {
    left: 15px;
}

.menu-bottom-responsive {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white-color);
    z-index: 9999;
    box-shadow: 0 0 5px var(--box-shadow-color);
    display: none;
}

.menu-bottom-responsive .menu-bottom-responsive-items {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.menu-bottom-responsive .menu-bottom-responsive-items ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0 10px;
}

.menu-bottom-responsive .menu-bottom-responsive-items ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 800;
}

.menu-bottom-responsive .menu-bottom-responsive-items ul li a.active {
    color: var(--background-color-btn);
}

#footer {
    width: 100%;
    height: 100%;
    background: #ffffff00;
    position: relative;
}

#footer .top-header {
    background: var(--white-color);
    padding: 20px 10px;
    border-radius: 10px;
    position: absolute;
    top: -30px;
    z-index: 99;
    left: 0;
    right: 0;
}

#footer .top-header .top-header-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .top-header .top-header-item a {
    color: var(--background-color-btn);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .top-header .top-header-item a svg {
    color: var(--dark-color);
    font-size: 17px;
    margin-left: 10px;
}

#footer .top-header .top-header-item a p {
    color: var(--dark-color);
    font-size: 17px;
    margin-left: 10px;
    margin-bottom: 0;
}

#footer .footer-light {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

#footer .footer-light img {
    width: 150px;
}

#footer .footer-content {
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 30px 0 0 0;
    z-index: 0;
    position: relative;
}

#footer .footer-content .footer-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #000;
    opacity: 0.6;
    z-index: 1;
}

#footer .footer-content .footer-content-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.footer-content .footer-content-inner .footer-top {
    width: 100%;
    margin: 50px 0;
}

.footer-content .footer-content-inner .footer-top .title-footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-content-inner .footer-top .title-footer-top h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
}

.footer-content-inner .footer-top .title-footer-top form {
    width: 50%;
    height: 70px;
    background: rgba(255, 255, 255, 0.29);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    overflow: hidden;
    padding: 0 10px;
}

.footer-content-inner .footer-top .title-footer-top form .news-letters-input {
    width: 85%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 0 10px 10px 0;
    padding: 0 20px;
}

.footer-content-inner .footer-top .title-footer-top form .news-letters-btn {
    width: 15%;
    height: 50px;
    border: none;
    outline: none;
    background: #fff;
    color: var(--white-color);
    border-radius: 10px 0 0 10px;
    background: var(--background-color-btn);
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.footer-content-inner .footer-top .title-footer-top form .news-letters-btn:hover {
    background: var(--background-color);
    color: var(--dark-color);
}

.footer-content-inner .footer-main {
    width: 100%;
    margin: 50px 0;
}

.footer-content-inner .footer-main .footer-main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-content-inner .footer-main .social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-content-inner .footer-main .social-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.footer-content-inner .footer-main .social-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content-inner .footer-main .social-box ul li {
    margin: 0 20px;
}

.footer-content-inner .footer-main .social-box ul li a {
    color: #fff;
    font-size: 30px;
    background: rgba(255, 255, 255, 0.28);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.footer-content-inner .footer-main .social-box ul li a:hover {
    box-shadow: 0 0 1px var(--box-shadow-color);
}

.footer-content-inner .footer-main .social-box ul li a svg {
    transition: all .9s ease-in-out;
    -webkit-transition: all .9s ease-in-out;
    -moz-transition: all .9s ease-in-out;
    -ms-transition: all .9s ease-in-out;
    -o-transition: all .9s ease-in-out;
}

.footer-content-inner .footer-main .social-box ul li a:hover svg {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}


.footer-content-inner .footer-main .footer-title h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-content-inner .footer-main .footer-menu ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.footer-content-inner .footer-main .footer-menu ul li {
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    display: inline;
}

.footer-content-inner .footer-main .footer-menu ul li a {
    color: #fff;
    font-size: 16px;
}

.footer-content-inner .footer-main .footer-menu ul li:hover {
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
}

.footer-content-inner .footer-main .license {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content-inner .footer-main .license-item {
    width: 150px;
    height: 150px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    margin: 0 10px;
}

.footer-content-inner .footer-main .license-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-content-inner .footer-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.footer-content-inner .footer-bottom .copy-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-content-inner .footer-bottom .copy-right .copy-right-text {
    color: #fff;
    font-size: 13px;
    margin: 0;
}

.footer-content-inner .footer-bottom .copy-right .author {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-content-inner .footer-bottom .copy-right .author a {
    color: #fff;
    font-size: 14px;
}

/* FOOTER END */


/* FAQ SECTION START */

.faq-section {
    width: 100%;
    padding: 20px 0;
    margin: 20px 0;
}

.faq-section .faq-content {
    background: var(--white-color);
    width: 100%;
    padding: 20px;
    border-radius: 15px;
}

.faq-section .faq-content.disabled {
    display: none;
}

#faq {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

#faq-start {
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
}

.faq-section .faq-item {
    width: 100%;
    border-bottom: 1px solid var(--white-color);
}

.faq-section .faq-item .faq-title {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 5px;
    background-color: var(--background-color);
    box-sizing: border-box;
}

.faq-section .faq-item .faq-title h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color);
}

.faq-section .faq-item .faq-title .UpIcon {
    display: none;
}

.faq-section .faq-item .faq-title span svg {
    color: var(--text-color);
}

.faq-section .faq-item .faq-content {
    padding: 0 20px;
    overflow: hidden;
    transition: all .5s linear;
    height: 0;
    background-color: var(--white-color);
    box-sizing: border-box;
    width: 100%;
    border-radius: 5px;
}

.faq-section .faq-item .faq-content p {
    margin: 15px;
    color: var(--text-color);
}

.faq-image {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

.faq-image img {
    width: 100%;
}

/* FAQ SECTION END */


/* VIDEO PLAYER PLAY LIST START */
.video-gallery-playlist {
    width: 100%;
    margin: 20px 0 30px 0;
    padding: 25px 0;
}

.video-gallery-playlist .video-box {
    width: 1100px;
    height: 400px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    background: var(--background-color);
    padding: 20px;
    box-sizing: border-box;
    border-radius: 5px;
    margin: 0 auto;
}

.video-gallery-playlist .video-box .video-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.video-gallery-playlist .video-box .video-content .video-lists {
    width: 380px;
    height: 360px;
    overflow-y: auto;
    padding: 10px;
    background: var(--background);
    overflow-x: hidden;
    box-sizing: border-box;
    direction: ltr;
    text-align: right;
}


.video-gallery-playlist .video-box .video-content .video-lists::-webkit-scrollbar {
    width: 5px;
    border-radius: 50px;
}

.video-gallery-playlist .video-box .video-content .video-lists::-webkit-scrollbar-thumb {
    background: var(--background-color-btn);
    border-radius: 50px;
}

.video-gallery-playlist .video-box .video-content .video-lists::-webkit-scrollbar-track {
    background: var(--text-color);
    border-radius: 50px;
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    background: var(--background-color);
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 5px var(--box-shadow-color);
    border: 1px solid transparent;
    position: relative;
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list .show-video-small {
    position: absolute;
    top: 0;
    left: -5px;
    bottom: 0;
    width: 67%;
    height: 100%;
    z-index: 999;
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list .show-video-small video {
    animation: showVideo 1s ease-in-out forwards;
}

@keyframes showVideo {
    0% {
        transform: scale(0.1);
    }
    100% {
        transform: scale(1);
    }
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list.active {
    border: 1px solid #797979;
    box-shadow: 0 0 10px #868686;
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list:hover {
    border: 1px solid #444444;
    box-shadow: 0 0 10px #494949;
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list:first-child {
    margin-top: 0;
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list:last-child {
    margin-bottom: 0;
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list .video-list-text {
    width: 200px;
    height: 100%;
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list .video-list-text h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-color);
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list .video-list-text p {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list .video-list-image {
    width: 180px;
    height: 100%;
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list .video-list-image .time-video {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--dark-color);
    border-radius: 50px;
    padding: 5px 20px;
}

.video-gallery-playlist .video-box .video-content .video-lists .video-list .video-list-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
    margin-left: 10px;
}


.video-gallery-playlist .video-box .video-content .video-gallery-playlist-video {
    width: 720px;
    height: 100%;
}

.video-gallery-playlist .video-box .video-content .video-gallery-playlist-video .video-view-playlist {
    width: 100%;
    height: 100%;
    display: none;
}

.video-gallery-playlist .video-box .video-content .video-gallery-playlist-video .video-view-playlist.active {
    display: block;
}

.video-gallery-playlist .video-box .video-content .video-gallery-playlist-video .video-view-playlist video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* VIDEO PLAYER PLAY LIST END */


/* FORM VALIDATION START */
label {
    color: var(--text-color) !important;
    margin: 5px 0 !important;
}

.error-span {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    font-size: 13px;
    background-color: tomato;
    padding: 1px 5px;
    border-radius: 5px;
    color: #fff;
    margin-top: 3px;
    display: inline-block;
}

.error-span.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.remaining-text-limit {
    position: absolute;
    left: 19px;
    bottom: 0;
    font-size: 11px;
    font-weight: 600;
}

/* FORM VALIDATION END */
