:root {
    --main-color: #9b0d20;
    --supplementary: #9b0d20;
}

.title {
    font-size: 33px;
    color: var(--main-color);
    display: flex !;
}

body {
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animate-charcter {
    text-transform: uppercase;
    background-image: linear-gradient(-225deg,
            #231557 0%,
            #44107a 29%,
            var(--main-color) 67%,
            var(--supplementary) 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.m-f {
    font-size: 11px;
}

.m-txt {
    color: rgb(0, 146, 7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    margin: 0 auto;
}

.cta {
    margin-bottom: 30px;
}

.product-paage {
    width: 100%;
    height: 100vh;
    overflow: scroll;
}

.m-card {
    border-radius: 5px;
}

.m-card .single-blog {
    border: 1px dashed var(--main-color);
    margin-bottom: 30px;
}

#customers {
    border-collapse: collapse;
    width: 100%;
}

#customers td,
#customers th {
    border: 1px solid #ddd;
    padding: 8px;
}

#customers tr:nth-child(even) {
    background-color: #f2f2f2;
}

#customers tr:nth-child(odd) {
    background-color: #b6b5b5;
}


#customers tr:hover {
    background-color: #ddd;
}

#customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: var(--main-color);
    color: white;
}

.m-baner {
    margin-top: 60px;
}

.m-border {
    border-radius: 20px;
}

.lang {
    position: absolute;
    top: 40px;
    left: 60px;
}

.m-size {
    width: 80%;
    margin: 0 auto 100px auto;
}

.imgOrgani {
    width: 200px;
    height: 100px;
}

.section-title span {
    color: #18D9E8 !important;
}

@media (max-width: 370px) {
    .copyright {
        display: none;
        visibility: hidden;
    }
}

@media (max-width: 768px) {
    .banner .banner-txt p {
        display: none !important;
        visibility: hidden !important;
    }
}

/* floating btn */
.my-floating-menu {
    z-index: 100;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    visibility: hidden;
}

#my-toggleMenuBtn {
    background-image: linear-gradient(-225deg,
            var(--main-color) 67%,
            var(--supplementary) 100%);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.texti {
    font-size: 12px;
}

.my-menu-content {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: #fff;
    /* رنگ پس زمینه منو */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.my-menu-content a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #000;
    transition: background-color 0.3s ease;
}

.my-menu-content a:hover {
    background-color: #dad9d9;
}

.my-menu-content.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 480px) {
    .my-floating-menu {
        display: block !important;
        visibility: visible !important;
    }
}

.maps {
    display: flex;
    justify-content: center;
    width: 40%;
    height: auto;
    margin: 30px auto 70px auto;
}

.oneMap {
    width: 97%;
    height: 100%;
    text-align: center;
}

.titleMap {
    font-size: 20px;
}

@media (max-width: 1600px) {
    .maps {
        display: block;
        width: 100%;
    }
}

/* Custom code*/
.banner .nav-wrap .nav-grid .single-item {
    background: -webkit-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: -o-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: linear-gradient(135deg, #9b0d2078, #9b0d20);
}

.banner .nav-wrap .nav-grid .single-item a:hover {
    background: #9b0d20;
}

.def-btn::after {
    background: -webkit-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: -o-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: linear-gradient(135deg, #9b0d2078, #9b0d20);
}

.def-btn {
    background: -webkit-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: -o-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: linear-gradient(135deg, #9b0d2078, #9b0d20);
}

.banner .banner-txt .btn-box a:nth-child(2) {
    color: #9b0d20;
}

.banner .main-social a {
    background: -webkit-linear-gradient(315deg, #9b0d2078, #9b0d20) !important;
    background: -o-linear-gradient(315deg, #9b0d2078, #9b0d20) !important;
    background: linear-gradient(135deg, #9b0d2078, #9b0d20) !important;
}

.banner .main-social a::after {
    background: -webkit-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: -o-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: linear-gradient(135deg, #9b0d2078, #9b0d20);
}

.header .nav-btn a {
    background: -webkit-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: -o-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: linear-gradient(135deg, #9b0d2078, #9b0d20);
}

.sidebar-overlay .sidebar h3 {
    color: #9b0d20;
}

.sidebar-overlay .sidebar h3 button {
    background: -webkit-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: -o-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: linear-gradient(135deg, #9b0d2078, #9b0d20);
}

.panel-close-btn {
    background: -webkit-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: -o-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: linear-gradient(135deg, #9b0d2078, #9b0d20);
}

.os-host .os-scrollbar .os-scrollbar-track .os-scrollbar-handle {
    background: -webkit-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: -o-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: linear-gradient(135deg, #9b0d2078, #9b0d20);
}

.section-title span {
    color: #9b0d20 !important;
}

.faq .faq-content .faq-box .single-card .faq-header .icon {
    background: -webkit-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: -o-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: linear-gradient(135deg, #9b0d2078, #9b0d20);
}

.gallery .gallery-content .single-img {
    border: 1px dashed #9b0d20;
    margin-bottom: 21px;
}

.gallery .gallery-content .single-img .part-img {
    padding: 15px;
}

.section-title {
    margin-bottom: 40px;
}

.about .about-content,
.gallery .gallery-content {
    padding: 60px 0;
}

.about .fun-fact,
.modal-content .modal-header button {
    background: -webkit-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: -o-linear-gradient(315deg, #9b0d2078, #9b0d20);
    background: linear-gradient(135deg, #9b0d2078, #9b0d20);
}

.social-links {
    text-align: center;
}

.social-links a {
    background-color: #b95663;
    color: #fff;
    padding: 26px 43px;
    border-radius: 13px;
    margin-bottom: 3px;
    font-size: 34px;
}

.social-links a:hover {
    background-color: #000;
}

.banner .copyright p {
    text-align: center;
}

.banner .main-social {
    padding-bottom: 15px;
}

.banner .main-social a {
    width: 35px;
    height: 35px;
    background: #9b0d20 !important;
    box-shadow: none !important;
    border-radius: 4px;
    padding-top: 4px;
}

.def-btn {
    border-radius: 8px;
    background: #fff !important;
    border: 1px solid #9b0d20 !important;
    color: #9b0d20 !important;
}

.def-btn:hover {
    border-radius: 8px;
    background: #9b0d20 !important;
    border: 1px solid #fff !important;
    color: #fff !important;
}

.def-btn::after {
    border-radius: 8px;
}

.banner .banner-txt .btn-box a:nth-child(2)::after {
    background-color: transparent;
}

.banner:after {
    background: #eee;
}

.banner:after {
    opacity: 0.895;
}

.header {
    background: #f7f7fb;
}

.banner .nav-wrap .nav-grid .single-item a {
    box-shadow: none !important;
}

.banner .nav-wrap .nav-grid .single-item {
    background: #9b0d20 !important;
    border: 1px solid #d5d5d9 !important;
    box-shadow: none !important;
}

.banner .nav-wrap .nav-grid {
    box-shadow: none;
}

.banner .nav-wrap .nav-grid::after {
    background: none !important;
}

.header {
    background: transparent;
    box-shadow: none !important;
}

.blog .blog-content .single-blog .part-txt h3:hover a,
.blog .blog-content .single-blog .part-txt ul li:nth-child(odd) span,
.blog .blog-content .single-blog .part-txt ul li a {
    color: #9b0d20;
}

.header .nav-btn a {
    background: #9b0d20 !important;
}


.section-title::before {
    background: -webkit-linear-gradient(315deg, #9b0d20, #9b0d20);
    background: -o-linear-gradient(315deg, #9b0d20, #9b0d20);
    background: linear-gradient(135deg, #9b0d20, #943847);
    height: 3px;
}

.os-host .os-scrollbar .os-scrollbar-track .os-scrollbar-handle {
    background: -webkit-linear-gradient(315deg, #9b0d20, #9b0d20) !important;
    background: -o-linear-gradient(315deg, #9b0d20, #9b0d20) !important;
    background: linear-gradient(135deg, #9b0d20, #9b0d20) !important;
}

.panel-close-btn,
.about .fun-fact,
.modal-content .modal-header button {
    border-radius: 4px !important;
    box-shadow: none;
    top: 17px;
    background: transparent;
}

.panel-close-btn i,
.about .fun-fact i,
.modal-content .modal-header button i {
    color: #b95663;
    font-size: 30px;
    font-weight: bold;
}

.faq .faq-content::after {
    display: none;
}

.banner .nav-wrap .nav-grid .single-item {
    border: 4px solid #bcbcbc !important;
    border-radius: 50% !important;
}


.about_download_btn::after {
    display: none;
}

@media (max-width: 767px) {
    .banner:after {
        opacity: 0.491;
    }
}

.about_desc,
.blog-details .part-txt h2 {
    line-height: 22px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #000;
}

.blog-detail p{
    text-align: left !important;
}

.about_desc {
    border-bottom: none;
}

.section-title {
    font-size: 32px;
}

.blog .blog-content .single-blog .part-txt h3 {
    font-size: 13px;
    line-height: 22px;
}

.lb-nav a.lb-next,
.lb-nav a.lb-prev {
    opacity: 1 !important;
}

.modal-content .modal-header {
    background: #b95663;
}

.modal-content .modal-header h5,
.modal-content .modal-header button i {
    color: #fff;
}

.blog-details .part-img {
    max-height: 900px !important;
}

.blog .blog-content .single-blog {
    margin-bottom: 15px;
}

.title {
    font-size: 30px;
    line-height: 30px;
}

@media screen and (max-width: 767px) {
    .title {
        font-size: 19px;
        line-height: 30px;
    }

    .banner .nav-wrap .nav-grid .single-item a .icon {
        font-size: 11px;
    }
}
