* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    --bodycolor: #f8f8f8;
    --navcolor: #dfe6e9;
    --white: #fff;
    --mainblack: #222;
    --black: #141414;
    --firstcolordark: #0aa760;
    --firstcolor: #00A693;
    --secondcolor: #f1f4f5;
    --thirdcolor: #dc143c;
    --fontcolor1: #282828;
    --fontcolor2: #676767;
    --fontcolor3: #a2a2a2;
    --shadowlight: #dddddd;
    --shadowdark: #b3b3b3;
    --theme1: #111827;
    --theme2: #3A4764;
    --theme3: #404B61;
    --theme4: #687b9f;
    --themeshadow1: #4e73bd;
    --themeshadow2: #6587cd;
    --themeshadow3: #91aee7;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bodycolor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    min-height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: var(--theme2);
}

/* ------------------------ */
/* ----- START NAVBAR ----- */
.navbar {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 100;
}

.navbar.navbar-down {
    transform: translateY(-100%);
    transition: transform .3s;
    position: fixed;
    background-color: #ffffff80;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px #dde0f0;
    transform: translateY(0);
}

.navbar-back {
    width: 100%;
    max-width: 1480px;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    position: relative;
}

.navbar.navbar-down .navbar-back {
    padding: 5px 30px 5px 10px;
}

.navbar.navbar-down #navbar-ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 860px;
}

.navbar-top-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    box-shadow: 0 0 100px 100px #1b1b1b90;
    z-index: 0;
}

.navbar.navbar-down .navbar-top-shadow {
    display: none;
}

.navbar-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.navbar-down .navbar-logo {
    width: 70px;
    height: 70px;
}

.navbar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding-top: 40px;
}
.navbar-down .navbar-logo img{
    padding: 0;
}

.navbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-links-phone {
    display: none;
}

.navbar-links-back {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-links-back ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.navbar-links-back ul li {
    list-style: none;
}

.navbar-links-back ul li a {
    font-family: vazir-black;
    font-size: 15.5px;
    color: var(--white);
    padding: 10px 10px;
    cursor: pointer;
}

.navbar.navbar-down .navbar-links-back ul li a {
    color: var(--fontcolor2);

}

#navbar-side-bar {
    display: none;
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    margin-left: 20px;
}

#navbar-side-bar ul {
    flex-direction: row;

}

#navbar-side-bar ul li {
    flex-direction: column;
}

#navbar-side-bar ul li p {
    position: absolute;
    transform: translateY(200%);
    opacity: 0;
    visibility: hidden;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0s, transform .3s;
}

.navbar.navbar-down #navbar-side-bar {
    display: flex;
}

#navbar-side-bar ul li p::before {
    transform: rotate(45deg) translateX(-50%);
    position: absolute;
    top: 0px;
    left: 50%;
    background-color: var(--themeshadow2);
    box-shadow: 0 0 10px var(--themeshadow2);
}

#navbar-side-bar ul li a {
    color: var(--theme4);
    background-color: var(--navcolor);
    box-shadow: 0 0 10px var(--navcolor);
}

#navbar-side-bar ul li:nth-child(2) a {
    color: var(--theme4);
}

#navbar-side-bar ul li a:hover~p {
    transform: translateY(135%);
    opacity: 1;
    visibility: visible;
    background-color: var(--themeshadow2);
    box-shadow: var(--themeshadow1);
}

#navbar-ul li {
    position: relative;

}

#navbar-ul li .navbar-ul-div {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    padding-top: 10px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, transform .3s;
}

#navbar-ul li:hover .navbar-ul-div {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;

}

#navbar-ul li .navbar-ul-div div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px 1px #00000020;
    padding: 7px;
}

#navbar-ul li .navbar-ul-div div a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border-radius: 10px;
    padding: 15px 20px;
    gap: 10px;
    color: var(--fontcolor2);
    font-size: 15px;
    transition: .3s;
}

#navbar-ul li .navbar-ul-div div a:hover {
    background-color: var(--themeshadow3);
    color: var(--white);
    gap: 20px;
}

#navbar-ul li .navbar-ul-div div a:hover i {
    color: var(--white);
    text-shadow: 0 0 10px var(--white);
}

#navbar-ul li .navbar-ul-div div a i {
    padding-bottom: 2px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme4);
    transition: .3s;
}

/* --- Nav Mobile --- */
.navbar-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
}

.navbar-mobile-btn-back {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.navbar-mobile-btn-back div {
    width: 40px;
    height: 6px;
    border-radius: 10px;
    background-color: var(--firstcolor);
    box-shadow: 0 0 0 1px var(--shadowlight);
}

.navbar-mobile-btn-back div:nth-child(2) {
    width: 24px;
    background-color: var(--secondcolor);
}

.navbar-mobile-btn-back div:nth-child(3) {
    background-color: var(--thirdcolor);
    width: 32px;
}

.navbar-mobile-back {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    transition: .3s;
}

.navbar-mobile-back.open-menu {
    opacity: 1;
    visibility: visible;
}

.navbar-mobile-background {
    background-color: #00000075;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    opacity: 0;
    transition: .3s;
}

.open-menu.navbar-mobile-back .navbar-mobile-background {
    opacity: 1;
}

.navbar-mobile-div {
    width: 90%;
    max-width: 350px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    background-color: var(--bodycolor);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    transform: translateX(350px);
    transition: .3s;
}

.open-menu.navbar-mobile-back .navbar-mobile-div {
    transform: translateX(0);
}

.navbar-mobile-div::-webkit-scrollbar-thumb {
    border-radius: 0 0 5px 5px;
    background-color: var(--theme4);
}

.navbar-mobile-div::-webkit-scrollbar {
    width: 7px;
    height: 5px;
}

.navbar-mobile-title {
    width: 95%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px #c3cce4;
    position: relative;
    margin-top: 10px;
    border-radius: 30px;
}

.navbar-mobile-title a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    font-family: vazir-black;
    font-size: 30px;
    background: linear-gradient(130deg, var(--theme4), var(--themeshadow3));
    animation: animated-gradient 3s linear infinite;
    background-size: 150% 150%;
    color: var(--white);
    text-shadow: 0 0 10px var(--theme4),
        0 0 15px var(--themeshadow3),
        0 0 20px var(--white);
    border-radius: 30px;
}

.navbar-mobile-title i {
    width: 50px;
    height: 50px;
    border-radius: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff75;
    font-size: 19px;
    color: var(--fontcolor2);
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    padding-bottom: 1px;
}

.navbar-mobile-div ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.navbar-mobile-div ul li {
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #00000010;
    padding: 5px;
}

.navbar-mobile-div ul li a {
    font-family: vazir-light;
    width: 100%;
    height: 100%;
    /* background-color: var(--white); */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 30px;
    font-size: 16px;
    color: var(--fontcolor2);
    border-radius: 15px;
    transition: .3s;
    gap: 30px;
}

.navbar-mobile-div ul li a i {
    font-size: 21px;
    color: var(--theme4);
    width: 10px;
    padding-bottom: 4px;
}

.navbar-mobile-div ul li a:hover {
    background-color: #98b2e040;
    padding-right: 30px;
    gap: 40px;
}

.navbar-mobile-footer {
    width: 100%;
    margin: 10px 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.navbar-mobile-footer a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #687b9f20;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--themeshadow3);
    font-size: 20px;
}





/* ---notif--- */

.notif-back {
    width: 95%;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateY(-200px) translateX(-50%);
    max-width: 350px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px solid #91aee790; */
    z-index: 200;
    box-shadow: 0 10px 20px 5px #00000030;
    overflow: hidden;
    animation: notif-animation 8s ease-in-out;
    backdrop-filter: blur(8px);
    background-color: #687b9f90;
    opacity: 0;
}

.notif-back::before {
    content: '';
    position: fixed;
    top: -7px;
    width: 15px;
    height: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 2px;
    transform: rotate(45deg);
    display: none;
    overflow: hidden;
}

.notif-div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    border-radius: 15px;
    z-index: 1;
    overflow: hidden;
}

.notif-back p {
    font-family: vazir-black;
    font-size: 15px;
    color: var(--white);
    text-shadow: 0 0 20px var(--white);
    text-align: justify;
    line-height: 30px;
}

.notif-back span {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--theme4);
    box-shadow: 0 0 20px var(--theme4);
    opacity: 1;
    z-index: -1;
    animation: notif-animation-span 8s ease-in-out;
}

@keyframes notif-animation {
    0% {
        opacity: 0;
        transform: translateY(-200px) translateX(-50%);
    }

    10% {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }

    90% {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }

    100% {
        opacity: 0;
        transform: translateY(-200px) translateX(-50%);
    }
}

@keyframes notif-animation-span {
    0% {
        width: 0;
    }

    90% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}



















/* ---------------------- */
/* ----- START HOME ----- */
#home {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-background,
.home-background-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 103%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.home-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-background-color {
    z-index: 0;
    /* background-color: rgba(34, 34, 34, 0.314); */
    /* backdrop-filter: blur(5px); */
}

.home-back {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
    padding: 0 100px;
}

.home-form-back {
    max-width: 340px;
    width: 100%;
    padding: 50px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: #ffffff;
    /* backdrop-filter: blur(5px); */
    border-radius: 30px;
    /* box-shadow: 0 0 0 7px var(--themeshadow3); */
    border: 10px solid #eaecf5;
    position: relative;
}

.home-form-back.home-form-back-closed {
    display: none;
}

#home-form-back-close {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    transition: .3s;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eaecf5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fontcolor2);
}

#home-form-back-close:hover {
    color: var(--fontcolor1);
}

.home-form-back h2 {
    font-family: vazir-black;
    font-size: 17px;
    color: var(--fontcolor1);
}

.home-form-back form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-form-back form div {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 280px;
    width: 100%;
}

.home-form-back form div i {
    position: absolute;
    top: 50%;
    left: 15px;
    font-size: 20px;
    transform: translateY(-55%);
    color: var(--themeshadow3);
}

.home-form-back form input {
    width: 100%;
    max-width: 280px;
    font-family: vazir-regular;
    font-size: 14px;
    border: none;
    color: var(--fontcolor1);
    padding: 17px 15px 17px 42px;
    border-radius: 15px;
    outline: none;
    transition: .3s;
    background-color: #eaecf570;
    /* backdrop-filter: blur(6px); */
    /* border: 2px solid #ffffff; */
}

.home-form-back form input:focus {
    background-color: #eaecf5;
    box-shadow: 0 10px 10px #d5d9eb;
    /* transform: translateY(-5px); */
}

.home-form-back form button {
    padding: 20px;
    width: 100%;
    font-family: vazir-black;
    font-size: 16px;
    color: var(--themeshadow2);
    background-color: #eaecf5;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: .3s;
    margin-top: 10px;
}

.home-form-back form button i {
    transform: translateY(2px);
    font-size: 16px;
    color: var(--themeshadow3);
    margin-right: 2px;
}

.home-form-back form button:hover {
    box-shadow: 0 10px 15px #eaecf5;
    background-color: #d3d8f0;
    transform: translateY(-5px);
    color: var(--theme4);
}

.home-form-back #home_rule_check_id{
    display: none;
}
.home-form-back div #home_rule_check_id~label{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
    cursor: pointer;
}
.home-form-back div label .home-check-back-icon{
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 1px solid #00000040;
    border-radius: 6px;
    margin-left: 5px;
    margin-right: 10px;
    transition: .3s;
}
.home-form-back div label .home-check-back-icon i{
    font-size: 11px;
    position: relative;
    left: unset;
    top: unset;
    margin: 0;
    padding: 0;
    transform: translate(0);
    color: var(--white);
    display: none;
}
.home-form-back div #home_rule_check_id~label a{
    color: var(--themeshadow1);
    text-decoration: underline;
    cursor: pointer;
}
.home-form-back div #home_rule_check_id:checked~label .home-check-back-icon{
    background-color: var(--themeshadow1);
    animation: anime_home_form_check_rule 1s ease-in-out;
    box-shadow: 0 0px 15px #4e73bd70;
}
.home-form-back div #home_rule_check_id:checked~label i{
    display: block;
}
@keyframes anime_home_form_check_rule {
    0%{
        transform: scale(1);
    }40%{
        transform: scale(1.4);
    }80%{
        transform: scale(1.4) rotate(360deg);
    }100%{
        transform: scale(1) rotate(360deg);
    }
}




#home-rule-page-back{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
#home-rule-page-back.home-rule-page-back-open{
    display: flex;
}
.home-rule-page-div{
    width: 90%;
    max-height: 80vh;
    max-width: 500px;
    background-color: var(--white);
    border-radius: 20px;
    padding: 20px 30px;
    z-index: 1;
    overflow: hidden;
    overflow-y: auto;
}
.home-rule-page-div-top i{
    color: var(--fontcolor2);
    cursor: pointer;
}
#home-rule-page-div-close{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
    background-color: #00000070;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: .3s;
}
#home-rule-page-back.home-rule-page-back-open #home-rule-page-div-close{
    opacity: 1;
}
.home-rule-page-div-text{
    margin-top: 10px;
    width: 100%;
    max-height: 100%;
    font-size: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
}
#home-rule-page-back .home-rule-page-div-text h1,
#home-rule-page-back .home-rule-page-div-text h2,
#home-rule-page-back .home-rule-page-div-text h3,
#home-rule-page-back .home-rule-page-div-text h4,
#home-rule-page-back .home-rule-page-div-text h5,
#home-rule-page-back .home-rule-page-div-text h6{
    font-family: vazir-black;
    font-size: 20px;
    color: var(--fontcolor1);
    margin-bottom: 10px;
}
#home-rule-page-back .home-rule-page-div-text p,
#home-rule-page-back .home-rule-page-div-text span{
    font-size: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
}













.home-side-bar {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}

.home-side-bar ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.home-side-bar ul li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.home-side-bar ul li a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: var(--white);
}

.home-side-bar ul li:nth-child(1) a {
    background-color: var(--firstcolor);
    box-shadow: 0 0 10px 1px var(--firstcolor);
}

.home-side-bar ul li:nth-child(2) a {
    background-color: var(--secondcolor);
    box-shadow: 0 0 10px 1px var(--secondcolor);
    color: var(--fontcolor2);
}

.home-side-bar ul li:nth-child(3) a {
    background-color: var(--thirdcolor);
    box-shadow: 0 0 10px 1px var(--thirdcolor);
}

.home-side-bar ul li p {
    font-family: vazir-black;
    font-size: 14px;
    padding: 12px 15px;
    border-radius: 12px;
    cursor: default;
    background-color: var(--firstcolor);
    position: relative;
    color: var(--white);
    transition: .3s;
    transform: translateX(-20px);
    opacity: 0;
    visibility: hidden;
}

.home-side-bar ul li p::before {
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 2px;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    left: -12px;
    top: 48%;
    background-color: var(--firstcolor);
}

.home-side-bar ul li a:hover~p {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.home-side-bar ul li:nth-child(1) p {
    background-color: var(--firstcolor);
    box-shadow: 0 0 10px 1px var(--firstcolor);
}

.home-side-bar ul li:nth-child(2) p {
    background-color: var(--secondcolor);
    box-shadow: 0 0 10px 1px var(--secondcolor);
    color: var(--fontcolor2);
}

.home-side-bar ul li:nth-child(3) p {
    background-color: var(--thirdcolor);
    box-shadow: 0 0 10px 1px var(--thirdcolor);
}

.home-side-bar ul li:nth-child(1) p::before {
    background-color: var(--firstcolor);
    box-shadow: 0 0 10px 1px var(--firstcolor);
}

.home-side-bar ul li:nth-child(2) p::before {
    background-color: var(--secondcolor);
    box-shadow: 0 0 10px 1px var(--secondcolor);
    color: var(--fontcolor2);
}

.home-side-bar ul li:nth-child(3) p::before {
    background-color: var(--thirdcolor);
    box-shadow: 0 0 10px 1px var(--thirdcolor);
}

.home-slider-back {
    width: 90%;
    max-width: 900px;
    height: 90vh;
    max-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
}

.home-slider-content,
.home-slider-content a {
    width: 100%;
    height: 100%;
}

.home-slider-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px;
    box-shadow: 0 7px 20px 1px #00000050;
    box-shadow: 0 0 0 5px var(--theme4);
    background-color: var(--white);
}

.home-slider-back label {
    font-size: 22px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--white);
    cursor: pointer;
    color: var(--fontcolor1);
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition: .3s;
}

.home-slider-back label:hover {
    box-shadow: 0 0 0 5px var(--thirdcolor);
    color: crimson;
}

.home-slider-back input {
    display: none;
}

.home-slider-back input:checked~.home-slider-content {
    display: none;
}

.home-slider-back input:checked~label {
    transform: rotate(45deg);
    color: var(--firstcolor);
    box-shadow: 0 0 0 5px var(--firstcolor);
}


.home-side-bar.home-side-bar-social {
    top: unset;
    bottom: 40px;
    transform: translate(0);
}

.home-side-bar.home-side-bar-social ul {
    flex-direction: row;
}

.home-side-bar.home-side-bar-social ul li:nth-child(1) a,
.home-side-bar.home-side-bar-social ul li:nth-child(2) a,
.home-side-bar.home-side-bar-social ul li:nth-child(3) a {
    background-color: #eaecf5;
    color: var(--themeshadow1);
    box-shadow: none;
}

.home-side-bar.home-side-bar-social ul li:nth-child(1) p,
.home-side-bar.home-side-bar-social ul li:nth-child(2) p,
.home-side-bar.home-side-bar-social ul li:nth-child(3) p {
    background-color: #eaecf5;
    color: var(--themeshadow1);
    box-shadow: none;
}

.home-side-bar.home-side-bar-social ul li:nth-child(1) p::before .home-side-bar.home-side-bar-social ul li:nth-child(2) p::before .home-side-bar.home-side-bar-social ul li:nth-child(3) p::before {
    background-color: #eaecf5;
    color: var(--themeshadow1);
    box-shadow: none;
    border-radius: 5px;
}


.home-side-bar.home-side-bar-social-right {
    top: unset;
    bottom: 40px;
    left: unset;
    right: 40px;
    transform: translate(0);
}

.home-side-bar.home-side-bar-social-right ul {
    flex-direction: row;
}


.home-side-bar.home-side-bar-social-right ul li:nth-child(1) a,
.home-side-bar.home-side-bar-social-right ul li:nth-child(2) a,
.home-side-bar.home-side-bar-social-right ul li:nth-child(3) a {
    background-color: #eaecf5;
    color: var(--themeshadow1);
    box-shadow: none;
}

.home-side-bar.home-side-bar-social-right ul li:nth-child(1) p,
.home-side-bar.home-side-bar-social-right ul li:nth-child(2) p,
.home-side-bar.home-side-bar-social-right ul li:nth-child(3) p {
    background-color: #eaecf5;
    color: var(--themeshadow1);
    box-shadow: none;
}

.home-side-bar.home-side-bar-social-right ul li:nth-child(1) p::before .home-side-bar.home-side-bar-social-right ul li:nth-child(2) p::before .home-side-bar.home-side-bar-social-right ul li:nth-child(3) p::before {
    background-color: #eaecf5;
    color: var(--themeshadow1);
    box-shadow: none;
    border-radius: 5px;
}



#home-side-bar-social-mid.home-side-bar ul li a {
    width: 65px;
    height: 65px;
    font-size: 32px;
}

#home-side-bar-social-big.home-side-bar ul li a {
    width: 80px;
    height: 80px;
    font-size: 44px;
    overflow: hidden;
}

#home-side-bar-social-phone-open {
    margin: 0 20px;
    display: none;
}
#home-profile-link-img-a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
/* scroll down animation */
.home-scroll-down-a {
    text-decoration: none;
    cursor: pointer;
    z-index: 1;
}
#navbar-side-bar.home-side-bar ul li a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(1.7);
}
.home-scroll-down {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    /* margin-left: 20px; */
    cursor: pointer;
}

.home-scroll-down p {
    font-family: vazir-black;
    font-size: 19px;
    color: var(--secondcolor);
}

.home-scroll-down-animation {
    width: 30px;
    height: 40px;
    position: relative;

    margin-bottom: 13px;
}

.home-scroll-down-animation::before,
.home-scroll-down-animation::after {
    content: "";
    position: absolute;
    top: 15%;
    left: 50%;
    border: 3px solid var(--secondcolor);
    height: 10px;
    width: 10px;
    transform: translate(-50%, -50%) rotate(45deg);
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 1.2s ease-in-out infinite;
}

.home-scroll-down-animation::after {
    top: 30%;
    animation-delay: 0.30s;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 90%;
    }
}

.upsite-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 10px solid var(--themeshadow3);
    background-color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--themeshadow3);
    z-index: 99;
    box-shadow: 0 0 20px var(--themeshadow3);
    transition: .3s;
}

/* ---------- home donate ---------- */
.home-donate {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin-top: 0px;
    z-index: 1;
    margin-bottom: 100px;
}

.home-donate-back {
    width: 95%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 30px;
    background-color: #ffffff;
    /* backdrop-filter: blur(8px); */
    box-shadow: 0 10px 20px #bfc8e9;
    padding: 20px;
    margin-top: -50px;
    gap: 20px;
    border: 10px solid #eaecf5;
}

.home-donate-title h1 {
    font-family: vazir-black;
    font-size: 20px;
    color: var(--fontcolor1);
    padding: 10px 0 5px 0;
}

.home-donate-content {
    width: 100%;
}

.home-donate-content form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
}

.home-donate-content form div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-donate-content form button {
    border: none;
    width: 100%;
    padding: 20px 0;
    border-radius: 15px;
    font-family: vazir-black;
    font-size: 15px;
    background-color: #eaecf5;
    color: var(--themeshadow1);
    cursor: pointer;
    position: relative;
    transition: .3s;
}

.home-donate-content form button i,
.home-donate-content form button span {
    color: var(--themeshadow3);
    font-size: 14px;
}

.home-donate-content form button:hover {
    box-shadow: 0 8px 10px #e8ebf7;
    background-color: #d4d9ef;
}

/* ---------- home text1 ---------- */
.home-text1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-bottom: 100px;
}

.home-text1-back {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1300px;
}

.home-text1-back .home-text1-img {
    width: 45%;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 0 0 10px var(--themeshadow3);
    overflow: hidden;
}

.home-text1-back .home-text1-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-text1-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-text2 .home-text1-back {
    gap: 20px;
}

.home-text1-back .home-text1-content {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.home-text1.home-text2 .home-text1-back {
    align-items: flex-start;
}

.home-text1.home-text2 .home-text1-content.home-text1-content-ad {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    background-color: var(--white);
    border: 10px solid #eaecf5;
    box-shadow: 0 10px 20px #bfc8e9;
    background-color: #eaecf5;
    border-radius: 30px;
    padding: 0px;
    gap: 10px;
}

.home-text1-content-ad-title {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eaecf5;

}

.home-text1-content-ad-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border-radius: 20px;
    background-color: transparent;
    width: 100%;
}

.home-text1-content-ad-content a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px dashed var(--fontcolor3);
    padding: 15px 10px 20px 10px;
    border-radius: 20px;
}

.text1-content-ad-content-div {
    width: 100%;
}

.home-text1-content-ad-content a img {
    width: 120px;
    object-fit: contain;
    border-radius: 15px;
}

.home-text1-content-ad-content a h3 {
    font-family: vazir-black;
    font-size: 15px;
    color: var(--fontcolor1);
}

.home-text1-back .home-text1-content h1 {
    font-family: vazir-black;
    font-size: 30px;
    color: var(--white);
    text-shadow: 0 0 10px var(--themeshadow1),
        0 0 20px var(--themeshadow2),
        0 0 30px var(--themeshadow3);
}

.home-text1-back .home-text1-content .home-text1-content-ad-title h1 {
    font-size: 18px;
    padding: 15px 0;
}

.home-text1-back .home-text1-content p {
    font-family: vazir-light;
    font-size: 16px;
    color: var(--fontcolor2);
    text-align: justify;
    line-height: 30px;
}

.home-text1-back .home-text1-content .home-text1-content-ad-content a p {
    font-family: vazir-light;
    font-size: 13px;
    color: var(--fontcolor3);
}


/* ---------- home text2 ---------- */
.home-text1-back.home-text2-back {
    max-width: 1300px;
    padding: 0;
    background-color: transparent;
    margin: 0;
    padding: 50px 0;
}

.home-text1.home-text2 {
    padding: 0;
}

.home-text1.home-text2 .home-text1-img {
    width: 70%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 10px 20px #bfc8e9;
    border: 15px solid #eaecf5;
    background-color: #eaecf5;
    /* padding: 20px; */
    overflow: hidden;
}

.home-text1.home-text2 .home-text1-img video {
    object-fit: contain;
    border-radius: 25px;
}

.home-text1.home-text2 .home-text1-img h1 {
    font-family: vazir-black;
    color: var(--fontcolor1);
    font-size: 20px;
    padding: 10px 30px 10px 0;
}

.home-text1.home-text2 .home-text1-img p {
    font-family: vazir-light;
    color: var(--fontcolor3);
    font-size: 15px;
    padding: 0 30px 10px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-text1.home-text2 .home-text1-img a {
    font-family: vazir-black;
    color: var(--themeshadow3);
    font-size: 15px;
    padding: 0 30px 3px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-text1.home-text2 .home-text1-content {
    padding: 0 30px;
}


/* ---------- home home-search ---------- */
.home-search {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 300px; */
    /* background-color: var(--theme4); */
    margin-top: -100px;
    padding: 50px 0;
    margin-bottom: 50px;
    /* box-shadow: 0 0 0 5px var(--themeshadow3); */
}

.home-search-back {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.home-search-back form {
    width: 95%;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-direction: column;
}

.home-search-back form h1 {
    font-family: vazir-black;
    font-size: 30px;
    color: var(--white);
    text-shadow: 0 0 10px var(--themeshadow1),
        0 0 20px var(--themeshadow2),
        0 0 30px var(--themeshadow3);
}

.home-search-back form div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    height: 80px;
    padding: 20px;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 10px 15px #e0e5f3;
}

.home-search-back form i {
    font-size: 20px;
    padding: 0 15px;
    /* background-color: #f1f1f1; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--themeshadow3);
}

.home-search-back form input {
    height: 100%;
    border: none;
    padding: 0 0 0 10px;
    font-size: 15px;
    outline: none;
    width: 100%;
    color: var(--fontcolor2);
    font-family: vazir-light;
}

.home-search-back form button {
    width: 50px;
    height: 50px;
    border: none;
    transition: .4s;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--themeshadow3);
    color: var(--white);
    text-shadow: 0 0 10px var(--white);
    transition: .3s;
}

.home-search-back form button i {
    color: var(--white);
}

.home-search-back form button:hover {
    box-shadow: 0 0 20px 2px var(--themeshadow3);
}

.home-search-back form button:hover i {
    padding: 0 20px;
}



.home-search-store-back {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    padding: 10px;
    border-radius: 100px;
    background-color: var(--white);
    box-shadow: 0 10px 15px #e0e5f3;
    margin-top: 10px;
    max-width: 700px;
    overflow-x: auto;
}

.home-store-search-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.store-search-content-div {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 8px;
    background-color: var(--white);
    box-shadow: 0 10px 15px 5px #e0e5f3;
    transition: .3s;
}

.store-search-content-div:hover {
    box-shadow: 0 15px 20px #b8c3e1;
    background-color: var(--white);
    transform: scale(1.05) translateY(-10px);
}

.store-search-content-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.home-store-search-link a {
    font-family: vazir-black;
    font-size: 14px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme4);
    /* background-color: #ced7f0; */
    border-radius: 100px;
}



/* ---------- home text3 ---------- */
.home-text1.home-text3 .home-text1-img {
    width: 45%;
    height: 300px;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.home-text1.home-text3 .home-text3-img-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    /* overflow: hidden; */
}

.home-text1.home-text3 .home-text3-img-list a {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: vazir-black;
    color: var(--white);
    text-shadow: 0 0 20px var(--white);
    transition: .3s;
    font-size: 20px;
}

.home-text1.home-text3 .home-text3-img-list a:nth-child(1) {
    background-color: var(--firstcolor);
    border-radius: 30px 30px 0 0;
}

.home-text1.home-text3 .home-text3-img-list a:nth-child(2) {
    background-color: var(--secondcolor);
    color: var(--fontcolor2);
    text-shadow: 0 0 20px var(--themeshadow3);
}

.home-text1.home-text3 .home-text3-img-list a:nth-child(3) {
    background-color: var(--thirdcolor);
    border-radius: 0 0 30px 30px;
}

.home-text1.home-text3 .home-text3-img-list a:hover {
    /* width: 105%; */
    /* transform: translateY(-20px); */
    /* padding: 0 0 10px 0; */
    box-shadow: 0 0 30px var(--firstcolor);
    z-index: 1;
}

.home-text1.home-text3 .home-text3-img-list a:nth-child(1):hover {
    box-shadow: 0 0 30px var(--firstcolor);
}

.home-text1.home-text3 .home-text3-img-list a:nth-child(2):hover {
    box-shadow: 0 0 30px var(--secondcolor);
}

.home-text1.home-text3 .home-text3-img-list a:nth-child(3):hover {
    box-shadow: 0 0 30px var(--thirdcolor);
}






.events-section#home-events-section {
    min-height: 0;
    margin: 0 0 100px 0;

}

.events-section#home-events-section .home-text1-content h1 {
    font-family: vazir-black;
    font-size: 30px;
    color: var(--white);
    text-shadow: 0 0 10px var(--themeshadow1),
        0 0 20px var(--themeshadow2),
        0 0 30px var(--themeshadow3);
    margin-bottom: -60px;
    z-index: 3;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.events-section#home-events-section .events-back-top {
    width: 90%;
    max-width: unset;
    /* border-radius: 0; */
    /* box-shadow: 0 20px 30px 10px #00000050; */
    border: 3px dashed var(--themeshadow1);
}

.events-section#home-events-section .events-top-img img {
    object-fit: cover;
}



/* -------------------------------- */
/* ---------- LOGIN PAGE ---------- */

.login-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
}

.login-back {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

/* .login-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.login-title a {
    font-family: vazir-regular;
    color: var(--theme4);
    font-size: 30px;
}

.login-title p {
    font-family: vazir-black;
    color: var(--theme3);
    font-size: 15px;
} */

.login-form-back {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-back form {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-form-back form div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 15px 15px 10px;
    background-color: var(--theme4);
}

.login-form-back form div input {
    width: 100%;
    padding: 14px 15px;
    font-family: vazir-light;
    font-size: 14px;
    color: var(--fontcolor2);
    outline: none;
    border: none;
    border: 1px solid #00000020;
    border-radius: 10px 15px 15px 10px;
}

.login-form-back form div label {
    font-size: 17px;
    color: var(--white);
    /* text-shadow: 0 0 10px var(--white);s */
    padding: 10px 15px;
    cursor: pointer;
}

.login-form-back form button {
    font-family: vazir-black;
    font-size: 17px;
    border: none;
    background: linear-gradient(130deg, var(--theme4), var(--themeshadow3));
    padding: 13px 50px;
    border-radius: 15px;
    color: var(--white);
    cursor: pointer;
    transition: .3s;
    margin: 15px 0 0 5px;
}

.login-form-back form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--themeshadow3);
    text-shadow: 0 0 20px var(--white);
}

#login-form-link-signup {
    font-family: vazir-light;
    font-size: 15px;
    direction: rtl;
    color: var(--fontcolor3);
}

.login-img {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(130deg, var(--theme4), var(--themeshadow3));
    height: 100%;
    box-shadow: 0 0 50px 5px var(--themeshadow3);
    position: relative;
}

.login-img .login-img-text {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    max-width: 450px;
}

.login-img .login-img-text h1 {
    font-family: vazir-black;
    color: var(--white);
    /* text-shadow: 0 0 10px var(--white); */
    font-size: 35px;
}


.login-img .login-img-text a {
    font-family: vazir-black;
    color: #f0f3f9;
    text-shadow: 0 0 15px var(--white);
    font-size: 20px;
}

.login-img .login-img-text p {
    font-family: vazir-light;
    color: #e8e8e8;
    font-size: 17px;
    text-align: justify;
    line-height: 32px;
}

#login-img-title-a {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 120px;
    height: 120px;
}

#login-img-title-a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}








/* --------NEW LOGIN PAGE---------- */
.login-title {
    width: 100%;
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 5;
    transition: 2s;
    opacity: .8;
}

.login-title img {
    width: 100px;
}

.login-title.title-login-animation {
    top: 10px;
    right: 0;
    margin-right: -110px;
    transform: translateX(-100%);
}

.container {
    position: relative;
    width: 100%;
    background-color: var(--mainwhite);
    min-height: 100vh;
    overflow: hidden;
}

.container input {
    font-family: vazir-light;
}
.container h2{
    font-family: vazir-black;
}
.forms-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.signin-signup {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 75%;
    width: 50%;
    transition: 1s 0.7s ease-in-out;
    display: grid;
    grid-template-columns: 1fr;
    z-index: 5;
}

.container form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0rem 5rem;
    transition: all 0.2s 0.7s;
    overflow: hidden;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

form.sign-up-form {
    opacity: 0;
    z-index: 1;
}

form.sign-up-form #timer {
    font-family: vazir-light;
    font-size: 15px;
    color: #666666;
}

form.sign-up-form p{
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor3);
    cursor: default;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
    gap: 10px;
}
form.sign-up-form p span{
    font-family: vazir-black;
}
form.sign-up-form p:hover{
    color: var(--fontcolor2);
}
form.sign-up-form p:nth-child(3){
    margin-bottom: 20px;
}
form.sign-in-form {
    z-index: 2;
}

.title {
    font-size: 2.2rem;
    color: var(--theme2);
    margin-bottom: 10px;
    font-family: vazir-black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 350px;
}
.title span{
    font-size: 1.5rem;
    color: var(--theme4);
}
h3.title {
    font-size: 1.5rem;
    color: var(--theme4);
    margin-bottom: 20px;
    margin-top: -5px;
    font-family: vazir-black;
}

.input-field {
    max-width: 380px;
    width: 100%;
    background-color: #eaecf5;
    margin: 7px 0;
    height: 65px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
    overflow: hidden;
    font-size: 15px;
}

.input-field i {
    text-align: center;
    line-height: 65px;
    color: #acacac;
    color: var(--themeshadow3);
    transition: 0.5s;
    font-size: 19px;
}

.input-field input {
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    font-family: vazir-black;
    transition: .3s;
}
.input-field input:focus{
    color: var(--fontcolor1);
}
.input-field input::placeholder {
    color: #aaa;
    font-weight: 500;
}

.social-text {
    padding: 0.7rem 0;
    font-size: 16px;
    font-family: vazir-light;
    color: #949494;
}

.social-media {
    display: flex;
    justify-content: center;
}

.social-icon {
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0.45rem 15px 0.45rem;
    color: var(--secondcolor);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--themeshadow1);
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-icon:hover {
    color: var(--firstcolor);
}

.input-recaptcha {
    height: 30px;
}

.input-recaptcha .g-recaptcha {
    margin-bottom: 0;
}


.container .btn {
    width: 150px;
    background: linear-gradient(to top right, var(--themeshadow1), var(--themeshadow3));
    border: none;
    outline: none;
    height: 59px;
    border-radius: 17px;
    color: #fff;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.3s;
    font-size: 20px;
    font-family: vazir-black;
    transition: .3s;
}

.panels-container {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.container:before {
    content: "";
    position: absolute;
    height: 2000px;
    width: 2000px;
    top: -10%;
    right: 48%;
    transform: translateY(-50%);
    background-image: linear-gradient(-45deg, var(--theme4) 0%, var(--themeshadow3) 100%);
    transition: 1.8s ease-in-out;
    border-radius: 50%;
    z-index: 6;
}

.panels-container .image {
    width: 100%;
    transition: transform 1.1s ease-in-out;
    transition-delay: 0.4s;
}

.panels-container .panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    text-align: center;
    z-index: 6;
}

.left-panel {
    pointer-events: all;
    padding: 3rem 17% 2rem 12%;
}

.right-panel {
    pointer-events: none;
    padding: 3rem 12% 2rem 17%;
}

.panel .content {
    color: #fff;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.6s;
}

.panel h3 {
    font-weight: 600;
    line-height: 1;
    font-size: 1.5rem;
}

.panel p {
    font-size: 0.95rem;
    padding: 0.7rem 0;
}

.btn.transparent {
    margin: 0;
    background: none;
    border: 2px solid #fff;
    width: 130px;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
}

.right-panel .image,
.right-panel .content {
    transform: translateX(800px);
}

/* ANIMATION */

.container.sign-up-mode:before {
    transform: translate(100%, -50%);
    right: 52%;
}

.container.sign-up-mode .left-panel .image,
.container.sign-up-mode .left-panel .content {
    transform: translateX(-800px);
}

.container.sign-up-mode .signin-signup {
    left: 25%;
}

.signin-signup input[type="submit"] {
    width: 100%;
    max-width: 300px;
}

.container .g-recaptcha {
    position: unset;
    width: auto;
    border-radius: 0;
    margin-bottom: 0;
    cursor: pointer;
    z-index: 10;
    opacity: .8;
    transition: .3s;
    margin: 10px 0;
}

.container input::-webkit-outer-spin-button,
.container input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.container .g-recaptcha:hover {
    opacity: 1;
}

.container.sign-up-mode form.sign-up-form {
    opacity: 1;
    z-index: 2;
}

.container.sign-up-mode form.sign-in-form {
    opacity: 0;
    z-index: 1;
}

.container.sign-up-mode .right-panel .image,
.container.sign-up-mode .right-panel .content {
    transform: translateX(0%);
}

.container.sign-up-mode .left-panel {
    pointer-events: none;
}

.container.sign-up-mode .right-panel {
    pointer-events: all;
}

.panel .content {
    width: 100%;
    font-family: vazir-regular;
}

.panel .content h3 {
    font-size: 30px;
    font-family: vazir-extrabold;
}

.panel .content p {
    font-size: 19px;
    font-family: vazir-regular;
    color: #e0e0e0;
}

.panel .content button {
    font-size: 20px;
    font-family: vazir-light;
    width: 130px;
    height: 50px;
    border-radius: 15px;
    margin-top: 10px;
}


#login-forget-pass-a {
    font-family: vazir-light;
    font-size: 15px;
    color: var(--blue);
    direction: rtl;
}

#forget-password {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #00000020;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

#forget-password-close-back {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(8px);
}

.forget-password-back {
    width: 400px;
    height: auto;
    background-color: var(--white);
    border-radius: 20px;
    padding: 20px 30px;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

#forget-password-close-top {
    width: 10px;
    color: #393939;
}

.forget-password-back form {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.forget-password-back form div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
}

.forget-password-back form div input {
    width: 100%;
    height: 100%;
    font-family: vazir-light;
    color: #525252;
    padding: 12px 15px;
    outline: none;
    border: none;
    background-color: #00000010;
    font-size: 16px;
}

.forget-password-back form div input::-webkit-outer-spin-button,
.forget-password-back form div input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.forget-password-back form div input[type=number] {
    -moz-appearance: textfield;
}

.forget-password-back form div label {
    width: 54px;
    height: 49px;
    border-radius: 0 10px 10px 0;
    background-color: var(--firstcolor);
    color: var(--white);
    /* margin: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--firstcolor);
    cursor: pointer;
}

.forget-password-back form #g-recaptcha {
    margin: 0;
    border-radius: 0;
}

.forget-password-back form button {
    font-family: vazir-extrabold;
    border: none;
    border-radius: 15px;
    padding: 15px 0;
    width: 200px;
    cursor: pointer;
    color: var(--white);
    background-color: var(--firstcolor);
    font-size: 16px;
    margin: 0 auto;
}

#login-user-a.login-user-a-phone {
    display: none;
}

@media (max-width: 870px) {
    .container {
        min-height: 800px;
        height: 100vh;
    }

    .navbar {
        height: 77px;
    }

    .navbar-down {
        height: 77px;
    }

    .navbar-middle {
        padding: 15px 20px;
    }

    #navbar-middle-img {
        width: 140px;
    }

    .signin-signup {
        width: 100%;
        top: 95%;
        transform: translate(-50%, -100%);
        transition: 1s 0.8s ease-in-out;
    }

    #login-user-a.login-user-a-desktop {
        display: none;
    }

    #login-user-a.login-user-a-phone {
        display: flex;
    }

    .login-title img {
        width: 100px;
    }

    .login-title.title-login-animation {
        top: 10px;
        right: 0;
        margin-right: -120px;
        transform: translateX(-100%);
    }

    .signin-signup,
    .container.sign-up-mode .signin-signup {
        left: 50%;
    }

    .panels-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 2fr 1fr;
    }

    .panel {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 2.5rem 8%;
        grid-column: 1 / 2;
    }

    .right-panel {
        grid-row: 3 / 4;
    }

    .left-panel {
        grid-row: 1 / 2;
    }

    .image {
        width: 100px;
        transition: transform 0.9s ease-in-out;
        transition-delay: 0.6s;
        display: none;
    }

    .panel .content {
        padding-right: 15%;
        transition: transform 0.9s ease-in-out;
        transition-delay: 0.8s;
    }

    .panel h3 {
        font-size: 1.2rem;
    }

    .panel p {
        font-size: 0.7rem;
        padding: 0.5rem 0;
    }

    .btn.transparent {
        width: 110px;
        height: 35px;
        font-size: 0.7rem;
    }

    .container:before {
        width: 1500px;
        height: 1500px;
        transform: translateX(-50%);
        left: 30%;
        bottom: 68%;
        right: initial;
        top: initial;
        transition: 2s ease-in-out;
    }

    .container.sign-up-mode:before {
        transform: translate(-50%, 100%);
        bottom: 32%;
        right: initial;
    }

    .container.sign-up-mode .left-panel .image,
    .container.sign-up-mode .left-panel .content {
        transform: translateY(-300px);
    }

    .container.sign-up-mode .right-panel .image,
    .container.sign-up-mode .right-panel .content {
        transform: translateY(0px);
    }

    .right-panel .image,
    .right-panel .content {
        transform: translateY(300px);
    }

    .container.sign-up-mode .signin-signup {
        top: 5%;
        transform: translate(-50%, 0);
    }

    .categories-div .categorie {
        width: 150px;
        height: 150px;
    }

    .categorie-img {
        width: 120px;
        height: 120px;
    }

    .home-content-div {
        width: 95%;
    }
}

@media (max-width: 570px) {
    .container form {
        padding: 0 1.5rem;
    }

    .navbar-middle-search-form form {
        padding: 0;
    }

    #navbar-middle-img {
        width: 100px;
    }

    .login-title img {
        width: 70px;
        margin-top: -10px;
    }

    .login-title.title-login-animation {
        top: 10px;
        right: 0;
        margin-right: -90px;
        transform: translateX(-100%);
    }

    .login-title.title-login-animation img {
        margin-top: 0px;

    }

    .image {
        display: none;
    }

    .panel .content {
        padding: 0.5rem 1rem;
    }

    .container {
        padding: 1.5rem;
    }

    .container:before {
        bottom: 72%;
        left: 50%;
    }

    .container.sign-up-mode:before {
        bottom: 28%;
        left: 50%;
    }

    .about-us-services {
        width: 90%;
    }

    .banner-top-top-div {
        height: 162px;
    }

    .banner-top-bottom-div {
        height: 110px;
    }

    #banner2-top-back .banner-top-top-div img {
        border-radius: 0;
    }

    #banner2-top-back {
        width: 100%;
        border-radius: 0;
    }

    .container-amazing-title h2 {
        font-size: 20px;
    }

    .container-amazing-title {
        top: -49px;
    }

    #container-amazing-title-radius {
        height: 20px;
    }

    .container-amazing-title {
        text-shadow: 0 0 3px var(--white);
    }

    .store .back-store {
        padding: 0 10px;
        /* height: 300px; */
    }

    .product .img {
        height: 160px;
    }

    #store .back-store .store-filter-section {
        overflow-y: unset;
    }

    #store .back-store .store-filter-section .products-back .products .img {
        height: 150px;
    }

    #products-home {
        padding-top: 120px;
    }
}

/* END NEW LOGIN PAGE */


















/* ---------------------------------- */
/* ---------- PROFILE PAGE ---------- */

.profile-section {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 110px;
    margin-bottom: 100px;
}

.profile-back {
    width: 100%;
    max-width: 1480px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.profile-menu {
    width: 50%;
    max-width: 320px;
    background-color: var(--white);
    border-radius: 20px;
    /* box-shadow: 0 0 0 3px #ebebeb; */
    border: 2px solid #ebebeb;
}

.profile-menu ul {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 15px;

}

.profile-menu ul li {
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #ebebeb;
    padding: 2px;
}

.profile-menu ul li:nth-child(1) {
    flex-direction: row;
}

.profile-menu ul li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    border-radius: 15px;
    transition: .2s;
}

.profile-menu ul li a i.fa-caret-left {
    color: var(--fontcolor2);
    font-size: 19px;
    margin-right: auto;
    transition: .3s;
}

.profile-menu ul li a:hover {
    background-color: #00000010;
}

.profile-menu ul li a:hover p {
    /* color: var(--fontcolor1); */
    font-family: vazir-black;
    color: var(--theme4);
}

.profile-menu ul li a:hover i {
    color: var(--theme4);
}

.profile-menu ul li a img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--themeshadow3);
}

.profile-menu ul li a i {
    color: var(--theme4);
    font-size: 21px;
    width: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-menu ul li a p {
    font-family: vazir-light;
    color: var(--fontcolor2);
    font-size: 16px;
}

.profile-menu ul li:nth-child(1) a {
    padding: 15px 0;
    gap: 20px;
}

.profile-menu ul li:nth-child(1) a h2 {
    font-family: vazir-black;
    color: var(--theme3);
    font-size: 18px;
}

.profile-menu ul li:nth-child(1) a p {
    direction: ltr;
}

#profile-menu-list-edit {
    align-items: center;
    justify-content: center;
    width: 40px;
}

.profile-menu ul li:nth-child(1) a:hover {
    padding: 15px 0;
    gap: 20px;
    background-color: transparent;
}

.profile-menu-open-div {
    width: 95%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #00000010;
    border-radius: 20px;
    padding: 10px;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    height: 0;
    transition: .3s;
}

.profile-menu-open-div div {
    width: 100%;
}

.profile-menu ul li .profile-menu-open-div div a {
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
    padding: 15px 20px;
    gap: 20px;
}

.profile-menu ul li .profile-menu-open-div div a:hover {
    padding: 15px 35px 15px 0;
}

.profile-menu ul li .profile-menu-open-div div a i {
    font-size: 18px;
    color: var(--themeshadow3);
    padding-bottom: 4px;
}

.profile-menu ul li input {
    display: none;
}

.profile-menu ul li input:checked~.profile-menu-open-div {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    height: auto;
}

.profile-menu ul li label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 20px 20px;
    transition: .3s;
}

.profile-menu ul li label:hover {
    padding: 20px 35px 20px 20px;
}

.profile-menu ul li input:checked~a label .fa-caret-left {
    transform: rotate(-90deg);
}











.proflie-navbar.profile-dashboard-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
}

.proflie-navbar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.proflie-navbar ul li {
    list-style: none;
    position: relative;
}

.proflie-navbar ul li a {
    font-size: 17px;
    color: var(--fontcolor1);
    font-family: vazir-regular;
}

.proflie-navbar ul li p {
    font-size: 20px;
    color: var(--white);
    background-color: var(--theme4);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proflie-navbar ul li div {
    position: absolute;
    width: 250px;
    top: 50px;
    left: -20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff30;
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 10px;
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s;
    box-shadow: 0 5px 10px #00000030;
    z-index: 10;
}

.proflie-navbar ul li p:hover~div {
    opacity: 1;
    visibility: visible;
    /* display: flex; */
}

.proflie-navbar ul li div:hover {
    opacity: 1;
    visibility: visible;
    /* display: flex; */
}

.proflie-navbar ul li div a {
    width: 100%;
    height: 53px;
    overflow: hidden;
    font-family: vazir-black;
    font-size: 15px;
    color: var(--fontcolor1);
    /* background-color: #ffffff70; */
    /* backdrop-filter: blur(12px); */
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    transition: .3s;
}

.proflie-navbar ul li div a:hover {
    background-color: #ffffff;
    box-shadow: 0 0 10px var(--themeshadow3);
    /* transform: scale(.9); */
}

.proflie-navbar ul li div a i {
    width: 20px;
    color: var(--theme4);
    text-shadow: 0 0 20px var(--theme4);
    transition: .3s;
    font-size: 17px;
}

.proflie-navbar ul li div a:hover i {
    transform: scale(1.2);

}

.proflie-navbar ul li:last-child div a:last-child {
    /* background-color: #ffe6eb; */
    color: crimson;
    box-shadow: 0 0 0 2px #ee647f;
}

.proflie-navbar ul li:last-child div a:last-child i {
    color: crimson;
}

#proflie-navbar-first-navbar {
    gap: 20px;
    padding-right: 20px;
}

#proflie-navbar-first-navbar a {
    color: var(--theme4);
    font-family: vazir-regular;
    transition: .3s;
}

#proflie-navbar-first-navbar li:hover a {
    transform: scale(1.1);
}





.profile-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-dashboard-div {
    width: 100%;
    background-color: var(--white);
    border-radius: 20px;
    border: 2px solid #ebebeb;
    padding: 30px;
}

.profile-content-dashboard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.profile-dashboard-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.profile-dashboard-top a {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    font-family: vazir-black;
    font-size: 18px;
    background-color: var(--theme2);
    border-radius: 20px;
    color: var(--white);
    text-shadow: 0 0 20px var(--white);
    transition: .3s;
}

.profile-dashboard-top a i {
    font-size: 45px;
    text-shadow: none;
}

.profile-dashboard-top a:nth-child(1) {
    background: linear-gradient(130deg, var(--theme4), var(--theme2));
    animation: animated-gradient 3s linear infinite;
    background-size: 150% 150%;
}

.profile-dashboard-top a:nth-child(2) {
    background: linear-gradient(45deg, var(--theme2), var(--theme4));
    animation: animated-gradient 3s linear infinite;
    background-size: 150% 150%;
}

.profile-dashboard-top a:nth-child(3) {
    background: linear-gradient(360deg, var(--theme3), var(--theme2));
    animation: animated-gradient 3s linear infinite;
    background-size: 150% 150%;
}

.profile-dashboard-top a:nth-child(4) {
    background: linear-gradient(0deg, var(--theme2), var(--theme3));
    animation: animated-gradient 3s linear infinite;
    background-size: 150% 150%;
}

.profile-dashboard-top a:hover {
    /* box-shadow: 0 10px 30px var(--mainblack); */
    transform: translateY(-10px);
}

.profile-dashboard-content h2 {
    font-family: vazir-black;
    font-size: 25px;
    color: var(--fontcolor1);
    margin-bottom: 20px;
}

.profile-dashboard-content-back {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.profile-dashboard-content-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    background-color: #efefef;
    padding: 25px 30px;
    border-radius: 10px;
    cursor: default;
    position: relative;
}

.profile-dashboard-content-div:hover {
    background-color: #e2e2e2;
}

.profile-dashboard-content-div i {
    color: var(--theme4);
    font-size: 22px;
}

.profile-dashboard-content-div p {
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
    width: 100%;
}

.profile-dashboard-content-div a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-area: 10px;
    width: 140px;
    /* background-color: #111827; */
    font-family: vazir-black;
    color: var(--themeshadow1);
    font-size: 14px;
    transition: .3s;
}

.profile-dashboard-content-div a i {
    color: var(--themeshadow1);
    font-size: 15px;
}



.profile-dashboard-content-back.profile-dashboard-content-back-journal{
    gap: 20px;
}
#profile-article-rate #admmin-journal-status-show{
    position: absolute;
    top: -24px;
    left: 25px;
    width: auto;
}
#profile-article-rate #admmin-journal-status-show p{
    width: auto;
    font-family: vazir-black;
    padding: 20px 30px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
#profile-article-rate #admmin-journal-status-show p i{
    color: var(--white);
    font-size: 17px;
}
#profile-article-rate #admmin-journal-status-show p#journal-status-p-1{
    background-color: var(--firstcolor);
}
#profile-article-rate #admmin-journal-status-show p#journal-status-p-1 i{
    margin-top: -3px;
    font-size: 20px;
}
#profile-article-rate #admmin-journal-status-show p#journal-status-p-0{
    background-color: var(--themeshadow3);
}





#profile-article-rate #admmin-journal-do-div{
    position: absolute;
    bottom: 20px;
    right: 70px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}
#profile-article-rate #admmin-journal-do-div a{
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--thirdcolor);
    background-color: var(--white);
    font-size: 20px;
}
#profile-article-rate #admmin-journal-do-div a i{
    color: var(--thirdcolor);
}
#profile-article-rate #admmin-journal-do-div button{
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme4);
    background-color: var(--white);
    font-size: 20px;
    cursor: pointer;
}
#profile-article-rate #admmin-journal-do-div button i{
    color: var(--theme4);
}










/* ---profile me--- */
.profile-content-me-back {
    width: 100%;
    height: 100%;
    /* max-width: 350px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    /* border: 1px solid #00000020; */
    border-radius: 20px;
    /* margin: 20px auto  ; */
    overflow: hidden;
}
#profile-content-me-back-a{
    font-family: vazir-black;
    font-size: 15px;
    color: var(--white);
    background-color: var(--themeshadow3);
    border-radius: 105px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: .3s;
    margin-bottom: 40px;
}
#profile-content-me-back-a:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--themeshadow3);
}
.profile-content-me-title {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    /* background-color: #00000015; */
    backdrop-filter: blur(8px);
    border-radius: 20px;
}

.profile-content-me-title .profile-me-title-img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    padding: 7px;
    background: linear-gradient(130deg, var(--theme4), var(--themeshadow3));
    animation: animated-gradient 3s linear infinite;
    background-size: 200% 200%;
    box-shadow: 0 0 20px var(--themeshadow3);
}

.profile-content-me-title .profile-me-title-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--white);
    border-radius: 100%;
}

.profile-content-me-title h2 {
    font-family: vazir-black;
    color: var(--fontcolor2);
    /* text-shadow: 0 0 5px var(--theme4),
    0 0 15px var(--themeshadow2),
    0 0 20px var(--themeshadow3),
    0 0 25px var(--themeshadow3); */
}

.profile-content-me-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px 10px;
    width: 100%;
    margin-bottom: 30px;
}

.profile-content-me-body .profile-me-body-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    width: 100%;
    max-width: 300px;
    padding: 0 30px;
}

.profile-content-me-body .profile-me-body-div p {
    font-family: vazir-black;
    font-size: 14px;
    color: var(--fontcolor2);
}

.profile-content-me-body .profile-me-body-div h3 {
    font-family: vazir-light;
    font-size: 17px;
    color: var(--fontcolor1);
    width: 100%;
    line-height: 30px;
    /* border: 1px solid #00000020; */
    border-radius: 10px;
    padding: 12px 20px;
    background-color: #3A476430;
}




/* ---article--- */

.profile-add-article-back {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #00000010; */
}

.profile-add-article-back form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    padding: 0 30px;
}

.profile-add-article-back form .profile-add-article-img input[type=file] {
    width: 350px;
    /* line-height: 200px; */
    max-width: 100%;
    color: var(--fontcolor2);
    padding: 5px;
    background: #fff;
    border: 2px dashed var(--fontcolor3);
    display: flex;
    align-items: center;
    border-radius: 15px;
    justify-content: center;
    /* padding: 0 25%; */
}

.profile-add-article-back form .profile-add-article-img input[type=file]::file-selector-button {
    margin: 0 -35px 0 0;
    border: none;
    transform: translateY(-60px) translateX(-121px);
    background: transparent;
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--fontcolor2);
    cursor: pointer;
    font-family: vazir-black;
    font-size: 22px;
    cursor: pointer;
}

.profile-add-article-back form .profile-add-article-img input::before {
    content: 'Drop files here or';
    white-space: pre;
    display: block;
    direction: ltr;
    background: transparent;
    /* border: 2px dashed var(--fontcolor3); */
    width: 100%;
    height: 150px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 25px;
    font-family: vazir-black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fontcolor2);
    transition: 0.3s;
}

.profile-add-article-back form h2 {
    width: 100%;
}



.profile-add-article-back form .profile-add-article-img.profile-add-article-img-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    margin-top: -20px;
}

.profile-add-article-back form .profile-add-article-img.profile-add-article-img-2 input[type=file] {
    width: 110px;
    /* line-height: 200px; */
    max-width: 100%;
}

.profile-add-article-back form .profile-add-article-img.profile-add-article-img-2 input[type=file]::file-selector-button {
    margin: 0 -70px 0 0;
    border: none;
    transform: translateY(20px) translateX(100px);
    background: transparent;
    padding: 10px 0px;
    border-radius: 10px;
    color: var(--fontcolor2);
    cursor: pointer;
    font-family: vazir-black;
    font-size: 14px;
    cursor: pointer;
}

.profile-add-article-back form .profile-add-article-img.profile-add-article-img-2 input::before {
    content: '';
    white-space: pre;
    display: block;
    direction: ltr;
    background: transparent;
    /* border: 2px dashed var(--fontcolor3); */
    width: 100%;
    height: 0px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    font-family: vazir-black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fontcolor2);
    transition: 0.3s;
}




.profile-add-admins-sta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin-top: -20px;
}

.profile-add-admins-sta h3 {
    font-family: vazir-black;
    color: #515151;
    font-size: 15px;
    margin-top: 20px;
}

.profile-add-admins-sta-div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.profile-add-admins-sta-div-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    background-color: #00000010;
    padding: 10px 15px;
    border-radius: 10px;
}

.profile-add-admins-sta-div-div div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #00000015;
    padding: 0 10px 0 15px;
}

.profile-add-admins-sta-div-div div label {
    cursor: pointer;
    padding-right: 10px;
}

.profile-add-admins-sta-div-div div input {
    cursor: pointer;
}



.profile-add-article-inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.profile-add-article-inputs input[type=text] {
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
    padding: 12px 15px;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    outline: none;
    width: 100%;
    max-width: 500px;
}

.profile-add-article-inputs-2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.profile-add-article-inputs-2 input[type=text] {
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
    padding: 12px 15px;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    outline: none;
    width: 40%;
    max-width: 500px;
}

.profile-add-article-inputs-2.profile-add-article-inputs-2-prof-home-size {
    background-color: #00000009;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 150px;
    margin-top: -20px;
    position: relative;
    padding: 20px 30px;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
}

.profile-add-article-inputs-2.profile-add-article-inputs-2-prof-home-size label {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000015;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 30px;
    cursor: pointer;
    transition: .3s;
}

.profile-add-article-inputs-2.profile-add-article-inputs-2-prof-home-size label:hover {
    background-color: #ebeafb;
}

.profile-add-article-inputs-2.profile-add-article-inputs-2-prof-home-size input:checked~label {
    background-color: #cec9f9;
}

.profile-add-article-inputs-2.profile-add-article-inputs-2-prof-home-size input:checked {
    z-index: 1;
    cursor: pointer;
}
.profile-add-article-inputs.profile-add-article-inputs-2#edit-profile-user-div{
    max-width: 400px;
}
.profile-add-article-inputs.profile-add-article-inputs-2#edit-profile-user-div input[type=text]{
    width: 100%;
}
.profile-add-article-inputs.profile-add-article-inputs-2 label{
    margin-bottom: -20px;
    margin-left: auto;
}
.profile-add-article-inputs input[type=number] {
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
    padding: 12px 15px;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    outline: none;
    width: 40%;
    max-width: 500px;
    text-align: center;
}

.profile-add-article-inputs textarea {
    width: 100%;
    height: 200px;
    min-height: 150px;
    max-height: 300px;
    padding: 15px 20px;
    font-size: 16px;
    font-family: vazir-light;
    color: var(--fontcolor1);
    margin: 20px 0;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    outline: none;
    max-width: 700px;
    resize: vertical;
}

.profile-add-article-btns-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.profile-add-article-btns-div button {
    border: none;
    padding: 12px 15px;
    font-family: vazir-black;
    font-size: 18px;
    color: var(--themeshadow3);
    cursor: pointer;
    border-radius: 10px;
    background-color: var(--white);
}

.profile-add-article-btns-div button[type=submit] {
    width: 100%;
    max-width: 250px;
    text-align: center;
    /* background: linear-gradient(130deg,var(--theme4),var(--themeshadow3)); */
    border: 2px solid #91aee7;
    /* text-shadow: 0 0 15px var(--themeshadow3); */
    box-shadow: 0 0 20px #91aee7;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.profile-add-article-btns-div button[type=submit] i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    width: 50px;
    height: 100%;
    background-color: #91aee7;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
    transition: .3s;
    color: var(--white);
}

.profile-add-article-btns-div button[type=submit]:hover i {
    width: 100%;
    text-shadow: 0 0 25px var(--white);
    font-size: 25px;
}

.profile-add-article-btns-div button[type=reset] {
    color: #ef4466;
    padding: 12px 16px 10px 16px;
    text-align: center;
    background: transparent;
    border: 1px solid #f49cae;
    /* text-shadow: 0 0 15px var(--white); */
    /* box-shadow: 0 0 20px var(--thirdcolor); */
}

.profile-add-article-back form div label {
    font-family: vazir-light;
    line-height: 40px;
    font-size: 15px;
    color: var(--fontcolor2);
}

.profile-add-article-radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.profile-add-article-radio p {
    font-family: vazir-black;
    color: var(--fontcolor1);
    font-size: 15px;
}

.profile-add-article-radio div {
    position: relative;
}

.profile-add-article-radio div label {
    width: 100%;
    font-family: vazir-black;
    color: var(--fontcolor1);
    background-color: #687b9f30;
    border-radius: 20px;
    padding: 20px 50px 20px 30px;
    cursor: pointer;
    transition: .3s;
}

.profile-add-article-radio div label:hover {
    background-color: #687b9f60;
}

.profile-add-article-radio div input {
    position: absolute;
    right: 20px;
    top: 45%;
    transform: translateY(-50%);
    cursor: pointer;
}

.profile-add-article-radio div input:checked~label {
    background-color: var(--theme4);
    color: var(--white);
}

#profile-normal-textarea {
    width: 100%;
    max-width: 500px;
    border: 1px solid #00000030;
    padding: 15px 20px;
    color: var(--fontcolor2);
    font-family: vazir-light;
    font-size: 15px;
    border-radius: 10px;
    min-height: 150px;
    resize: vertical;
}




/* ---rate-article--- */

#profile-article-rate {
    gap: 30px;
}

#profile-article-rate div {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    width: 100%;
}

#profile-article-rate div h1 {
    font-family: vazir-black;
    font-size: 16px;
    color: var(--fontcolor1);
}

#profile-article-rate div h3 {
    font-family: vazir-black;
    font-size: 14px;
    color: var(--fontcolor2);
}

#profile-article-rate div h3 span {
    color: var(--theme4);
}

#profile-article-rate div h3 i {
    font-size: 15px;
    color: unset;
}

#profile-article-rate div h3#profile-article-rate-h3-yes {
    color: #48d193;
}

#profile-article-rate div h3#profile-article-rate-h3-yet {
    color: var(--themeshadow3);
}

#profile-article-rate div h3#profile-article-rate-h3-no {
    color: crimson;
}

#profile-article-rate div p {
    font-family: vazir-light;
    font-size: 14px;
    color: var(--fontcolor3);
    text-align: justify;
    line-height: 25px;
    height: 50px;
    overflow: hidden;
}

#profile-article-rate-like-div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

#profile-article-rate-like-div form {
    /* width: 100%; */
    margin: 0 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

#profile-article-rate-like-div form #profile-article-rate-form-div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

#profile-article-rate-like-div form #profile-article-rate-form-div p {
    height: auto;
    width: auto;
}

#profile-article-rate-like-div form #profile-article-rate-form-div button {
    border: none;
    color: var(--fontcolor2);
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s;
    background-color: transparent;
}

#profile-article-rate-like-div form #profile-article-rate-form-div button i {
    color: unset;
}

#profile-article-rate-like-div form #profile-article-rate-form-div button[name=like]:hover {
    transform: scale(1.1);
    color: #2cd589;
    /* text-shadow: 0 0 10px #0aa760; */
}

#profile-article-rate-like-div form #profile-article-rate-form-div button[name=dislike]:hover {
    transform: scale(1.1);
    color: #dc143c;
    /* text-shadow: 0 0 10px #0aa760; */
}

#profile-article-rate-like-div form #profile-article-rate-form-div button#profile-article-rate-form-btn-like {
    background-color: #2cd589;
    color: var(--white);
    border-radius: 100%;
}

#profile-article-rate-like-div form #profile-article-rate-form-div button#profile-article-rate-form-btn-like:hover {
    transform: scale(1.1);
}

#profile-article-rate-like-div form #profile-article-rate-form-div button#profile-article-rate-form-btn-dislike {
    background-color: #dc143c;
    color: var(--white);
    border-radius: 100%;
}

#profile-article-rate-like-div form #profile-article-rate-form-div button#profile-article-rate-form-btn-dislike:hover {
    transform: scale(1.1);
}

#profile-article-rate-rate-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#profile-article-rate-rate-form select {
    padding: 12px 15px;
    font-family: vazir-black;
    color: var(--theme4);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    background-color: transparent;
    transition: .3s;
}

/* #profile-article-rate-rate-form select:hover{
    box-shadow: 0 0 20px 1px var(--themeshadow3);
} */
#profile-article-rate-rate-form button {
    border: 2px dashed var(--shadowdark);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme4);
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    /* box-shadow: 0 0 20px 1px var(--themeshadow3); */
}

.profile-dashboard-content-div #profile-article-rate-rate-form button i {
    color: var(--theme4);
    /* text-shadow: 0 0 15px var(--white); */
}

#profile-article-rate-rate-form select#profile-article-rate-rate-form-select1 {
    color: #0aa760;
}

#profile-article-rate-rate-form select#profile-article-rate-rate-form-select-1 {
    color: #dc143c;
}

/* #profile-article-rate-rate-form-select0{color: #0aa760;} */

/* ---profile-open-page--- */

.profile-open-page {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 101;
}

.profile-open-page-back {
    width: 95%;
    height: 85vh;
    max-width: 1000px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px #00000090;
    z-index: 1;
    background-color: var(--bodycolor);
    overflow-y: auto;
}

#profile-open-page-a-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #00000020;
    backdrop-filter: blur(8px);
}

.profile-open-page-title {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    gap: 20px;
    background-color: var(--theme4);
    box-shadow: 0 0 30px var(--theme4);
    margin-bottom: 20px;
}

.profile-open-page-title h1 {
    font-family: vazir-black;
    font-size: 21px;
    color: var(--white);
    text-shadow: 0 0 15px var(--white);
}

.profile-open-page-title a {
    font-size: 21px;
    color: var(--white);
    text-shadow: 0 0 15px var(--white);
    padding: 10px;
}

.profile-open-page-title a:last-child {
    color: rgb(191, 36, 67);
    text-shadow: none;
    margin-right: auto;
}

.page-open-article-top-back {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.page-open-article-top-back div {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.page-open-article-img {
    border-radius: 10px;
    overflow: hidden;
}

.page-open-article-img img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    border-radius: 10px;
    object-fit: contain;
}

.page-open-article-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.page-open-article-text h3 {
    font-family: vazir-black;
    font-size: 20px;
    color: var(--fontcolor1);
}

.page-open-article-text a {
    font-family: vazir-black;
    font-size: 16px;
    color: var(--theme4);
}

.page-open-article-text h4 {
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
}

.profile-open-page-rate-div#profile-article-rate-like-div {
    width: min-content;
}

.profile-open-page-rate-div#profile-article-rate-like-div {
    font-family: vazir-black;
    font-size: 16px;
    color: var(--theme1);
}

.profile-open-page-rate-div#profile-article-rate-like-div i {
    font-size: 20px;
}

.page-open-article-content {
    width: 95%;
    margin: 20px auto;
    padding: 20px 30px;
    /* background-color: #00000010; */
    border: 1px solid #00000020;
    border-radius: 10px;
    font-family: vazir-light;
    color: var(--fontcolor2);
    font-size: 15px;
    text-align: justify;
    line-height: 32px;
}

.page-open-article-content h1,
.page-open-article-content h2,
.page-open-article-content h3,
.page-open-article-content h4,
.page-open-article-content h5,
.page-open-article-content h6 {
    font-family: vazir-black;
    color: var(--fontcolor1);
    text-align: right;
    line-height: 40px;
}

.page-open-article-content p {
    font-family: vazir-light;
    color: var(--fontcolor2);
    font-size: 15px;
    text-align: justify;
    line-height: 32px;
}

.page-open-article-content span {
    font-family: vazir-light;
    color: var(--fontcolor2);
    font-size: 15px;
    text-align: justify;
    line-height: 32px;
}

.page-open-article-content form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.page-open-article-content form input {
    width: 100%;
    padding: 12px 15px;
    font-family: vazir-black;
    font-size: 17px;
    color: var(--fontcolor1);
    outline: none;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid #00000020;
}

.page-open-article-content form textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor1);
    outline: none;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid #00000020;
    resize: none;
    height: 200px;
}

.page-open-article-content form button {
    font-family: vazir-black;
    font-size: 18px;
    border: none;
    border-radius: 15px;
    background-color: var(--theme4);
    color: var(--white);
    padding: 15px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
}

.page-open-article-content form button:hover {
    gap: 20px;
    box-shadow: 0 0 15px 1px var(--themeshadow3);
}

#profile-delete-form-back {
    max-width: 450px;
}

.page-open-article-content form#profile-delete-form {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 10px;
}

.page-open-article-content form#profile-delete-form button {
    border: 2px solid crimson;
    font-family: vazir-black;
    border-radius: 15px;
    background-color: transparent;
    color: crimson;
    font-size: 16px;
}

.page-open-article-content form#profile-delete-form button:hover {
    gap: 10px;
    background-color: crimson;
    color: var(--white);
    box-shadow: 0 0 15px crimson;
}

.page-open-article-content form#profile-delete-form h1 {
    width: 100%;
    font-size: 20px;
    text-align: center;
}

.page-open-article-content form#profile-delete-form a {
    font-family: vazir-black;
    font-size: 16px;
    background-color: var(--white);
    color: var(--theme4);
    border: 2px solid var(--theme4);
    padding: 12px 50px;
    border-radius: 15px;
    transition: .3s;
}

.page-open-article-content form#profile-delete-form a:hover {
    background-color: var(--theme4);
    color: var(--white);
}

/* ---messages--- */
#profile-message-span-unseen {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--themeshadow3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.profile-dashboard-content-div.profile-msg-content-div {
    position: relative;
}

#profile-message-span-unseen~i {
    color: var(--themeshadow1);
    /* text-shadow: 0 0 20px var(--themeshadow1); */
}

.profile-msg-content-div-texts {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}

.profile-msg-content-div-texts h3 {
    font-family: vazir-black;
    font-size: 16px;
    color: var(--fontcolor2);
}

#profile-message-span-unseen~.profile-msg-content-div-texts h3 {
    color: var(--fontcolor1);
}

.profile-open-msg-page.profile-open-article-page .profile-open-article-page-back {
    max-width: 550px;
    height: auto;
    overflow-y: auto;
}

.profile-open-msg-page.profile-open-article-page .profile-open-page-title {
    padding: 0 30px;
}

#profile-open-page-back-msg-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#profile-open-page-back-msg-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
}

#profile-open-page-back-msg-user div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
}

#profile-open-page-back-msg-user div p {
    font-family: vazir-black;
    font-size: 19px;
    text-shadow: none;
}

#profile-open-page-back-msg-user div span {
    font-family: vazir-light;
    font-size: 14px;
    text-shadow: none;
    color: #ffffff90;
}

.profile-open-msg-page.profile-open-article-page .page-open-article-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: none;
    padding: 0 10px;
}

.profile-open-msg-page.profile-open-article-page .page-open-article-content h4 {
    /* margin-right: auto; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: default;
}

#profile-messages-content-div-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#profile-messages-content-div-title a {
    font-family: vazir-black;
    font-size: 16px;
    background: linear-gradient(130deg, var(--theme3), var(--themeshadow3));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: .3s;
}

#profile-messages-content-div-title a:hover {
    box-shadow: 0 0 15px var(--themeshadow3);
}

#profile-messages-content-div-title h2 {
    display: flex;
    align-items: center;
    justify-content: centers;
}

.profile-dashboard-content-div.profile-login-content-div {
    background-color: transparent;
}

.profile-dashboard-content-div.profile-login-content-div form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.profile-dashboard-content-div.profile-login-content-div h1 {
    font-family: vazir-black;
    font-size: 22px;
    color: var(--fontcolor1);
}

.profile-dashboard-content-div.profile-login-content-div textarea {
    font-family: vazir-light;
    font-size: 16px;
    color: var(--fontcolor2);
    width: 100%;
    min-height: 200px;
    resize: none;
    border: 2px dashed #00000025;
    border-radius: 10px;
    margin-top: 10px;
    outline: none;
    padding: 15px 20px;
    background-color: transparent;
}

.profile-dashboard-content-div.profile-login-content-div p span {
    font-family: vazir-regular;
    font-size: 16px;
    color: var(--fontcolor2);
}

.profile-dashboard-content-div.profile-login-content-div button {
    border: none;
    background: linear-gradient(130deg, var(--theme2), var(--themeshadow3));
    animation: animated-gradient 3s linear infinite;
    background-size: 200% 200%;
    padding: 20px 100px;
    font-family: vazir-black;
    color: var(--white);
    font-size: 18px;
    border-radius: 15px;
    margin: 0 auto;
    cursor: pointer;
    transition: .3s;
    text-shadow: 0 0 20px var(--white);
    margin-top: 10px;
}

.profile-dashboard-content-div.profile-login-content-div button:hover {
    box-shadow: 0 0 20px 2px var(--themeshadow3);
    letter-spacing: 2px;
}

#open-order-box-view .profile-open-page-title a:last-child {
    margin-right: -10px;
    padding: 20px 10px;
    color: var(--white);
}

.profile-open-page-view-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    overflow-y: auto;
    height: 500px;
    padding: 20px 0;
}

.profile-open-page-view-content-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 15px;
    width: 100%;
}

.view-content-top-left {
    width: 100%;
}

.profile-open-page-view-content-top img {
    width: 35%;
    border-radius: 15px;
    max-height: 250px;
    object-fit: contain;
}

.profile-open-page-view-content-top span {
    font-family: vazir-black;
    color: var(--fontcolor2);
    font-size: 15px;
    margin-left: auto;
}

.profile-open-page-view-content-top h1 {
    font-family: vazir-black;
    color: var(--fontcolor1);
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.profile-open-page-view-content-top h2 {
    font-family: vazir-light;
    color: var(--fontcolor1);
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.profile-open-page-view-content-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 0 20px;
}

.profile-open-page-view-content-bottom div {
    display: flex;
    gap: 10px;
    /* border: 2px dashed var(--fontcolor3); */
    box-shadow: 0 0 10px var(--themeshadow3);
    padding: 15px 20px;
    border-radius: 15px;
    width: 100%;
}

.profile-open-page-view-content-bottom div span {
    font-family: vazir-black;
    color: var(--fontcolor1);
    font-size: 15px;
    min-width: auto;
}

.profile-open-page-view-content-bottom div p {
    font-family: vazir-light;
    color: var(--fontcolor2);
    font-size: 14px;
    text-align: justify;
}


/* profile table */

.profile-table {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--bodycolor);
    padding: 10px 13px;
    border-radius: 20px;
    overflow: hidden;
}

.profile-table-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #94a9cf;
    border-radius: 10px;
    padding: 20px 25px;
    gap: 10px;
}

.profile-table li {
    list-style: none;
}

.profile-table-top li {
    font-family: vazir-black;
    font-size: 16px;
    color: var(--white);
    cursor: default;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.profile-table-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px;
}

.profile-table-content-row {
    width: 100%;
    max-height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    background-color: #00000008;
    border-radius: 10px;
    gap: 10px;
}

.profile-table-content-row:hover {
    background-color: #00000015;
}

.profile-table-content-row li {
    width: 100%;
    height: auto;
    max-height: 110px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
    cursor: default;
    overflow: hidden;
    border-left: 1px solid #00000015;
    padding-left: 5px;
}

#profile-table-li-short-delete {
    width: 150px;
    justify-content: center;
    color: #ed3a5e;
}

#profile-table-li-short-delete a {
    color: #ed3a5e;
}

.profile-table-top #profile-table-li-short-delete {
    font-size: 16px;
    padding: 0 6px 0 3px;
}

#profile-table-li-short-edit {
    width: 150px;
    color: var(--firstcolor);
    justify-content: center;
}

#profile-table-li-short-edit button {
    color: var(--firstcolor);
    font-size: 15px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.profile-table-top #profile-table-li-short-edit {
    font-size: 16px;
    padding: 0 3px;
    color: var(--white);
}

#profile-table-li-short-view {
    width: 300px;
    justify-content: center;
}

.profile-table-top #profile-table-li-short-view {
    padding-left: 10px;
    font-size: 14px;
    color: #ffffff99;
}

#profile-table-li-short-class {
    justify-content: center;
}

#open-user-menu-phone {
    padding: 15px 20px;
    border-radius: 20px;
    /* background-color: var(--theme4); */
    color: var(--theme2);
    margin-right: -20px;
    font-size: 25px;
    cursor: pointer;
    display: none;
}




/* ----------------------------- */
/* ---------- Gallery ---------- */
.gallery {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 130px;
    margin-bottom: 100px;
}

.gallery-back {
    width: 100%;
    padding: 0 25px;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}

.gallery-link-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.gallery-link-top a {
    font-family: vazir-light;
    font-size: 17px;
    color: var(--fontcolor2);
    transition: .3s;
}

.gallery-link-top a:hover {
    color: var(--fontcolor1);
}

.gallery-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.gallery-title h1 {
    font-family: vazir-black;
    font-size: 30px;
    color: var(--theme4);
}

.gallery-title h1 span {
    color: var(--themeshadow3);
    font-size: 20px;
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px 10px;
    width: 100%;
}

.gallery-div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 10px #00000020;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: .3s;
}

.gallery-div img {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    transition: .3s;
}

.gallery-div-text {
    font-family: vazir-regular;
    font-size: 15px;
    color: var(--fontcolor2);
    text-align: justify;
    padding: 20px 20px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(30px);
    transition: .3s;
    opacity: 0;
    background-color: #ffffff90;
    border-radius: 20px;
}

.gallery-div-text span {
    font-size: 14px;
    color: var(--fontcolor1);
    text-align: left;
    margin-top: auto;
}

.gallery-div:hover .gallery-div-text {
    opacity: 1;
    transform: translateY(0);
    display: none;
}

.gallery-div:hover .gallery-div-text span {
    opacity: 1;
}

.gallery-div:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 15px 5px #878787;
}



.open-img {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}

.open-img-back {
    width: 100%;
    height: 100%;
    position: fixed;
    background: #00000080;
    backdrop-filter: blur(5px);
}

.open-img span {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 40px;
    font-weight: bolder;
    color: var(--white);
    cursor: pointer;
    z-index: 100;
}

.open-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    width: 95%;
    max-width: 1100px;
    max-height: 90vh;
    object-fit: cover;
    z-index: 2;
}

.open-img p {
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-size: 17px;
    font-weight: bolder;
    color: var(--white);
    z-index: 100;
    font-family: vazir-black;
}




/* ----------------------------- */
/* ---------- Statute ---------- */
.statute {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 110px 0;
}

.statute-back {
    width: 100%;
    max-width: 1300px;
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.statute-top-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.statute-top-link a {
    font-family: vazir-regular;
    font-size: 15px;
    color: var(--themeshadow1);
}
.statute-title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}
.statute-title h1 {
    font-family: vazir-black;
    font-size: 27px;
    color: var(--fontcolor1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.statute-title h1 i {
    font-size: 20px;
    color: var(--fontcolor2);
}

.statute-title a{
    font-family: vazir-black;
    font-size: 15px;
    padding: 16px 25px;
    border-radius: 100px;
    background: linear-gradient(130deg,var(--theme4),var(--themeshadow3));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 10px #91aee770;
    transition: .3s;
}
.statute-title a:hover{
    box-shadow: 0 10px 20px var(--themeshadow3);
    transform: translateY(-5px);
}
.statute-title a span{
    width: 1px;
    height: 20px;
    background-color: var(--navcolor);
    border-radius: 10px;
    display: flex;
}

.statute-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: vazir-light;
    font-size: 16px;
    color: var(--fontcolor2);
    line-height: 33px;
    text-align: justify;
}




/* --------------------------- */
/* -------- LEARN PAGE ------- */

.learn-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 120px 0 100px 0;
}

.learn-section-back {
    width: 99%;
    max-width: 1300px;
}

.learn-section-title {
    width: 92%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.learn-section-title-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.learn-section-title-links a {
    font-family: vazir-black;
    font-size: 16px;
    color: var(--themeshadow3);
}

.learn-section-title h1 {
    font-family: vazir-black;
    font-size: 25px;
    color: #383838;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.learn-section-title p {
    font-family: vazir-regular;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #9699f3;
    text-align: justify;
    /* text-align: center; */
}

.learn-posts-back {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.learn-post {
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 18px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 0 30px 1px #00000015;
}

.learn-posts-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 42%;
    background-color: #fff;
    padding: 20px 20px;
    box-shadow: 0 -40px 60px 1px var(--white);
    z-index: 1;
    gap: 10px;
}

.learn-post-open {
    height: 13%;
}

.learn-post-img {
    height: 45%;
    width: 100%;
}

.learn-post-img a {
    width: 100%;
    height: 100%;
}

.learn-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.learn-post-title h2 {
    font-family: vazir-black;
    font-size: 18px;
    color: #3d3d3d;
}

.learn-post-rating {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.learn-post-rating .learn-post-topic {
    padding: 5px 8px;
    border-radius: 5px;
    background: #687b9f20;
    color: var(--theme4);
    font-family: vazir-black;
    font-size: 14px;
}

.learn-post-rating .learn-post-star {
    color: gold;
    font-size: 13px;
}

.learn-post-text {
    font-family: vazir-light;
    font-size: 14px;
    color: var(--fontcolor2);
    text-align: justify;
    padding: 0 0px 30px 0px;
    line-height: 25px;
}

.learn-post-open {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    background-color: #f6f7fa;
}

.learn-post-open a {
    font-family: vazir-black;
    font-size: 15px;
    color: var(--themeshadow1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
}

.learn-post-open a i {
    color: var(--themeshadow3);
    font-size: 16px;
}

.learn-post-open a:hover {
    gap: 20px;
}

.learn-post-price {
    font-size: 20px;
    color: #64e1af;
    font-family: vazir-black;
}

.learn-post:hover .learn-post-img img {
    transform: scale(1.07);
}

.circle-section-learn #circle-id-1 {
    top: 180px;
    z-index: -1;
}

.circle-section-learn #circle-id-2 {
    top: 500px;
    z-index: -1;
}

.circle-section-learn #circle-id-3 {
    top: 900px;
    right: 40px;
    z-index: -1;
}



.learn-section-back#learn-section-videos .learn-posts-back {
    max-width: 1400px;
    width: 95%;
    gap: 20px;
}

.learn-section-back#learn-section-videos .learn-post-open {
    border-radius: 15px;
    /* margin-bottom: -25px; */
    transition: .3s;
    margin-top: auto;
}

.learn-section-back#learn-section-videos .learn-post-open:hover {
    box-shadow: 0 10px 15px #e0e5f3;
    background-color: #eceff9;
}

.learn-section-back#learn-section-videos .learn-post-open:hover a {
    gap: 10px;
}

.learn-section-back#learn-section-videos .learn-post-open a {
    width: 100%;
    padding: 20px 0;
    border-radius: 15px;
}

.learn-section-back#learn-section-videos .learn-post {
    padding: 12px;
    box-shadow: 0 7px 20px #f6f7fa;
}

.learn-section-back#learn-section-videos .learn-post:hover .learn-post-img img {
    transform: none;
}

.learn-section-back#learn-section-videos .learn-post .learn-post-img {
    position: relative;
}

.learn-section-back#learn-section-videos .learn-post .learn-post-img i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background-color: #e0e5f3;
    box-shadow: 0 0 20px #e0e5f3;
    color: var(--themeshadow1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-right: 4px; */
    border-radius: 50%;
}

.learn-section-back#learn-section-videos .learn-post-open {
    padding: 0;
    height: auto;
}

.learn-section-back#learn-section-videos .learn-posts-content {
    height: auto;
    box-shadow: none;
    padding: 12px 15px;
}

.learn-section-back#learn-section-videos .learn-post-img img {
    border-radius: 15px;
}

.learn-section-back#learn-section-videos .learn-post-rating {
    padding: 0;
}


.learn-section-back.learn-section-audio#learn-section-videos .learn-post-img {
    height: 100px;
    width: 100%;
}

.learn-section-back.learn-section-audio#learn-section-videos .learn-post-img img {
    width: 100%;
    object-fit: cover;
    /* height: 200%; */
    opacity: .7;
}

.learn-section-back.learn-section-audio#learn-section-videos .learn-post:hover .learn-post-img img {
    opacity: 1;
}






.learn-section-back-single {
    width: 92%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
}

.learn-single-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
    gap: 30px;
}

.learn-single-top-img {
    width: 100%;
    max-width: 550px;
    max-height: 350px;
    overflow: hidden;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.learn-single-top-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.learn-single-top-txt {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    font-family: vazir-light;
}

.learn-single-top-txt-link {
    margin-top: -20px;
    margin-bottom: 30px;
    margin-right: -50px;
    display: flex;
    align-items: center;
    color: #acacac;
    font-size: 10px;
    gap: 10px;
}

.learn-single-top-txt-link i {
    margin-top: -2px;
    display: flex;
    align-items: center;
    color: #bdbdbd;
    font-size: 10px;
    gap: 10px;
}

.learn-single-top-txt-link a {
    font-size: 14px;
    font-family: vazir-regular;
    color: #979797;
}

.learn-single-top-txt h1 {
    max-width: 80%;
    font-size: 35px;
    color: #4b4b4b;
    font-family: vazir-extrabold;
    margin-bottom: 30px;
    line-height: 53px;
    word-spacing: -5px;
}

.learn-single-top-txt h3 {
    max-width: 100%;
    font-size: 24px;
    color: #a89ff3;
    font-family: vazir-extrabold;
    margin-bottom: 10px;
    margin-top: 10px;
}

.learn-single-top-txt p {
    max-width: 90%;
    font-size: 17px;
    color: #666666;
    line-height: 30px;
    text-align: justify;
    font-family: vazir-light;
}


.learn-single-bottom {
    font-size: 16px;
    font-family: vazir-light;
    text-align: justify;
    line-height: 30px;
    color: #505050;
}

.learn-single-bottom p {
    font-family: vazir-light;
    text-align: justify;
}

.learn-single-bottom h1,
.learn-single-bottom h2,
.learn-single-bottom h3 {
    margin: 20px 0;
}


.video-single-info {
    background-color: var(--white);
    padding: 20px 30px;
    border-radius: 100px;
    max-width: 715px;
    box-shadow: 0 10px 20px #e0e5f3;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-single-info#video-single-info-audio {
    margin: 0 auto 15px auto;
    width: 100%;
    max-width: 585px;
}

.video-single-info div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.video-single-info div a {
    font-size: 15px;
    font-family: vazir-black;
    color: var(--fontcolor2);
    transition: .3s;
    cursor: pointer;
}

.video-single-info div a:hover {
    color: var(--fontcolor1);
}

.video-single-info div:nth-child(2) i.fa-circle {
    font-size: 5px;
    color: var(--fontcolor2);
}

.video-single-info div:nth-child(1) {
    gap: 15px;
}

.video-single-info div:nth-child(1) a {
    font-size: 15px;
    font-family: vazir-black;
    color: var(--fontcolor2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.video-single-info div:nth-child(1) a i {
    font-size: 22px;
}

.video-single-info div:nth-child(1) i.fa-circle {
    font-size: 5px;
    color: var(--fontcolor2);
}



.video-single-info div:nth-child(1) a:hover {
    color: var(--themeshadow1);
}

.video-single-info button {
    font-size: 16px;
    background-color: transparent;
    border: none;
    color: var(--fontcolor2);
    cursor: pointer;
    transition: .3s;
    font-family: vazir-black;
}

.video-single-info button i {
    font-size: 22px;
}

.video-single-info button:hover {
    color: var(--firstcolor);
}

.video-single-info div form#video-single-info-dislike-form button:hover {
    color: var(--thirdcolor);
}

.video-single-info #video-single-info-check-like-btn {
    color: var(--firstcolor);
    text-shadow: 0 0 20px #00A69350;
}

.video-single-info #video-single-info-check-dislike-btn {
    color: var(--thirdcolor);
    text-shadow: 0 0 20px #dc143c50;
}



.share-back-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* background-color: #00000040; */
}
.share-back-nav #share-back-nav-icon-share{
    font-size: 20px;
    color: var(--themeshadow2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    box-shadow: 0 8px 15px 5px #e0e5f3;
    cursor: pointer;
    margin: -5px 0 -5px -10px;
}
#share-back-nav-div-back{
    position: absolute;
    width: 90vw;
    max-width: 300px;
    top: 120%;
    left: -10%;
    background-color: #ffffff10;
    backdrop-filter: blur(6px);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px #e0e5f3;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.share-back-nav.share-back-nav-open #share-back-nav-div-back{
    display: flex;
}
#share-back-nav-div-back-close{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}
#share-back-nav-div-back-close i{
    color: var(--fontcolor2);
}
#share-back-nav-div-back-top{
    width: 100%;
    /* max-width: 200px; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
}
#share-back-nav-div-back-top a{
    width: 50px;
    height: 50px;
    background-color: var(--themeshadow1);
    border-radius: 100%;
    color: var(--white);
}
#share-back-nav-div-back-top div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
#share-back-nav-div-back-top div p{
    font-size: 12px;
    color: var(--fontcolor3);
    font-family: vazir-regular;
}
#share-back-nav-div-back-bottom{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
}
#share-back-nav-div-back-bottom p{
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
    background-color: #ffffff;
    backdrop-filter: blur(6px);
    /* box-shadow: 0 5px 10px 5px #e0e5f3; */
    border: 2px dashed #1e1e1e20;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
}
#share-back-nav-div-back-bottom button{
    background-color: var(--white);
    box-shadow: 0 5px 10px 5px #e0e5f3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fontcolor1);
    font-family: vazir-black;
    padding: 15px 0;
    border-radius: 15px;
}
.share-back-nav #share-back-nav-icon-share.share-back-nav-icon-share-close{
    display: none;
    color: var(--fontcolor3);
    font-size: 17px;
}
.share-back-nav.share-back-nav-open #share-back-nav-icon-div-back i#share-back-nav-icon-share.share-back-nav-icon-share-open{
    display: none;
}
.share-back-nav.share-back-nav-open #share-back-nav-icon-div-back i#share-back-nav-icon-share.share-back-nav-icon-share-close{
    display: flex;
}





#learn-section-videos video {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    max-height: 800px;
    border-radius: 30px;
    /* box-shadow: 0 10px 20px 5px #e0e5f3; */
    background-color: var(--navcolor);
}

#learn-section-videos .learn-single-top-img {
    width: auto;
    max-width: unset;
    max-height: unset;
    box-shadow: 0 10px 20px #e0e5f3;
    border-radius: 40px;
    padding: 0;
    margin: 0;
    padding: 20px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

/* .learn-single-top-txt {
    margin-top: -35px;
} */

.learn-single-top-txt h3 {
    font-family: vazir-black;
    font-size: 16px;
    margin: 0;
}

.learn-single-top-txt h1 {
    font-family: vazir-black;
    text-shadow: 0 0 20px var(--themeshadow3);
}




.learn-single-top .home-text1-content.home-text1-content-ad {
    border-radius: 20px;
    box-shadow: 0 10px 20px #e0e5f3;
    overflow: hidden;
    background: #EAECF5;
    padding: 0 20px 20px 20px;
    font-family: vazir-light;
    font-size: 12px;
    max-width: 320px;
}

.learn-single-top .home-text1-content.home-text1-content-ad a {
    color: var(--fontcolor3);
}

.learn-single-top .home-text1-content.home-text1-content-ad .home-text1-content-ad-title {
    padding: 20px 0;
}

.learn-single-top .home-text1-content.home-text1-content-ad .home-text1-content-ad-title h1 {
    font-family: vazir-black;
    font-size: 20px;
}






.comments-back {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    padding: 30px 0;
}

.comments-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    width: 100%;
    border-bottom: 2px dashed #00000010;
    padding: 10px 10px 20px;
}

.comments-title h1 {
    font-family: vazir-black;
    font-size: 25px;
    color: var(--fontcolor1);
}

.comments-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* background-color: #00000009; */
    width: 100%;
    gap: 30px;
}

.comments-div .comment {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.comments-div .comment .comment-img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: var(--themeshadow2);
    /* padding: 5px; */

}

.comments-div .comment .comment-img img {
    width: 100%;
    min-width: 50px;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.comments-div .comment .comment-content {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.comments-div .comment .comment-content .comment-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.comments-div .comment .comment-content .comment-title h1 {
    font-family: vazir-black;
    font-size: 17px;
    color: var(--fontcolor1);
}

.comments-div .comment .comment-content .comment-title h3 {
    font-family: vazir-black;
    font-size: 15px;
    color: var(--fontcolor2);
}

.comments-div .comment .comment-content .comment-title h5 {
    font-family: vazir-light;
    font-size: 13px;
    color: var(--fontcolor2);
}

.comments-div .comment .comment-content .comment-text p {
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
    text-align: justify;
    line-height: 25px;
}

.comments-div .comment .comment-content .comment-like {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 10px;
}

.comments-div .comment .comment-content .comment-like form{
    width: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    display: none;
    transition: .5s;
}
.comments-div .comment .comment-content .comment-like form input{
    width: 100%;
    padding: 15px 50px 15px 55px;
    outline: none;
    border: 1px solid #00000015;
    border-radius: 15px;
    font-family: vazir-light;
    color: var(--fontcolor1);
    font-size: 15px;
}
.comments-div .comment .comment-content .comment-like form button{
    position: absolute;
    left: 5px;
    font-size: 15px;
    color: var(--theme4);
    top: 50%;
    transform: translateY(-50%);
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e5f3;
    border: none;
    border-radius: 12px;
    height: 85%;
    cursor: pointer;
}
.comments-div .comment .comment-content .comment-like form i.fa-times{
    position: absolute;
    right: 5px;
    font-size: 15px;
    color: var(--thirdcolor);
    top: 50%;
    transform: translateY(-50%);
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dc143c10;
    border: none;
    border-radius: 12px;
    height: 85%;
    cursor: pointer;
}

#reply-comment-div{
    transition: .3s;
}
#reply-comment-div.open-comment-div{
    width: 100%;
}

#reply-comment-div.open-comment-div form{
    display: flex;
    width: 100%;
}
#reply-comment-div.open-comment-div #reply-comment-div-a{
    display: none;
}

.comments-div .comment .comment-content .comment-like div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}
.comments-div .comment .comment-content .comment-like div a{
    cursor: pointer;
}

.comments-div .comment .comment-content .comment-like a {
    font-family: vazir-black;
    font-size: 15px;
    color: var(--fontcolor1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.comments-div .comment .comment-content .comment-like a i {
    font-size: 22px;
    color: var(--fontcolor2);
}

.comments-div .comment .comment-content .comment-like i.fa-circle {
    font-size: 5px;
    color: var(--fontcolor2);
}

.comments-div .comment .comment-content .comment-like i.fa-reply {
    font-size: 15px;
    color: var(--fontcolor2);
}

.comments-reply {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* background-color: #00000009; */
    width: 90%;
    border-right: 1px solid #00000020;
    padding: 20px 20px 20px 0;
    margin-right: auto;
    /* margin-top: 20px; */
    gap: 30px;
}

.add-comment {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-comment-nouser {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 100px;
    box-shadow: 0 10px 20px #e0e5f3;
}

.add-comment-nouser img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--themeshadow2);
    background-color: var(--white);
}

.add-comment-nouser p {
    font-family: vazir-black;
    font-size: 16px;
    color: var(--fontcolor1);
    padding-left: 50px;
}

.add-comment-nouser a {
    font-family: vazir-black;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 100px;
    background-color: var(--themeshadow3);
    color: var(--white);
}

form.add-comment-nouser {
    width: 100%;
    max-width: 700px;
}

.add-comment-nouser input {
    font-family: vazir-black;
    font-size: 16px;
    color: var(--fontcolor1);
    padding-left: 50px;
    width: 100%;
    border: none;
    resize: none;
    outline: none;
    padding: 10px 0 10px 0;
}

.add-comment-nouser button {
    font-family: vazir-black;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 100px;
    background-color: var(--themeshadow3);
    color: var(--white);
    cursor: pointer;
    border: none;
}


.comments-div .comment .comment-content .comment-title #secend-comment-title-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#secend-comment-title-div .menu-comment {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#secend-comment-title-div .menu-comment i.fa-ellipsis-v {
    color: var(--fontcolor1);
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

#secend-comment-title-div .menu-comment:hover i.fa-ellipsis-v {
    background-color: var(--white);
}

#secend-comment-title-div .menu-comment .menu-comment-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    background-color: #00000025;
    padding: 10px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0 10px 20px #e0e5f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

#secend-comment-title-div .menu-comment:hover .menu-comment-div {
    visibility: visible;
    opacity: 1;
    transition: .3s;
}

#secend-comment-title-div .menu-comment .menu-comment-div form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#secend-comment-title-div .menu-comment .menu-comment-div form button {
    width: 100%;
    font-size: 14px;
    color: var(--fontcolor2);
    padding: 12px 15px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: vazir-black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #e0e5f360;
    gap: 10px;
    border-radius: 10px;
    transition: .3s;
}

#secend-comment-title-div .menu-comment .menu-comment-div form button:hover {
    background-color: #e0e5f3;
}

#secend-comment-title-div .menu-comment .menu-comment-div form button i {
    font-size: 13px;
}



/* --------------------------- */
/* ---------- Store ---------- */

.store {
    width: 100%;
    min-height: 100vh;
    margin-top: 85px;
    /* margin-bottom: 450px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: ; */
}

.back-store {
    width: 100%;
    max-width: 1480px;
    padding: 20px 30px 20px 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
}


.store-filter-section {
    width: 320px;
    min-height: 500px;
    max-height: 800px;
    height: auto;
    background-color: var(--white);
    border: 1px solid #ebebeb;
    /* box-shadow: 0 0 20px 2px #00000015; */
    margin-left: 10px;
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: scroll;
    position: absolute;
    /* top: 105px; */
    right: 40px;
    z-index: 99;
}

.store-filter-section::-webkit-scrollbar {
    width: 7px;
}

.store-filter-section::-webkit-scrollbar-track {
    background-color: transparent;
}

.store-filter-section::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: transparent;
}

.store-filter-section:hover::-webkit-scrollbar-thumb {
    background-color: var(--theme4);
}

.filter-title h1 {
    font-family: vazir-black;
    font-weight: 600;
    font-size: 23px;
    color: #525252;
}

.filter-content-div {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.filter-content-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* gap: 20px; */
}

.filter-content {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    /* background-color: #00a2ff; */
    border-bottom: 1px solid #00000010;
}

.filter-content input.filter_radios {
    display: none;
}

.filter-content label {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 17px 0px;
    font-family: vazir-light;
    font-size: 17px;
    color: #484848;
}

.filter-content label i {
    font-size: 14px;
    margin-top: 10px;
    color: #838383;
    transition: .3s;
}

.filter-div {
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    border-radius: 10px;
    transition: .4s;
    height: 0;
    visibility: hidden;
    opacity: 0;
    padding: 0px 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.filter-content input.filter_radios:checked~.filter-div {
    height: auto;
    visibility: unset;
    opacity: 1;
    overflow-x: unset;
    overflow-y: unset;
    padding: 10px 12px;
}

.filter-content input.filter_radios:checked~.filter-content-btn i {
    transform: rotate(180deg);
}

.filter-div a {
    font-family: vazir-light;
    font-size: 15px;
    color: #7cb4ec;
    padding: 5px 10px;
}

.filter-div h3 {
    font-family: vazir-black;
    font-size: 17px;
    color: #282828;
    cursor: default;
    border-bottom: 1px solid #00000015;
    padding: 10px 0 20px 0;
    text-align: center;
}

.filter-div form {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.filter-div-form-div {
    display: flex;
    align-items: center;
    font-family: vazir-light;
}

.filter-div-form-div p {
    color: #5e5e5e;
    font-size: 13px;
}

.filter-div-form-div input {
    font-family: vazir-light;
    font-size: 15px;
    color: #3a3a3a;
    outline: none;
    border: none;
    border-bottom: 1px dashed #c6c6c6;
    text-align: center;
    padding: 10px 10px;
    background-color: transparent;
}

.filter-div-form-div input::-webkit-outer-spin-button,
.filter-div-form-div input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.filter-div-form-div input[type=number] {
    -moz-appearance: textfield;
}

.filter-div-form-div button {
    border: none;
    font-family: vazir-light;
    font-size: 15px;
    color: var(--white);
    background-color: var(--theme4);
    padding: 12px 15px;
    margin: 10px auto 5px auto;
    border-radius: 10px;
    cursor: pointer;
}

.filter-content-btn.filter-content-btn-checkbtn {
    cursor: default;
}

.filter-content-checkbtn {
    width: 45px;
    height: 25px;
    /* background-color: var(--secondcolor); */
    justify-content: flex-end;
    background-color: #cdcdcd;
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 0 3px;
    transition: .3s;
}

.filter-content-checkbtn-div {
    width: 21px;
    height: 21px;
    background-color: var(--white);
    border-radius: 50%;
}

.filter-content-checkbtn.filter-content-checkbtn-active {
    background-color: var(--theme4);
    justify-content: flex-start;
}



.search-div-back form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.search-div-back form input {
    padding: 12px 15px;
    border: 1px solid #00000020;
    background-color: var(--white);
    border-radius: 12px;
    font-family: vazir-light;
    color: var(--fontcolor2);
    font-size: 15px;
    outline: none;
    width: 90%;
    max-width: 350px;
    transition: .3s;
}

.search-div-back form button {
    font-size: 18px;
    color: var(--theme4);
    padding: 13px 15px;
    border: 1px solid #00000020;
    background-color: var(--white);
    border-radius: 12px;
    cursor: pointer;
    transition: .3s;
}

.search-div-back form button:hover {
    transform: scale(1.06);
    box-shadow: 0 0 15px var(--themeshadow3);
}

.search-div-back form a {
    font-size: 20px;
    color: #d63051;
    border: 2px dashed #f76885;
    padding: 11px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.products-back {
    width: 100%;
}

.products-back-link {
    padding: 5px 15px 0 0;
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin-bottom: 10px;
}

.products-back-link-back {
    display: flex;
    align-items: center;
    gap: 10px;

}

.products-back-link a {
    font-family: vazir-light;
    font-size: 15px;
    color: var(--themeshadow1);
}

.products-back-link-sort {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.products-back-link-sort-title p {
    font-family: vazir-light;
    font-size: 15px;
}

.products-back-link-sort-div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.products-back-link-sort-div a {
    font-size: 15px;
    color: #404040;
}

.products-back-link-sort-div a:hover {
    color: var(--themeshadow1);
}

.products-back-num {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-family: vazir-light;
    font-size: 16px;
    color: #3e3e3e;
}

.products-back-num span {
    color: #3A4764;
}





.products {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    border-radius: 20px;
    padding: 10px;
}

.product {
    background-color: var(--white);
    height: 370px;
    overflow: hidden;
    border: 1px solid #00000015;
    position: relative;
    border-radius: 20px;
    transition: .3s;
    max-width: 350px;
}

.empty-product {
    background-color: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 15px 2px #00000015;
    margin: 0 auto;
    margin-top: 30px;
    font-family: vazir-light;
    font-size: 22px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    color: #424242;
}

.empty-product img {
    width: 80%;
    min-width: 200px;
    max-width: 400px;
}

@keyframes boxshadow-anime {
    0% {
        box-shadow: 0 0 10px var(--firstcolor), 0 0 30px var(--secondcolor);
    }

    100% {
        box-shadow: 0 0 5px var(--firstcolor), 0 0 15px var(--secondcolor);
    }
}

.product:hover {
    box-shadow: 0 0 15px 2px #00000025;
    transform: scale(1.02);
}

.product .img {
    height: 200px;
    padding: 10px;
}

.product .content a {
    display: none;
}

.product .img img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-position: center;
    object-fit: cover;
    cursor: pointer;
    border-radius: 20px;
    /* padding: 2px; */
    /* border: 1px solid #00000015; */
    /* box-shadow: 0 0 10px 1px #00000020; */
}

.product .content {
    height: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 20px 20px 0 0;
    cursor: default;
}

.content .content-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-family: vazir-light;
}

.content .content-div h4 {
    font-family: vazir-regular;
    font-size: 17px;
    padding-bottom: 5px;
    font-weight: normal;
}

.content .content-div p {
    color: var(--fontcolor1);
    font-size: 14px;
    opacity: 0.9;
}

.fa-star {
    color: gold;
}

.content-rate div {
    font-size: 15px;
    margin-left: 4px;
}

#content-existence {
    font-size: 13px;
    color: #18f2c6;
}

#content-existence i {
    color: #18f2c6;
}

.content-discount {
    color: var(--white);
    width: 35px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background-color: var(--theme4);
    border-radius: 7px;
    font-family: vazir-extrabold;
    padding-top: 1.5px;
}

.content-Price {
    font-family: vazir-black;
    font-size: 15px;
    color: var(--theme2);
}

.content-Price span {
    font-size: 13px;
    color: var(--fontcolor2);
}

#content-div-price {
    margin: 10px 0 4px 0;
}

.content-real-Price {
    color: var(--fontcolor1);
    font-size: 14px;
    opacity: 0.9;
    text-decoration: line-through;
    text-decoration-color: var(--fontcolor2);
    margin-left: 18px;
    margin-top: -5px;
}

.content-link {
    color: var(--white);
    font-size: 17px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-family: vazir-regular;
    background: linear-gradient(130deg,
            var(--themeshadow3),
            var(--theme4));
    animation: animated-gradient 3s linear infinite;
    background-size: 150% 150%;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    /* border: 2px solid var(--firstcolor); */
}

.content-link:hover .fa-arrow-left {
    padding-right: 15px;
}

.fa-arrow-left {
    font-size: 15px;
    padding-right: 10px;
    transition: 0.3s;
}

#content-link-en {
    left: 10px;
    right: unset;
}

#content-link-en .fa-arrow-right {
    font-size: 15px;
    transition: 0.3s;
    padding-right: 0;
    padding-left: 10px;
}

#content-link-en:hover .fa-arrow-right {
    padding-left: 15px;
}

/* ------------ single product ------------ */
.single-product {
    margin-top: 110px;
    margin-bottom: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-product-back {
    width: 98%;
    max-width: 1400px;
    background-color: var(--white);
    padding: 30px 20px 20px 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px #91aee730;
}

.top-product {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: -0px;
    position: relative;
}

.img-product {
    width: 40%;
    min-width: 250px;
    height: 410px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.img-product-selected img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    min-width: 250px;
}

#img-product-selected-img {
    display: none;
}

#img-product-selected-img.img-product-selected-open {
    display: block;
}

#img-product-selected-video {
    display: none;
}

#img-product-selected-video.img-product-selected-open {
    display: block;
}

#img-product-selected-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    min-width: 250px;
}

.select-img-product img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.select-img-product {
    height: 90px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.select-img-product div {
    padding: 5px 5px;
    width: 20%;
    height: 80px;
    min-width: 70px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    opacity: 1;
    transition: 0.3s;
}

/* .select-img-product div:hover{
  box-shadow: 0 0 10px #6e6e6e;
} */
.select-img-product div:hover img {
    transform: scale(1.1);
}

.img-product-selected {
    overflow: hidden;
}

.top-product .content-product {
    min-height: 260px;
    width: 40%;
    margin: 0 10px;
    padding: 0 10px;
    position: relative;
}

.content-product-title {
    width: 100%;
}

.content-product-title-h1-back {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e3e3e3;
    margin: -2px 0 10px 0;
}

.content-product .rate {
    font-size: 16px;
    font-family: vazir-light;
    color: var(--fontcolor1);
    margin-left: 10px;
}

.content-product-title {
    color: var(--themeshadow1);
}

.content-product-title a {
    color: var(--themeshadow1);
    opacity: 0.9;
    font-size: 13px;
    font-family: vazir-light;
    /* padding: 0 5px; */
    transition: 0.3s;
}

.content-product-title h1 {
    color: #454545;
    font-size: 18px;
    font-family: vazir-regular;
    font-weight: 400;
    padding: 5px 0 10px 0;
}

.content-product-title-hr {
    width: 100%;
    height: 1.1px;
    opacity: 0.2;
    background-color: #a6a6a6;
    margin-bottom: 10px;
    border-radius: 100px;
}

.content-product .specification {
    font-family: vazir-light;
    position: relative;
}

.content-product .specification .product-config {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 11px;
    font-family: vazir-regular;
    font-size: 14px;
    color: #454545;
    margin: 20px 0 30px 0;
}

.specification .product-config span {
    color: #6a6a6a;
}

.specification .product-config a {
    color: #00a2ff;
    margin: 0 7px 0 0;
}

.specification .product-config .fa-thumbs-up {
    color: #00d6ab;
}

.content-product .specification h3 {
    font-size: 20px;
    font-weight: normal;
}

.content-product .specification div {
    margin-top: 10px;
    display: flex;
}

/* .content-product .specification div p{
    margin-right: 15px;
} */
.content-product .specification ul {
    margin: 10px 30px;
    color: var(--fontcolor1);
    opacity: 0.9;
}

.content-product .specification ul li {
    list-style: unset;
}

.specification h4 {
    font-size: 17px;
    font-family: vazir-regular;
    font-weight: normal;
}

.product-choose-color {
    margin-top: 0px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.product-choose-color p {
    font-family: vazir-regular;
    font-size: 15px;
    color: #5a5a5a;
}

.product-choose-color-div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.product-choose-color-div input {
    display: none;
}

.product-choose-color-div label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: -20px;
}

.product-choose-color-div span {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #d3d3d3;
    cursor: pointer;
}

.product-choose-color-div label[for="product-color-radio1"] span {
    background-color: #ffffff;
}

.product-choose-color-div label[for="product-color-radio2"] span {
    background-color: #aeaeae;
}

.product-choose-color-div input:checked~label span {
    border: 3px solid var(--theme4);
}












.addtocart {
    width: 30%;
    min-width: 200px;
    max-width: 300px;
    background-color: rgb(253, 253, 253);
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid #dddddd;
    top: 0;
    left: 0;
    height: 400px;
    padding: 15px 10px 10px 10px;
    margin-top: 60px;
    position: relative;
    gap: 10px;
}

#addtocart-footer-back {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
}

#single_product_not_available {
    font-family: vazir-black;
    color: crimson;
    text-shadow: 0 0 15px #f26783;
    font-size: 22px;
    margin: 0;
    padding: 15px 0;
}

.addtocart-footer-back-phone {
    display: none;
}

.addtocart button {
    width: 100%;
    height: 55px;
    border: none;
    background: linear-gradient(130deg,
            var(--themeshadow3),
            var(--theme4));
    font-family: vazir-black;
    color: var(--white);
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.addtocart div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: vazir-light;
}

#addtocart-div {

    width: 90%;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 0 15px 0;
}

#addtocart-div h4 {
    font-size: 16px;
    font-family: vazir-regular;
    font-weight: normal;
    color: #343434;
}

#addtocart-div p {
    font-size: 15px;
    font-family: vazir-light;
    font-weight: normal;
    color: #4e4e4e;
}

#addtocart-footer {
    flex-direction: column;
    position: relative;
    border-top: 2px dashed #e5e5e5;
    width: 96%;
    height: 70px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#addtocart-footer .addtocart-full-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-size: 19px;
    font-family: vazir-regular;
    font-weight: 600;
    color: #343434;
    gap: 5px;
    width: auto;
}

.addtocart-full-price {
    justify-content: center;
    gap: 10px;
    padding: 10px 20px 20px 20px;
}

.addtocart-full-price input {
    outline: none;
    border: 2px dashed var(--theme4);
    padding: 12px 15px;
    font-family: vazir-black;
    font-size: 17px;
    width: 200px;
    border-radius: 10px;
}

a#call_for_price_link {
    font-family: vazir-black;
    font-size: 20px;
    color: #717171;
    text-align: center;
    padding: 10px 0;
}

a#call_for_price_link span {
    color: var(--themeshadow3);
    font-size: 16px;
}

#addtocart-footer-back-store {
    width: 100%;
    padding: 0px 10px;
    height: 30px;
    /* border-top: 1px solid #e4e4e4; */
    display: flex;
    align-items: center;
}

#addtocart-footer-back-store p {
    font-size: 14px;
    color: #18f2c6;
}

.addtocart-full-price div {
    font-weight: 100;
    font-size: 13px;
    color: #6a6a6a;
}

#addtocart-number {
    justify-content: flex-end;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.addtocart div form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.addtocart p {
    font-size: 20px;
    margin-left: 20px;
    color: var(--fontcolor1);
    opacity: 0.9;
}

#addtocart-number {
    width: 100px;
    font-size: 20px;
    font-family: sans-serif;
    border-radius: 10px;
    border: none;
    /* box-shadow:inset 1px 2px 5px var(--secondcolor); */
    border: 1px solid var(--themeshadow3);
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;
    color: var(--theme3);
}

#addtocart-number span {
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 10px;
    margin: 5px 0;
}

#addtocart-number .addtocart-number-num {
    border-right: 1px solid var(--secondcolor);
    border-left: 1px solid var(--secondcolor);
    margin: 0px 0;
    padding: 0;
}

.addtocart-div-fa-shield {
    color: var(--theme4);
    font-size: 16px;
    padding-left: 10px;
}

.addtocart-number-num input {
    width: 100%;
    height: 30px;
    border: none;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--theme3);
    cursor: pointer;
    background: none;
}

.addtocart-number-num input::-webkit-outer-spin-button,
.addtocart-number-num input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.specification .seller,
.specification .send {
    display: flex;
    flex-direction: column;
}

.specification .seller p,
.specification .send p {
    color: var(--fontcolor1);
    opacity: 0.9;
}

.description-product-top-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    margin: 10px;
    border-bottom: 1px solid #dedede;
}

.description-product-top-title button {
    border: none;
    padding: 10px 0 20px 15px;
    font-family: vazir-regular;
    font-size: 16px;
    color: #6a6a6a;
    background-color: transparent;
    cursor: pointer;
    transition: .2s;
}

.description-product-top-title button:hover {
    color: var(--theme4);

}

.description-product-top-title h1 {
    font-size: 30px;
    font-family: vazir-black;
    margin: 40px 0;
    text-align: right;
    color: var(--theme4);
    position: relative;
}

.description-product .content {
    display: none;
}

.description-product .content.content-active {
    display: unset;
}

.description-product .content p {
    padding: 10px 20px;
    text-align: justify;
    font-family: vazir-light;
    line-height: 30px;
    color: #6b6b6b;
}


#product_description_review {
    position: relative;
    height: 1000px;
}

#product_description_review p {
    overflow: hidden;
    transition: .3s;
}

#product_description_review.continue-information {
    transition: .3s;
    max-height: unset;
}

#product_description_review div {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    opacity: 1;
    bottom: 0px;
    height: 105px;
    z-index: 1;
    background: linear-gradient(180deg,
            hsla(0, 0%, 100%, 0),
            hsla(0, 0%, 98.8%, .99) 99%,
            #fcfcfc);
    display: none;
}

.continue-information-btn {
    width: 80px;
    text-align: center;
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    font-family: vazir-light;
    font-size: 16px;
    color: #00a2ff;
    background-color: transparent;
    border: none;
    cursor: pointer;
    border-bottom: 1px dashed #00a2ff;
    padding: 2px 0;
    display: none;
}

.continue-information-btn a {
    color: #00a2ff;
    position: absolute;
    width: 80px;
    z-index: 2;
    transform: translateX(-50%);
    left: 50%;
    padding: 13px 0;
    bottom: -10px;
}

.description-product .content h1,
.description-product .content h2,
.description-product .content h3,
.description-product .content h4,
.description-product .content h5,
.description-product .content h6 {
    font-family: vazir-black;
    text-align: justify;
    line-height: 30px;
    color: var(--fontcolor1);
    margin: 15px 0 10px 0;
    font-weight: normal;
}

#product_description_information p {
    padding: 0;
    font-family: vazir-light;
    color: var(--fontcolor2);
}

#product_description_information span {
    padding: 0;
    font-family: vazir-light;
    color: var(--fontcolor2);
}

#product_description_information table {
    font-family: vazir-light;
    max-width: 650px;
}

#product_description_information table td {
    font-size: 12pt;
    padding: 12px 15px;
    direction: rtl;
}

/* -------cards-container------- */
.cards-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    padding: 0 10vw;
    margin-top: 40px;
}

.product-contaier {
    padding: 0 0;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    overflow: hidden;
    padding: 0 20px 40px 20px;
}

.product-contaier-en {
    padding: 0 40px 0px 20px;
}

.product-contaier::-webkit-scrollbar {
    display: none;
}

.container-title {
    font-size: 29px;
    font-family: vazir-regular;
    font-weight: normal;
    color: var(--firstcolor);
    text-align: center;
}

.product-contaier .product {
    /* flex: 0 0 auto; */
    min-width: 300px;
    margin-left: 30px;
}

.nxt-btn,
.pre-btn {
    border: none;
    width: 10vw;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(90deg,rgba(255,255,255,0) 0%,#fff 100%); */
    background: transparent;
    cursor: pointer;
    z-index: 8;
    font-size: 30px;
}

.nxt-btn {
    left: 0;
    transform: rotate(180deg);
}

.pre-btn {
    right: 0;
}

.nxt-btn i,
.pre-btn i {
    opacity: 0.5;
}

.nxt-btn:hover i,
.pre-btn:hover i {
    opacity: 1;
}

.product-feature-back {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1300px;
    margin: 20px 5%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0 0 0;
    border-top: 1px solid #efeeee;
    font-family: vazir-regular;
    color: #6b6b6b;
    font-size: 13px;
    opacity: .5;
}

.product-feature-div {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 250px;
    gap: 40px;

}

.product-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-feature img {
    width: 40px;
    filter: grayscale(100%);
    opacity: .8;
}

.addtocart-disable-btn-hover {
    position: absolute;
    bottom: -55px;
    background-color: var(--bodyblack);
    min-width: 360px;
    padding: 15px 20px;
    border-radius: 10px;
    left: 20%;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    pointer-events: none;
}

.addtocart-disable-btn-hover::before {
    content: '';
    top: -6px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    border-radius: 2px;
    background-color: var(--bodyblack);
    position: absolute;
    left: 20px;
}

.addtocart-disable-btn-hover p {
    font-size: 14px;
    font-family: vazir-light;
    color: var(--white);

}

#addtocart-footer-back-disable-btn:hover~.addtocart-disable-btn-hover {
    opacity: 1;
    visibility: visible;
}


#container-single-product {
    background-color: var(--white);
    box-shadow: 0 0 10px #ebebeb;
    margin-top: 30px;
}

.container-amazing#container-single-product .container-amazing-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6782b480;
    font-family: vazir-extrabold;
    font-size: 16px;
    color: var(--white);
    border-radius: 20px;
    pointer-events: none;
    min-width: 240px;
}

.container-amazing#container-single-product #container-amazing-product-back .container-link-products {
    background-color: var(--newcolor);
}

#addtocart-footer-back-disable-btn {
    opacity: .5;
    /* pointer-events: none; */
}

#addtocart-footer-back-disable-btn::after {
    content: '';
}

#addtocart-footer-back-disable-btn:hover~.addtocart-disable-btn-hover {
    opacity: 1;
    visibility: visible;
}

#order-product-link-a {
    color: var(--white);
    background: linear-gradient(130deg, var(--theme4), var(--themeshadow3));
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 15px;
    font-family: vazir-black;
    font-size: 18px;
    transition: .3s;
}

#order-product-link-a:hover {
    box-shadow: 0 0 15px 2px var(--themeshadow3);
    text-shadow: 0 0 20px var(--white);
}


/* ---------------------------- */
/* ---------- Events ---------- */
.events-section {
    width: 100%;
    margin: 110px 0 100px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.events-back-top {
    width: 90%;
    max-width: 1000px;
    background-color: #00000015;
    position: relative;
    height: 100%;
    min-height: 450px;
    max-height: 70vh;
    border-radius: 40px;
    overflow: hidden;
}

.events-top-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

}

.events-top-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.events-top-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background-color: #00000095;
    transition: .3s;
}

/* .events-top-content:hover~.events-top-background {
    opacity: 0;
} */

.events-top-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #00000025;
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    transition: .3s;
}

.events-top-content-text {
    width: 70%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    gap: 10px;
}

.events-top-content-text h1 {
    font-family: vazir-black;
    font-size: 25px;
    color: var(--white);
    cursor: default;
}

.events-top-content-text p {
    font-family: vazir-light;
    font-size: 16px;
    color: var(--fontcolor3);
    text-align: justify;
    line-height: 26px;
    cursor: default;
}

.events-top-content-text a {
    font-family: vazir-black;
    font-size: 16px;
    color: var(--themeshadow2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px dashed var(--themeshadow3);
    padding: 12px 15px;
    border-radius: 10px;
    transition: .3s;
}

.events-top-content-text a i {
    color: var(--themeshadow3);
    font-size: 14px;
}

.events-top-content-text a:hover {
    transform: scale(1.06);
}

.events-top-content-date {
    padding: 30px;
}

.events-top-content-date p {
    font-family: vazir-black;
    color: var(--white);
    cursor: default;
}



/* ---------------------------- */
/* ---------- ARTICLE --------- */

/* ---- article-home ---- */
.blog-home {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 90px;
    height: auto;
    margin-bottom: 50px;
}

.blog-home-back {
    width: 95%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.blog-home-group-div {
    width: 100%;
    height: 40vh;
    /* min-height: 400px; */
    background-color: #00000010;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-home-group-div h1 {
    font-family: vazir-black;
    font-size: 40px;
    color: var(--firstcolor);
}

.blog-home-div {
    width: 100%;
    height: 50vh;
    min-height: 450px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-home-img-div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-home-img-div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #00000060;
}

.blog-home-content {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background-color: #00000060;
    backdrop-filter: blur(8px);
    padding: 30px 40px;
}

.blog-home-content h1 {
    font-family: vazir-black;
    font-size: 30px;
    color: #fdfdfd;
    text-shadow: 0 0 10px #d1d1d1;
    margin-bottom: 10px;
}

#blog-home-content-p {
    font-family: vazir-black;
    font-size: 18px;
    color: #c4c4c4;
    max-width: 600px;
    margin-bottom: 20px;
    text-align: right;
}

.blog-home-content div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.blog-home-content div p {
    font-family: vazir-black;
    font-size: 16px;
    color: #d7d7d7;
    /* padding: 12px 15px; */
    border-radius: 20px;
    /* border: 2px solid #d7d7d7; */
    pointer-events: none;
    position: absolute;
    bottom: 20px;
    left: 30px;
    text-shadow: 0 0 10px #242424;
}

#blog-home-content-link-more {
    font-family: vazir-black;
    font-size: 20px;
    color: var(--themeshadow3);
    /* color: var(--firstcolor);
    text-shadow: 0 0 10px var(--white); */
    padding: 12px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: .3s;
    /* border: 2px solid transparent; */
    /* background: linear-gradient(130deg,var(--firstcolor),var(--secondcolor)); */
}

#blog-home-content-link-more:hover {
    gap: 10px;
}

.blog-home-content-links {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-home-content-links a {
    font-family: vazir-regular;
    font-size: 17px;
    color: var(--navcolor);
}

/* ----- article-content ----- */
.blog-content {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- article-content-back ----- */
.blog-content-back {
    width: 60%;
    min-height: 100vh;
    min-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    overflow: visible;
    padding-bottom: 50px;
}

.blog-content-div {
    width: 100%;
    background-color: var(--white);
    border: 1px solid #00000020;
    box-shadow: 1px 10px 20px 1px #00000010;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    gap: 20px;
    z-index: 1;
}

.blog-content-div-img {
    width: 348px;
    height: 230px;
    border-radius: 25px;
    overflow: hidden;
}

.blog-content-div-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content-div-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.blog-content-title h1 {
    font-family: vazir-black;
    font-size: 25px;
    letter-spacing: -1px;
    line-height: 35px;
    pointer-events: none;
}
.blog-content-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 20px;
    flex-wrap: wrap;
}
.blog-content-title a{
    font-family: vazir-black;
    font-size: 15px;
    color: var(--white);
    background: linear-gradient(130deg,var(--theme4),var(--themeshadow3));
    box-shadow: 0 5px 10px #91aee770;
    border-radius: 100px;
    padding: 16px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
}
.blog-content-title a:hover{
    box-shadow: 0 10px 20px var(--themeshadow3);
    transform: translateY(-5px);
}
.blog-content-title a span{
    width: 1px;
    height: 20px;
    background-color: var(--navcolor);
    border-radius: 10px;
    display: flex;
}

.blog-content-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.blog-content-date p {
    pointer-events: none;
}

#blog-content-date-link {
    transform: translateY(-2px);
    pointer-events: visible;
}

.blog-content-date p,
.blog-content-date a {
    font-family: vazir-light;
    font-size: 16px;
    color: #525878;
}

.blog-content-text1 p {
    font-family: vazir-light;
    font-size: 16;
    line-height: 30px;
    color: #717171;
    max-height: 60px;
    overflow: hidden;
}

.blog-content-link {
    font-family: vazir-black;
    font-size: 17px;
    color: #333333;
    /* width: 100%; */
    margin-right: auto;
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0px;
    transition: .3s;
}

.blog-content-link i {
    color: #525878;
}

.blog-content-link:hover i {
    transform: translateX(-10px);
}



/* --- article-content-back-single --- */
.blog-content-back-single {
    margin-top: 100px;
}

#blog-content-single {
    flex-direction: column;
}

#blog-content-single .blog-content-div-img {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#blog-content-single .blog-content-div-img img{
    object-fit: contain;
    border-radius: 30px;
    width: auto;
    margin: 0 auto;
}
#journal-body #blog-content-single .blog-content-div-img{
    min-height: 200px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
#journal-body .blog-content-div-img img{
    object-fit: contain;
    max-width: 400px;
    border-radius: 30px;
}
.blog-single-content {
    width: 100%;
    min-height: 50vh;
    border-top: 1px dashed #00000040;
    padding: 20px 10px;
    font-family: vazir-light;
    color: #555555;
    line-height: 35px;
    text-align: justify;
}

.blog-single-content h1 {
    font-family: vazir-black;
    font-size: 20px;
    color: #1b1b1b;
}

.blog-single-content h2 {
    font-family: vazir-black;
    font-size: 18px;
    color: #3e3e3e;
}

.blog-single-content h3 {
    font-family: vazir-black;
    font-size: 17px;
    color: #494949;
}





/* ----- aside ----- */
.aside {
    width: 35%;
    min-width: 250px;
    max-width: 400px;
    min-height: 50vh;
    margin-bottom: 50px;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.aside-back {
    width: 100%;
    min-height: 200px;
    border-radius: 25px;
    background-color: var(--white);
    /* box-shadow: 2px 5px 15px 1px var(--shadow); */
    border: 1px solid #00000020;
    box-shadow: 1px 10px 20px 1px #00000010;
}

.aside-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-bottom: 1px solid #00000025;
}

.aside-title h2 {
    font-family: vazir-black;
    font-size: 25px;
    color: var(--theme3);
}

.aside-content-back {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* gap: 10px; */
    padding: 0px 20px;
}

.aside-content {
    width: 100%;
    height: 100px;
    /* border-radius: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    gap: 20px;
    border-bottom: 1px solid #00000020;
}

.aside-content:last-child {
    border-bottom: none;
}

.aside-content-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.aside-content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aside-content-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    max-width: 75%;
    position: relative;
    padding-left: 7px;
}

.aside-content-text h3 {
    color: #333333;
    font-family: vazir-black;
    font-size: 17px;
    height: 25px;
    overflow: hidden;
    position: relative;
}

.aside-content-text span {
    position: absolute;
    top: 0;
    left: -5px;
    font-family: vazir-black;
    color: #585858;
}

.aside-content-text p {
    color: #5d5d5d;
    font-family: vazir-light;
    font-size: 14px;
    text-align: left;
}


/* --- blog-comments --- */
.blog-content-single {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-comments-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #00000020;
}

.blog-comments-title h1 {
    font-family: vazir-black;
    font-size: 30px;
    color: #2c2c2c;
}

.blog-comments-back {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 700px;
    gap: 40px;
}

.blog-comments {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
}

.blog-comments-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(10px);
}

.blog-comments-img img {
    width: 105%;
    background-color: var(--bodycolor);
    height: 105%;
}

.blog-comments-text {
    width: 100%;
    min-height: 150px;
    background-color: #00000009;
    border-radius: 25px 25px 5px 25px;
    padding: 20px 30px;
}

.blog-comments-text-name {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 20px;
    font-family: vazir-light;
    font-size: 15px;
    color: #373737;
    pointer-events: none;
}

.blog-comments-text-name h3 {
    font-family: vazir-black;
    font-size: 17px;
    color: #202020;
}

.blog-comments-text-msg p {
    font-family: vazir-light;
    font-size: 16px;
    color: #5e5e5e;
}

.blog-comments-replay {
    width: 90%;
    margin-top: -30px;
}

.blog-comments-replay .blog-comments-text {
    background-color: var(--navcolor);

}



/* -------- START CONTACT PAGE ------- */


#contact-us-section {
    max-width: 100vw;
    object-fit: cover;
    overflow: hidden;
    min-height: unset;
    margin: 60px auto;
}

.contact-us-section-back {
    margin: 0px 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 50px;
    padding: 50px;
    width: auto;
    min-height: 500px;
    max-width: 1300px;
    background-color: transparent;
    border-radius: 20px;
    position: relative;
}

#contact-us-section-background-back {
    position: absolute;
    width: 100%;
    overflow: hidden;
    z-index: -1;
    height: 80vh;
}

#contact-us-section-background {
    width: 200vw;
    height: 70vh;
    position: absolute;
    top: 0;
    right: -50px;
    transform: rotate(-12deg);
    background-color: #9295f7;
    object-fit: cover;
    z-index: -1;
}




.contact-us-img {
    width: 100%;
    max-width: 400px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-us-img-back {
    width: 100%;
    height: 60%;
    max-height: 400px;
    /* background-color: #6166f280; */
}

.contact-us-img-back img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.contact-us-img-link-back {
    display: flex;
    flex-direction: column;
    gap: 20px;
    pointer-events: none;
    font-family: vazir-light;
    color: #555555;
    font-size: 18px;
}

.contact-us-img-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.contact-us-img-link-icon-back {
    min-width: 45px;
    max-width: 45px;
    width: 100%;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(130deg, var(--theme4), var(--theme1));
    color: var(--white);
    font-size: 19px;
    box-shadow: 0 0 20px 1px var(--theme3);
}

#contact-us-content-link-back {
    display: none;
}

.contact-us-contnet {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 50px;
}

#contact-us-img-title {
    display: none;
}

.contact-us-contnet-title {
    font-size: 16px;
    font-family: vazir-extrabold;
    color: #777777;
}

.contact-us-contnet-title h1 {
    font-family: vazir-extrabold;
    font-size: 29px;
    color: var(--theme4);
}

.contact-us-contnet-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-us-contnet-form-name {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.contact-us-contnet-form-name div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-us-contnet-form form input {
    font-family: vazir-light;
    outline: none;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    padding: 12px 10px;
    min-width: 240px;
    transition: transform .4s, box-shadow .4s, border-right-color .4s, padding .3s;
    font-size: 15px;
    color: #777777;
}

.contact-us-contnet-form form input:focus {
    /* transform: scale(1.05); */
    border-right: 5px solid transparent;
    border-right-color: var(--theme4);
    border-radius: 5px;
    padding: 12px 15px 12px 10px;
    box-shadow: 0 0 10px #cecece;
}

#contact-us-form-input-topic {
    width: 100%;
}

.contact-us-contnet-form form textarea {
    font-family: vazir-light;
    outline: none;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    padding: 12px 10px;
    width: 100%;
    font-size: 15px;
    color: #777777;
    resize: none;
    height: 200px;
    transition: .3s;
}

.contact-us-contnet-form form textarea:focus {
    box-shadow: 0 0 10px #cecece;

}

.contact-us-contnet-form form button {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 12px 10px;
    font-family: vazir-light;
    font-size: 19px;
    color: #777777;
    background: linear-gradient(130deg, var(--theme4), var(--theme1));
    color: var(--white);
    cursor: pointer;
    transition: .3s;
}

.contact-us-contnet-form form button:hover {
    box-shadow: 0 0 20px 1px var(--secondcolor);
}

.contact-us-contnet-form input::-webkit-outer-spin-button,
.contact-us-contnet-form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-us-contnet-form input[type=number] {
    -moz-appearance: textfield;
}

.contact-us-contnet-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-us-contnet-form button[type=reset] {
    max-width: 50px;
    background: transparent;
    border: 1px solid var(--secondcolor);
    color: var(--secondcolor);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
}

.contact-us-contnet-form button[type=reset]:hover {
    box-shadow: 0 0 20px 1px transparent;
    background-color: #f5e7e9;
    transform: scale(1);
}

.contact-us-location-back {
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: var(--firstcolor);
    border-radius: 19px 0% 100% 0;
    z-index: 10;
}

.contact-us-location-btn button {
    border: none;
    font-size: 29px;
    color: var(--white);
    background-color: var(--firstcolor);
    padding: 17px 30px 25px 20px;
    transition: .4s;
    cursor: pointer;
    border-radius: 20px 0px 100% 0px;
}

.contact-us-location-btn button .fa-chevron-left {
    display: none;
}

.contact-us-location-btn:hover button {
    padding: 17px 40px 35px 20px;

}

.contact-us-location-div {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--firstcolor);
    border-radius: 20px;
    clip-path: circle(5% at 0 0);
    transition: 1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-location-div-active {
    clip-path: circle(141.4% at 0 0);

}

.contact-us-location-btn button.contact-us-location-btn-active .fa-chevron-left {
    display: block;
}

.contact-us-location-btn-active .fa-map-marker-alt {
    display: none;
}

.contact-us-location-div iframe {
    width: 90%;
    height: 80%;
    border-radius: 20px;
    margin-top: 50px;
    transition: 1.5s;
    clip-path: circle(0% at 0 0);
}

.contact-us-location-div-active iframe {
    clip-path: circle(141.4% at 0 0);

}

.contact-us-location-div h1 {
    font-family: vazir-light;
    color: var(--white);
    font-size: 25px;
    position: absolute;
    top: 40px;
    right: 40px;
}


.contact-us-img-link-back h3{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #00000020;
    font-family: vazir-black;
    font-size: 16px;
}






/* ---------------------------- */
/* ---------- Donate ---------- */

.donate {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    /* min-height: 100vh; */
    margin: 150px 0 100px 0;
}

.donate-back {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-back .donate-list{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
}

.donate-single {
    width: 100%;
    max-width: 600px;
    background-color: transparent;
    border-radius: 20px;
    border: 10px solid #eaecf5;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 10px 20px #bfc8e9;
}

.donate-single h1 {
    font-family: vazir-black;
    font-size: 20px;
    color: var(--fontcolor1);
}

.donate-single-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.donate-single-top a {
    font-family: vazir-black;
    color: var(--fontcolor1);
    font-size: 15px;
    background-color: var(--themeshadow3);
    padding: 10px 15px;
    border-radius: 10px;
    transition: .3s;
}

.donate-single-top a span {
    color: var(--fontcolor1);
    font-size: 12px;
    transition: .3s;
}

.donate-single-top a:hover {
    box-shadow: 0 0 20px var(--themeshadow3);
    color: var(--white);
}

.donate-single-top a:hover span {
    color: var(--white);
}
.donate-info{width: 100%;}
.donate-info form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.donate-info form input {
    width: 100%;
    padding: 15px 15px;
    border-radius: 10px;
    font-size: 15px;
    font-family: vazir-black;
    color: var(--themeshadow1);
    outline: none;
    /* border: 2px solid var(--fontcolor2); */
    background-color: #eaecf5;
    border: none;
    text-align: center;
}
.donate-info form input[type=number] {
    -moz-appearance: textfield;
}
.donate-info form input::-webkit-outer-spin-button,
.donate-info form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.donate-info form button {
    padding: 15px 0;
    font-family: vazir-black;
    font-size: 16px;
    color: var(--theme4);
    background-color: #eaecf5;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    transition: .3s;
}
.donate-info form button:hover{
    background-color: #d0d5ee;
    box-shadow: 0 10px 20px 10px #eaecf5;
    color: var(--theme3);
}

.donate-single p {
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor2);
    /* margin-top: 20px; */
}



.donate-info form p {
    padding: 15px 0;
    font-family: vazir-black;
    font-size: 16px;
    color: var(--themeshadow1);
    background-color: #eaecf5;
    border: none;
    cursor: default;
    border-radius: 10px;
    width: 100%;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;


}
.donate-info form a {
    padding: 15px 0;
    font-family: vazir-black;
    font-size: 16px;
    color: var(--theme4);
    background-color: #eaecf5;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

}
.donate-info form a:hover{
    background-color: #d0d5ee;
    box-shadow: 0 10px 20px 10px #eaecf5;
    color: var(--theme3);
}

.donate-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.donate-product .donate-product-img {
    width: 120px;
    height: 120px;
}

.donate-product .donate-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.donate-product-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-evenly;
}

.donate-product-content h2 {
    font-family: vazir-black;
    font-size: 20px;
    color: var(--fontcolor1);
    margin-bottom: 10px;
}

.donate-product-content h3 {
    font-family: vazir-black;
    font-size: 16px;
    color: var(--theme4);
    margin-top: 10px;
}


.donate-checkout {
    width: 100%;
    height: 100vh;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    z-index: 122;
}

.donate-checkout-back {
    background-color: var(--white);
    padding: 20px 25px;
    /* padding-top: 220px; */
    border-radius: 20px;
    z-index: 1;
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

#donate-checkout-order .donate-checkout-back {
    padding-top: 385px;
}

#donate-checkout-a-close {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #00000030;
}

#donate-checkout-a-close-2 {
    color: var(--fontcolor1);
    font-size: 17px;
}

.donate-checkout-back-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

#donate-checkout-back-content-p-info {
    font-family: vazir-light;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--fontcolor2);
    text-align: justify;
    line-height: 30px;
}

.donate-checkout-cart-div {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(130deg, var(--theme4), var(--themeshadow3));
    border-radius: 15px;
}

.donate-checkout-cart-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    width: 100%;
    padding: 10px 10px;
    cursor: default;
}

.donate-checkout-cart-title img {
    width: 70px;
    object-fit: contain;
}

.donate-checkout-cart-title h1 {
    font-family: vazir-black;
    color: var(--white);
    text-shadow: 0 0 20px var(--white);
}

.donate-checkout-cart-content {
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.donate-checkout-cart-content h3 {
    font-family: vazir-black;
    color: #142447;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: default;
}

.donate-checkout-cart-content h2 {
    font-family: vazir-black;
    color: var(--theme1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 25px;
    position: relative;
    cursor: pointer;
}

.donate-checkout-cart-content h2 i {
    position: absolute;
    left: 105%;
    top: 2px;
    color: var(--theme3);
}

.donate-checkout-back-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    gap: 10px;
}

.donate-checkout-back-content form input {
    width: 100%;
    padding: 12px 18px;
    font-family: vazir-light;
    color: var(--fontcolor2);
    font-size: 15px;
    border: 1px solid #00000040;
    background-color: var(--white);
    border-radius: 15px;
    outline: none;
}

.donate-checkout-back-content form div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.donate-checkout-back-content form p {
    font-size: 15px;
    color: var(--fontcolor1);
    font-family: vazir-black;
    border: 1px solid #00000040;
    padding: 12px 15px;
    background-color: var(--white);
    border-radius: 15px;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.donate-checkout-back-content form p span {
    color: var(--fontcolor2);
    font-size: 12px;
}

.donate-checkout-back-content form textarea {
    font-size: 15px;
    font-family: vazir-light;
    border-radius: 15px;
    border: 1px solid #00000040;
    background-color: var(--white);
    color: var(--fontcolor2);
    padding: 12px 18px;
    width: 100%;
    outline: none;
    min-height: 200px;
    resize: vertical;
}

.donate-checkout-back-content form button {
    color: var(--white);
    text-shadow: 0 0 15px var(--white);
    border: none;
    background: linear-gradient(130deg, var(--theme1), var(--theme4));
    font-family: vazir-black;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 15px;
    cursor: pointer;
}





/* ------------------------------ */
/* ---------- 404 PAGE ---------- */
#page404{
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: #FDFDFD;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
#page404 img{
    width: 90%;
    max-height: 350px;
}
#page404 h1{
    font-family: vazir-black;
    color: var(--fontcolor1);
    font-size: 60px;
}
#page404 h3{
    font-family: vazir-black;
    color: var(--fontcolor2);
    font-size: 20px;
    margin-top: -50px;
}























/* ---------------------------- */
/* ---------- Footer ---------- */


.footer-top {
    position: relative;
    bottom: 0;
    left: 0;
    /* margin-bottom: 309px; */
    width: 100%;
    height: 130px;
}

.footer-top-animation {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 130px;
}

.footer-top-animation .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../images/images1.png);
    background-size: 1000px 100px;
}

.footer-top-animation .wave.home-wave {
    background: url(../images/images2.png);
}

.footer-top-animation .wave1 {
    animation: animefooter 20s linear infinite;
    z-index: 5;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}

.footer-top-animation .wave2 {
    animation: animefooter2 10s linear infinite;
    z-index: 4;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
    background-position-x: 300px;
}

.footer-top-animation .wave3 {
    animation: animefooter 20s linear infinite;
    z-index: 3;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15px;
    background-position-x: 600px;
}

.footer-top-animation .wave4 {
    animation: animefooter2 5s linear infinite;
    z-index: 2;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 20px;
    background-position-x: 900px;
}

.footer-top-animation .wave1.home-wave {
    background-position-x: 0px;
}

.footer-top-animation .wave2.home-wave {
    background-position-x: 200px;
}

.footer-top-animation .wave3.home-wave {
    background-position-x: 500px;
}

.footer-top-animation .wave4.home-wave {
    background-position-x: 900px;
}

/* @keyframes animefooter {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1000px;
    }
}

@keyframes animefooter2 {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -1000px;
    }
} */









.footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px 10px #1C263C;
    overflow: hidden;
}

.footer-back {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-back1 {
    background-color: #1C263C;
    /* background-color: var(--firstcolor); */
    justify-content: space-evenly;
    align-items: flex-start;
}

.footer-back1-div {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}

.footer-back1-right {
    align-items: center;
}

.footer-back1-right img {
    width: 100%;
    max-width: 150px;
    object-fit: contain;
}

.footer-back1-right h1 {
    font-family: vazir-black;
    font-size: 26px;
    color: var(--white);
}

.footer-back1-right p {
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor3);
    line-height: 27px;
    text-align: justify;
}

.footer-back1-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-back1-div a {
    font-size: 16px;
    font-family: vazir-black;

}

.footer-back1-div li {
    list-style: none;
}

.footer-back1-middle,
.footer-back1-left {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 100px;
}

.footer-back1-middle ul,
.footer-back1-left ul {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-back1-middle ul li,
.footer-back1-left ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-back1-middle ul h3,
.footer-back1-left ul h3 {
    padding: 15px 0;
}

.footer-back1-middle a,
.footer-back1-left a {
    color: var(--themeshadow1);
    padding: 10px 0;
    text-align: right;
    transition: .3s;
    width: 100%;
}

.footer-back1-middle ul h3 a,
.footer-back1-left ul h3 a {
    padding: 10px 0;
    font-size: 19px;
    color: var(--shadowdark);
    text-align: right;
    width: 100%;
}

.footer-back1-middle a:hover,
.footer-back1-left a:hover {
    color: var(--white);
}

.footer-back2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 20px 0;
    /* background: linear-gradient(130deg,#4a5c7d,#6b80aa);
    animation: animated-gradient 3s linear infinite;
    background-size: 200% 200%; */
    background-color: #1C263C;
    /* box-shadow: 0 0 30px 2px #6b80aa; */
}

.footer-back2 ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-back2 ul li {
    list-style: none;
}

.footer-back2 ul li a {
    font-size: 27px;
    color: var(--white);
    border: 3px dashed var(--white);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
    /* text-shadow: 0 0 15px var(--white); */
}

.footer-back2 ul li a:hover {
    box-shadow: 0 0 20px #ffffff90;
    transform: scale(1.1);
}

.footer-back3 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: vazir-light;
    font-size: 15px;
    color: var(--fontcolor3);
    padding: 20px 0;
    background-color: #1C263C;
    /* background: linear-gradient(230deg,#2b3958,#111827);
    animation: animated-gradient 3s linear infinite;
    animation-delay: 1s;
    background-size: 200% 200%; */
    /* box-shadow: 0 0 20px #111827; */
}




























/*      Animation      */
@keyframes animated-gradient {
    25% {
        background-position: left bottom;
    }

    50% {
        background-position: right bottom;
    }

    75% {
        background-position: right top;
    }

    100% {
        background-position: left top;
    }
}




/*      Fonts        */
@font-face {
    font-family: vazir-regular;
    src: url(../fonts/vazir/Vazirmatn-Regular.ttf);
}

@font-face {
    font-family: vazir-light;
    src: url(../fonts/vazir/Vazirmatn-Light.ttf);
}

@font-face {
    font-family: vazir-extrabold;
    src: url(../fonts/vazir/Vazirmatn-ExtraBold.ttf);
}

@font-face {
    font-family: vazir-black;
    src: url(../fonts/vazir/Vazirmatn-Black.ttf);
}



/* ---------- MEDIA ---------- */

@media (max-width: 1120px) {
    .navbar-mobile {
        display: flex;
    }

    .learn-single-top .home-text1-content.home-text1-content-ad {
        display: none;
    }

    .navbar-links {
        display: none;
    }

    /* single page */
    .top-product {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .img-product {
        width: 70%;
        max-width: none;
    }

    .content-product {
        min-width: 60%;
        max-width: 430px;
    }

    .addtocart {
        min-width: 240px;
        width: 35%;
        max-width: none;
    }

    .img-slider-div-back {
        gap: 20px;
    }

    .learn-single-top {
        flex-direction: column;
        align-items: center;
    }

    .learn-single-top-txt-link {
        margin-right: 10px;
    }

    .profile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        overflow-y: auto;
        z-index: 121;
        transition: .3s;
    }

    .profile-menu ul {
        z-index: 1;
    }

    .profile-menu-background {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background-color: #00000050;
        backdrop-filter: blur(8px);
        visibility: hidden;
        opacity: 0;
        transition: .3s;
        z-index: 109;
    }

    .profile-menu-background.profile-menu-background-open {
        visibility: visible;
        opacity: 1;
        z-index: 120;
    }

    .profile-menu-open {
        right: 0;
    }

    body {
        justify-content: flex-start;
    }

    #open-user-menu-phone {
        display: block;
    }
}

@media (max-width: 1000px) {
    .blog-content-back {
        width: 100%;
        min-width: 0;
        padding-bottom: 10px;
    }

    .aside {
        width: 100%;
        position: relative;
        top: 0;
        max-width: unset;
    }


    #contact-us-section {
        padding: 0 20px;
    }

    .contact-us-section-back {
        flex-direction: column;
    }

    .contact-us-img {
        order: -1;
        min-height: 0;
        max-width: 600px;

    }

    .contact-us-contnet {
        width: 100%;
        padding: 0;
        max-width: 600px;
    }

    .contact-us-contnet-title {
        display: none;
    }

    #contact-us-img-title {
        display: block;
    }

    .contact-us-img-back {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
    }

    .contact-us-img-back img {
        max-width: 400px;
    }

    #contact-us-content-link-back {
        display: flex;
    }

    .contact-us-img-link-back {
        display: none;
    }

    .profile-dashboard-top a {
        font-size: 14px;
    }

    #learn-section-videos .learn-single-top-img{
        max-width: 100%;
        overflow: hidden;
    }
    .learn-section-back-single{
        width: 100%;
    }
    .learn-single-top-img iframe{
        width: 90vw;
    }
}

@media (max-width: 600px) {
    .blog-content-div-img {
        width: 40%;
    }

    .blog-content-div-img img {
        object-fit: contain;
    }

    .blog-content-title h1 {
        font-size: 20px;
    }

    .blog-content-date p,
    .blog-content-date a {
        font-size: 14px;
    }

    .blog-content-text1 p {
        font-size: 15px;
    }

    .blog-home-content h1 {
        font-size: 23px;
    }

    .blog-home {
        margin-bottom: 20px;
    }

    /* #blog-content-single .blog-content-div-img {
        min-height: unset;
        height: auto;
    } */

    .profile-dashboard-div {
        padding: 15px;
    }

    .profile-dashboard-top {
        gap: 10px;
        flex-wrap: wrap;
    }

    .profile-dashboard-top a {
        width: 45%;
        height: 100px;
    }

    .profile-dashboard-top a i {
        font-size: 25px;
    }

    .profile-back {
        padding: 0 10px;
    }

    .profile-menu {
        width: 90%;
    }

    .profile-dashboard-content-div {
        padding: 15px 20px;
    }
    .donate-back .donate-list{
        flex-direction: column;
        width: 95%;
        padding: 0 10px;
    }
    .blog-content-title{
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px;
    }
    .blog-content-title a{
        margin-bottom: 10px;
    }
    #blog-content-single .blog-content-div-img img{
        width: 100%;
        border-radius: 30px;
    }
    #blog-content-single .blog-content-div-img{
        min-height: unset;
    }
    .blog-content-div-img {
        height: auto;
    }

    .blog-content-div {
        flex-direction: column;
    }
}

@media (max-width: 850px) {
    .home-back {
        padding: 0 15px;
    }

    .home-text1-back {
        flex-direction: column;
    }

    .home-text1.home-text2 .home-text1-back {
        align-items: center;
    }

    .home-text1.home-text2 .home-text1-content.home-text1-content-ad {
        width: 90%;
    }

    .home-text1-back .home-text1-content {
        width: 90%;
    }

    .home-text1-back .home-text1-img {
        width: 90%;
    }

    .home-text1.home-text2 .home-text1-img {
        order: 0;
        border-radius: 20px;
        width: 90%;
    }

    .home-text1.home-text2 .home-text1-content {
        order: 1;
    }

    .home-text1.home-text3 .home-text1-img {
        width: 90%;
    }

    .store .back-store {
        padding: 0 10px;
    }

    .product .img {
        height: 160px;
    }

    #store .back-store .store-filter-section {
        overflow-y: unset;
    }

    #store .back-store .store-filter-section .products-back .products .img {
        height: 150px;
    }

    .store-filter-section {
        display: none;
    }

    /* single page */
    .top-product {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
    }

    .img-product {
        width: 100%;
        max-width: none;
    }

    .content-product {
        min-width: 100%;
    }

    .addtocart {
        min-width: none;
        width: 100%;
        max-width: none;
    }

    .product-feature-back {
        flex-direction: column;
        align-items: center;
    }

    .product-feature-div {
        width: 100%;
        justify-content: space-evenly;
    }

    .login-section {
        flex-direction: column;
    }

    .login-back {
        padding: 30px 20px;
        width: 100%;
    }

    .login-img {
        width: 100%;
        padding: 50px 20px;
    }

    #login-img-title-a {
        width: 90px;
        height: 90px;
    }

    .learn-section {
        padding: 120px 25px 100px 25px;
    }


    #contact-us-section {
        padding: 0 0px;
    }

    .contact-us-section-back {
        width: 100%;
    }

    .contact-us-contnet-form-name div {
        flex-direction: column;
        width: 100%;
    }

    .contact-us-contnet-form-name {
        width: 100%;
    }

    .contact-us-contnet-form form input {
        width: 100%;
        min-width: 100%;
    }

    .contact-us-location-div iframe {
        max-height: 500px;
        margin-bottom: auto;
    }

    .contact-us-section-back {
        padding: 20px;
    }

    .contact-us-contnet-form form {
        padding: 0 10px;
    }

    .contact-us-location-div iframe {
        max-height: unset;
    }

}

@media (max-width: 470px) {
    .home-side-bar {
        display: none;
        left: 50%;
        top: unset;
        transform: translateX(-50%) translateY(0);
        bottom: 160px;
    }

    .home-side-bar ul {
        flex-direction: row;
    }

    .home-side-bar ul li p {
        display: none;
    }

    .home-back {
        justify-content: center;
        align-items: flex-start;
        padding-top: 150px;
    }

    .home-slider-content img {
        background-color: var(--white);
    }

    .home-side-bar.home-side-bar-social {
        left: 50%;
        top: unset;
        transform: translateX(-50%) translateY(0);
        bottom: 110px;
        display: flex;
        width: 90%;
        max-width: 340px;
        border-radius: 20px;
        padding: 10px 0 10px 15px;
        border: 10px solid #eaecf5;
        background-color: var(--white);
        overflow-x: auto;
    }

    #home-side-bar-social-phone-open {
        display: flex;
    }

    .home-side-bar ul li:nth-child(1) a {
        background-color: var(--theme4);
        box-shadow: none;
    }

    .home-search-back form i.fa-search {
        display: none;
    }

    .learn-posts-back {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 5px;
    }

    .learn-section-back#learn-section-videos .learn-posts-back {
        gap: 10px;
    }

    .home-search-back form div {
        width: 95%;
    }

    .home-search-back form {
        width: 100%;
    }

    .events-top-content-date {
        display: none;
    }

    .events-top-content-text {
        width: 100%;
    }

    .events-section {
        min-height: 50vh;
    }

    .navbar-logo {
        width: 100px;
        height: 100px;
    }

    .navbar-back {
        padding: 12px 15px;
    }

    .option-product-icon img {
        max-width: 40px;
    }

    .option-product h2 {
        font-family: vazir-light;
        font-weight: 400;
        font-size: 10px;
        color: rgb(51, 51, 51);
        pointer-events: none;
        margin-top: 10px;
    }

    .img-product {
        max-height: 250px;
    }

    .img-product-selected img {
        max-height: 170px;
    }

    .select-img-product {
        align-items: center;
        justify-content: center;
    }

    .select-img-product .image {
        width: 20%;
        height: 60px;
    }

    .addtocart-footer-back-phone {
        display: flex;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        align-items: center;
        justify-content: center;
        padding: 0 auto;
        margin: 0 auto;
    }

    .learn-single-top-txt-link {
        flex-wrap: wrap;
    }

    .learn-single-top-txt-link a {
        font-size: 13px;
    }

    .blog-home-content div p {
        bottom: unset;
        top: 50px;
    }

    #blog-home-content-p {
        font-size: 15px;
        text-align: justify;
    }

    .events-section#home-events-section .home-text1-content h1 {
        width: 100%;
        text-align: center;
    }

    .navbar.navbar-down {
        background-color: var(--white);
        z-index: 120;
    }

    .learn-section {
        padding: 120px 10px 100px 10px;
    }

    .learn-section-back {
        width: 100%;
    }

    /* .learn-section-back#learn-section-videos .learn-posts-back{width: 100%;} */
    .learn-single-top-txt h1 {
        font-size: 25px;
    }

    .learn-section-back#learn-section-videos .learn-post-title h2 {
        font-size: 15px;
    }
    .video-single-info{
        flex-direction: column;
        gap: 20px;
    }
    .add-comment-nouser{
        flex-wrap: wrap;
        justify-content: center;
    }
    .add-comment-nouser p{
        text-align: center;
        padding: 0;
    }
    form.add-comment-nouser{
        border-radius: 30px;
    }
    .comments-back{
        /* width: 100%; */
        align-items: center;
        margin: 0 auto;
    }
    #share-back-nav-div-back{
        left: -110%;
    }
}

@media (max-width: 400px) {
    .blog-content-div-img {
        height: auto;
    }

    .blog-content-div {
        flex-direction: column;
    }

    .home-text1.home-text2 .home-text1-img p {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding-right: 10px;
    }

    .home-text1.home-text2 .home-text1-img p a {
        padding-right: 0;
    }

    .home-text1.home-text2 .home-text1-img h1 {
        padding-right: 10px;
    }
    #share-back-nav-div-back{
        left: -70%;
    }
}