html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    /* vertical-align: baseline; */
}


body {
    line-height: 1;
    position: relative;
    padding-top: 20px;
    font-family: Iransansx;
    font-weight: normal;
}

.min-vh-100 {
    min-height: 100vh;
}

.vh-100 {
    height: 100vh;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

* {
    line-height: normal;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


/* End Css Resset */

@font-face {
    font-family: Iransansx;
    src: url('/web/fonts/IRANSansX.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: Cutino;
    src: url('/web/fonts/cutino.woff') format('woff');
    font-display: swap;
}


:root {
    --primary-100: #008666;
    --primary-90: #00AC82;
    --primary-80: #00D19F;
    --primary-70: #00F7BC;
    --primary-60: #1DFFC9;
    --primary-50: #43FFD2;
    --primary-40: #69FFDB;
    --primary-30: #8EFFE4;
    --primary-20: #B4FFED;
    --primary-10: #D9FFF6;
    --primary-5: #F2F9F7;
    --Secondary-100: #001F86;
    --Secondary-90: #0028AC;
    --Secondary-80: #0030D1;
    --Secondary-70: #0039F7;
    --Secondary-60: #1D52FF;
    --Secondary-50: #436EFF;
    --Secondary-40: #698BFF;
    --Secondary-30: #8EA8FF;
    --Secondary-20: #B4C5FF;
    --Secondary-10: #D9E2FF;
    --Tertiary-100: #861900;
    --Tertiary-90: #AC2000;
    --Tertiary-80: #D12700;
    --Tertiary-70: #F72E00;
    --Tertiary-60: #FF471D;
    --Tertiary-50: #FF6643;
    --Tertiary-40: #FF8569;
    --Tertiary-30: #FFA38E;
    --Tertiary-20: #FFC2B4;
    --Tertiary-10: #FFE0D9;
    --white-100: #FFFFFF;
    --black-100: #000000;
    --black-90: #1A1A1A;
    --black-80: #333333;
    --black-70: #4D4D4D;
    --black-60: #666666;
    --black-50: #808080;
    --black-40: #999999;
    --black-30: #B3B3B3;
    --black-20: #CCCCCC;
    --black-10: #E6E6E6;
    --black-5: #f5f5f5;
    --alert: #810000;
    --image-gradient: rgba(0, 145, 193, 0.50);
}

* {
    font-family: Iransansx;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: var(--primary-100);
}

.main {
    display: flex;
    flex-direction: column;
    position: relative;
}

p {
    font-size: 16px;
    line-height: 40px;
    color: var(--black-90);
    margin-bottom: 15px;
}

p.large {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 30px;
}

p.normal {
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

.flex-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flex-area-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    height: 135px;
    justify-content: start;
}

img,
video {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Background */
.index-bg::before {
    content: "";
    position: absolute;
    height: 900px;
    width: 680px;
    background-image: url(img/bg/shadow.svg);
    background-size: cover;
    top: -200px;
    left: 0;
    z-index: -1;
}

/* Spaces */
.section-padding {
    padding-top: 150px;
    padding-bottom: 150px;
}

.section-margin {
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-margin {
    margin-top: 100px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mt-100 {
    margin-top: 100px;
}

/* Buttons */
.button {
    width: fit-content;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: Iransansx;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    opacity: 1;
    transition: 0.3s;
    outline: none;
    border: none;
    cursor: pointer;
}

.button.lg {
    height: 50px;
}

.button.sm {
    height: 40px;
}

.button i {
    font-size: 20px;
}

.button.primary {
    background-color: var(--primary-100);
    color: white;
}

.button.primary.outline {
    background-color: transparent;
    color: var(--primary-100);
    border: 2px solid var(--primary-100);
}

.button.secondary {
    background-color: var(--Secondary-100);
    color: white;
}

.button.secondary.outline {
    background-color: transparent;
    color: var(--Secondary-100);
    border: 2px solid var(--Secondary-100);
}

.button.primary.square {
    background-color: var(--primary-100);
    color: white;
    padding: 13px;
    width: 50px;
}

.button.primary.outline.square {
    background-color: transparent;
    color: var(--primary-100);
    border: 2px solid var(--primary-100);
    padding: 13px;
    width: 50px;
}

.button.primary.square.o10 {
    background-color: var(--primary-10);
    color: var(--primary-100);
    ;
}

.button:hover {
    opacity: 0.8;
    transition: 0.3s;
}

.button.special {
    padding-left: 10px;
}

.button.special.square {
    padding: 10px;
}

.button.primary.special i {
    background-color: var(--black-10);
    color: var(--primary-100);
    border-radius: 5px;
    padding: 7px;
    font-size: 15px;
}

.button.secondary.special i {
    background-color: var(--black-10);
    color: var(--Secondary-100);
    border-radius: 5px;
    padding: 7px;
    font-size: 15px;
}

.add-button i {
    font-size: 24px !important;
}

.reply-button {
    border-radius: 5px;
    border: 1px solid var(--black-20);
    background-color: var(--white-100);
    color: var(--black-20);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    font-size: 12px;
    width: fit-content;
    transition: 0.3s;
}

.reply-button i {
    font-size: 15px;
}

.reply-button:hover {
    opacity: 0.7;
    transition: 0.3s;
}


/* Header */
.responsive-area,
.exit-responsive {
    display: none;
}

nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 50px;
}

nav ul li a {
    color: var(--black-90);
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--primary-100);
    transition: 0.3s;
}

nav ul li a.active {
    color: var(--primary-100);
    font-weight: 700;
}

.left-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
}

/* Footer */
footer hr {
    margin: 0;
    border: 3px solid var(--primary-10);
}

.newsletter-area {
    margin-bottom: 40px;
    margin-right: auto;
    margin-left: auto;
}

.newsletter {
    background-color: var(--primary-10);
    border-radius: 5px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-title {
    font-size: 20px;
    color: var(--Secondary-100);
    font-weight: 700;
}

.newsletter-title span,
.social-media-title span {
    color: var(--primary-100);
}

.newsletter form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter form input {
    border-color: var(--primary-100);
    min-width: 230px;
    max-width: 260px;
}

.newsletter form input::placeholder {
    color: var(--primary-50);
}

.newsletter button {
    border-radius: 5px;
}


.social-media {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-media-title {
    font-size: 20px;
    font-weight: 700;
}

.socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-100);
    font-size: 30px;
}

.footer-section-title {
    font-size: 25px;
    color: var(--black-100);
    margin-bottom: 20px;
}

.footer-section-title::after {
    content: "";
    display: inline-block;
    border-radius: 20px;
    margin-right: 20px;
    color: var(--primary-10);
    width: 30px;
    border: 3px solid var(--primary-10);
}

.footer-section-info {
    display: flex;
    gap: 10px;
}

.footer-section-info>div {
    border-radius: 5px;
    border: 1px solid var(--black-10);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 115px;
    height: 115px;
    transition: 0.3s;
}

.footer-section-info>div:hover {
    filter: grayscale(1);
    transition: 0.3s;
}

.footer-section-info>div a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section-info>div img {
    height: 95px;
}

.footer-section-links {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.footer-section-links a {
    font-size: 16px;
    line-height: 35px;
    color: var(--black-100);
    transition: 0.3s;
}

.footer-section-description {
    font-size: 16px;
    line-height: 35px;
    color: var(--black-100);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section-description a {
    color: var(--black-100);
    transition: 0.3s;
}

.footer-section-description li span:first-child {
    color: var(--primary-100);
    font-weight: 700;
}

.copyright {
    color: var(--black-100);
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    display: block;
}

/* Cards */
.card {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--primary-10);
    background-color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.card:hover {
    background-color: var(--primary-10);
    transition: 0.3s;
}

.card.product {
    gap: 15px;
    width: fit-content;
    border: 1px solid var(--black-10);
}

.card.product:hover {
    background-color: var(--primary-5);
}

.card.product img {
    max-width: 350px;
    max-height: 350px;
    object-fit: cover;
}

.card.service:hover {
    border: 1px dashed var(--primary-100);
}

.card-header {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
}

.card-badge {
    background-color: var(--primary-100);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 26px;
    border-radius: 2.5px;
}

.card-badge.left-side {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 3;
}

.card-badge.right-side {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 3;
}

.card-badge.icon {
    font-size: 20px;
    width: 26px;
}

.card-badge.text {
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
}

.card-badge.new {
    background-color: var(--yellow);
    color: var(--Secondary-100);
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
}

.card-image {
    position: relative;
    display: flex;
}

.card-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.card-image::before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 145, 193, 0.00) 0%, var(--image-gradient) 100%);
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
    border-radius: 5px;
}

.card-title {
    color: var(--Secondary-100);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    width: 100%;
}

.card.product .card-title {
    color: var(--black-90);
    font-size: 20px;
}

.card-description {
    color: var(--Secondary-80);
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    line-clamp: 3;
}


.card.product .card-description {
    color: var(--black-50);
    font-size: 16px;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    line-clamp: 1;
}

.card .button {
    width: 100%;
}

.card.service {
    padding: 40px 20px;
}

.card.service img {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.card.service .card-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-100);
}

.card.service .card-description {
    font-size: 16px;
    font-weight: normal;
    color: var(--black-90);
}

.card-v2 {
    display: flex;
    align-items: center;
    gap: 25px;
    border-radius: 5px;
    border-top: 1px solid var(--primary-10);
    border-right: 5px solid var(--primary-10);
    border-bottom: 1px solid var(--primary-10);
    border-left: 1px solid var(--primary-10);
    background-color: white;
    padding: 25px 30px;
    transition: 0.3s;
    height: 100%;
}

.card-v2:hover {
    background-color: var(--primary-10);
    border-color: var(--primary-30);
    transition: 0.3s;
}

.card-v2 i {
    font-size: 50px;
    color: var(--primary-100);
}

.card-v2-detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-v2-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-100);
}

.card-v2-description {
    font-size: 16px;
    color: var(--Secondary-100);
}

.card-simple {
    border: 3px solid var(--primary-10);
    background-color: var(--white-100);
    border-radius: 5px;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.card-simple i {
    font-size: 50px;
    color: var(--primary-100);
    margin-bottom: 20px;
}

.member .card-badge {
    background-color: var(--primary-10);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-100);
    padding: 5px 10px;
}

.card-badge {
    background-color: var(--primary-10);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-100);
    padding: 5px 10px;
}

.service-card .card-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--white-100);
    text-align: center;
}

.service-card .video-detail {
    gap: 10px;
    height: 100%;
    justify-content: end;
    padding-bottom: 30px;
}

.service-card img {
    border-radius: 5px;
    border: none;
}


.sidebar-card {
    border-radius: 5px;
    border: 1px solid var(--primary-5);
    background-color: white;
    padding: 15px;
}

.sbcard-title {
    border-radius: 5px;
    padding: 10px;
    background-color: var(--primary-10);
    color: var(--primary-100);
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 25px;
}

.blog-card {
    display: flex;
    gap: 20px;
    border: 1px solid var(--black-10);
    border-radius: 5px;
    padding: 15px;
    background-color: var(--white-100);
    flex-direction: column;
    height: 100%;
    transition: 0.3s;
}

.blog-card:hover {
    background-color: var(--primary-5);
    transition: 0.3s;
}

.blog-card.full {
    flex-direction: row;
    align-items: center;
}

.blog-card.full h6 {
    color: var(--black-90);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: right;
}

.blog-card h6 {
    color: var(--black-90);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.blog-card p {
    color: var(--black-50);
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 25px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    line-clamp: 1;
    text-align: center;
}

.blog-card.full p {
    color: var(--black-90);
    font-size: 18px;
    font-weight: 500;
    text-align: right;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    line-clamp: 3;
}

.blog-card.full img {
    width: 320px;
    height: 320px;
    border-radius: 5px;
    object-fit: cover;
    object-position: center;
}

.blog-card img {
    width: 100%;
    height: 300px;
    border-radius: 5px;
    object-fit: cover;
    object-position: center;
}

.blog-card.full .button {
    width: fit-content;
}

.blog-card .button {
    width: 100%;
    margin-top: auto;
}

/* Carousel */
.owl-theme .owl-dots {
    margin-top: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.owl-testimonial {
    margin-top: 30px;
    margin-bottom: 50px;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 25px;
    border-radius: 18px;
    transition: 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--primary-100);
}

.owl-theme .owl-dots .owl-dot span {
    border: 1px solid var(--primary-100);
    background-color: white;
    width: 15px;
    height: 15px;
    margin: 0;
    transition: 0.3s;
}

.owl-podcast .owl-item,
.owl-testimonial .owl-item {
    transform: scale(0.5);
    transition: transform 0.3s ease-in-out;
    opacity: 0.5;
}

.owl-podcast .owl-item.center,
.owl-testimonial .owl-item.center {
    transform: scale(1);
    position: relative;
    z-index: 1;
    opacity: 1;
}

.owl-podcast .owl-stage,
.owl-testimonial .owl-stage {
    display: flex;
    align-items: center;
}

.owl-podcast .owl-dots .owl-dot span {
    border: 1px solid var(--primary-50);
}

.owl-podcast .owl-dots .owl-dot.active span,
.owl-podcast .owl-dots .owl-dot:hover span {
    border: none;
}

.owl-testimonial .playVideo i {
    font-size: 50px;
}


/* Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    height: 50px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid var(--black-10);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Iransansx;
    font-size: 14px;
    color: var(--black-100);
    transition: 0.3s;
    outline: none;
}

textarea {
    border-radius: 5px;
    background-color: white;
    border: 1px solid var(--black-10);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Iransansx;
    font-size: 14px;
    color: var(--black-100);
    transition: 0.3s;
    outline: none;
}

input::placeholder {
    color: var(--black-30);
}

input:is(:hover, :active, :focus),
textarea:is(:hover, :active, :focus) {
    border-color: var(--primary-100);
    transition: 0.3s;
}

input:is(:hover, :active, :focus)+label,
textarea:is(:hover, :active, :focus)+label {
    color: var(--primary-100);
    transition: 0.3s;
}

.form-group {
    display: flex;
    align-items: center;
    position: relative;
}

.form-group.w-50 {
    width: calc(50% - 8px);
}

.form-group.w-100 {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
}

.form-group label {
    position: absolute;
    background-color: var(--white-100);
    right: 10px;
    padding: 0 5px;
    line-height: 20px;
    top: -10px;
    font-size: 14px;
    color: var(--black-100);
    transition: 0.3s;
}

.search input {
    padding-right: 40px;
}

.search label {
    position: absolute;
    font-size: 24px;
    top: 50%;
    left: 100%;
    right: 10px;
    padding: 0;
    transform: translate(-50%, -50%);
    color: var(--black-30);
}


.custom-select {
    color: var(--black-30);
    position: relative;
}

.custom-select select {
    display: none;
}

.select-selected {
    height: 50px;
    border: 1px solid var(--black-10);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black-30);
    font-size: 14px;
    transition: 0.3s;
}

.select-selected:hover,
.select-selected.select-arrow-active {
    color: var(--primary-100);
    border-color: var(--primary-100);
    transition: 0.3s;
}

.select-selected:after {
    content: "";
    font-family: Cutino;
    content: "\e90d";
    font-size: 10px;
    transition: 0.3s;
}

.select-selected.select-arrow-active:after {
    transform: rotate(-90deg);
    transition: 0.3s;
}

.select-items div,
.select-selected {
    color: var(--black-100);
    padding: 14px 10px;
    cursor: pointer;
    transition: 0.3s;
}

.select-items {
    position: absolute;
    background-color: var(--white-100);
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 5px;
    border: 1px solid var(--black-10);
    font-size: 14px;
    transition: 0.3s;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: var(--primary-10);
    transition: 0.3s;
    color: var(--primary-100);
}

.select-items div:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.select-items div:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.custom-select label {
    display: none;
}


.sidebar-card form label {
    position: relative;
    top: auto;
    right: auto;
    background-color: transparent;
    font-size: 16px;
    line-height: normal;
}

.sidebar-card form input:checked~label {
    color: var(--primary-100);
    font-weight: bold;
}

.sidebar-card form input:not(:checked)~label {
    color: var(--Secondary-100);
}


.sidebar-card form {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-g {
    display: block;
    position: relative;
    padding-right: 17px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-g input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radiomark {
    position: absolute;
    top: 4px;
    right: 0;
    height: 12px;
    width: 12px;
    border: 1px solid var(--black-100);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-g input[type="radio"]~.radiomark {
    border-radius: 50%;
}

.form-g input[type="radio"]:checked~.radiomark::before {
    border-radius: 50%;
}


.form-g input:checked~.radiomark {
    border-color: var(--primary-100);
}

.form-g span:last-child {
    line-height: 20px;
    display: block;
    color: var(--black-100);
}

.radiomark::before {
    content: "";
    position: absolute;
    display: none;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    background-color: var(--primary-100);
}

.form-g input:checked~.radiomark::before {
    display: block;

}

.checkmark {
    position: absolute;
    top: 4px;
    right: 0;
    height: 12px;
    width: 12px;
    border: 1px solid var(--Secondary-100);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-g input:checked~.checkmark {
    border-color: var(--primary-100);
}

.checkmark::before {
    content: "";
    position: absolute;
    display: none;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    background-color: var(--primary-100);
}

.form-g input:checked~.checkmark::before {
    display: block;

}

.form-g input:checked~span {
    color: var(--primary-100);
    font-weight: bold;
}

.form-g.product-color input:checked~span {
    color: var(--black-100);
    font-weight: bold;
}

/* Pagination */
.pagination {
    margin-top: 60px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pagination a {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--black-90);
    background-color: var(--primary-5);
    transition: all 0.3s;
    font-size: 20px;
}

.pagination a.active {
    background-color: var(--primary-100);
    color: var(--white-100);
}

.pagination a:first-child {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 20px;
    border: none;
    background-color: transparent;
    font-size: 20px;
    color: var(--black-50);
}

.pagination a:last-child {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 20px;
    border: none;
    background-color: transparent;
    font-size: 20px;
    color: var(--black-50);
}

.pagination a:last-child:hover,
.pagination a:first-child:hover {
    background-color: transparent;
    color: var(--primary-100);
}

.pagination a:hover {
    background-color: var(--primary-10);
    transition: all 0.3s;
    color: var(--primary-100);
}


/* Comment */

.comment-area .title-area {
    margin-bottom: 30px;
}

.comment-form button {
    margin-top: 5px;
}

.comment-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.reply-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}

.user-comment hr {
    border: 1px solid var(--black-10);
    outline: none;
    margin: 10px auto;
}

.user-comment {
    border-radius: 5px;
    background-color: var(--white-100);
    padding: 15px;
}

.user-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-details img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.user {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-100);
}

.comment-date {
    font-size: 12px;
    color: var(--black-40);
}

.comment-description {
    font-size: 14px;
    line-height: 25px;
    color: var(--black-80);
    margin-top: 20px;
    display: block;
}

.support-comment {
    border-radius: 5px;
    background-color: var(--primary-5);
    padding: 15px;
    width: 96%;
    margin-right: auto;
}

.support-comment .user-name {
    color: var(--primary-100);
}

.support-comment hr {
    border: 1px solid var(--primary-40);
    outline: none;
    margin: 10px auto;
}

/* General */
.hero .row {
    align-items: center;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    color: var(--black-90);
    margin-bottom: 30px;
}

.hero p {
    color: var(--black-90);
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 30px;
}

.hero-title {
    display: flex;
    flex-direction: column;
}

.hero-title>span:first-child {
    color: var(--black-90);
}

.hero-note {
    color: var(--black-90);
    position: relative;
}

.hero-note::after {
    content: url('img/dastnevis.svg');
    position: absolute;
    left: -50px;
    bottom: 40px;
    width: 76px;
    height: 71px;
}

.title-area {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.english-title {
    display: block;
    margin-top: -60px;
    font-size: 100px;
    line-height: 60px;
    font-weight: bold;
    color: white;
    text-shadow:
        -1px -1px 0 var(--primary-20),
        1px -1px 0 var(--primary-20),
        -1px 1px 0 var(--primary-20),
        1px 1px 0 var(--primary-20);
    text-transform: uppercase;
}

.english-title.dark {
    color: var(--primary-5);
    text-shadow:
        -1px -1px 0 var(--black-10),
        1px -1px 0 var(--black-10),
        -1px 1px 0 var(--black-10),
        1px 1px 0 var(--black-10);
}

.english-title.secondary {
    color: var(--Secondary-10);
    text-shadow:
        -1px -1px 0 var(--Secondary-30),
        1px -1px 0 var(--Secondary-30),
        -1px 1px 0 var(--Secondary-30),
        1px 1px 0 var(--Secondary-30);
}

.section-title {
    font-size: 40px;
    line-height: 60px;
    font-weight: bold;
    color: var(--black-90);
    position: relative;
}

.section-title.dark::before,
.section-title.dark::after {
    color: var(--black-10);
    border: 3px solid var(--black-10);
}

.section-title.secondary::before,
.section-title.secondary::after {
    color: var(--Secondary-30);
    border: 3px solid var(--Secondary-30);
}

.section-title.secondary span {
    color: var(--Secondary-100);
}

.title-area.alert .section-title span {
    color: var(--alert);
}

.title-area.alert .english-title {
    opacity: 0.1;
    text-shadow: -1px -1px 0 var(--alert), 1px -1px 0 var(--alert), -1px 1px 0 var(--alert), 1px 1px 0 var(--alert);
}

.section-title::before {
    content: "";
    display: inline-block;
    border-radius: 20px;
    margin-left: 20px;
    color: var(--primary-10);
    width: 30px;
    border: 3px solid var(--primary-10);
}

.section-title::after {
    content: "";
    display: inline-block;
    border-radius: 20px;
    margin-right: 20px;
    color: var(--primary-10);
    width: 30px;
    border: 3px solid var(--primary-10);
}

.title-area.alert .section-title::before,
.title-area.alert .section-title::after {
    color: rgba(129, 0, 0, 0.1);
    border-color: rgba(129, 0, 0, 0.1);
}


.section-title i {
    color: var(--primary-100);
    font-size: 40px;
    margin-left: 10px;
    position: relative;
    top: 10px;
}

.section-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--black-50);
    margin-top: 20px;
    display: block;
}

.line {
    position: relative;
    display: flex;
    align-items: center;
    margin: 50px auto;
}

.line i {
    font-size: 30px;
    color: var(--primary-100);
}

.scissor-line {
    width: 100%;
    margin: 50px auto;
    border: none;
    height: 1px;
    background-image: linear-gradient(to right, var(--primary-100) 50%, transparent 50%);
    background-size: 14px 1px;
}

.line.left .scissor-line {
    width: calc(100% - 30px);
    margin-right: 0;
}

.line.left i {
    transform: scaleX(-1);
}

.line.right .scissor-line {
    width: calc(100% - 30px);
    margin-left: 0;
}

footer .line {
    margin: 15px auto;
}

footer .scissor-line {
    margin: 0;
}


.page-title-area {
    margin-bottom: 50px;
}

.page-title {
    margin-bottom: 15px;
}

.page-title::before,
.page-title::after {
    display: none;
}

.author-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.author-area img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    object-fit: cover;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    color: var(--Secondary-50);
    font-size: 14px;
    font-weight: bold;
    font-family: Doran;
}

.publish-date {
    color: var(--black-30);
    font-size: 12px;
}

.page {
    text-align: center;
}

.page img {
    width: 100%;
    height: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    border: 10px solid var(--primary-10);
}

.filter-area {
    margin-bottom: 30px;
}

.about-us img {
    margin: 0;
}

.about-us .image-dup {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    position: relative;
    z-index: 2;
}

.image-dup-course,
.image-dup-podcast {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    position: relative;
    z-index: 2;
}

.image-dup-course video {
    width: 100%;
    height: auto;
    display: flex;
    border-radius: 5px;
    border: 10px solid var(--primary-10);
}

.about-us .image-dup::before {
    content: "";
    position: absolute;
    background-image: url('img/wave-podcast.svg');
    width: 162px;
    height: 84px;
    top: 40px;
    right: -100px;
    z-index: -1;
}

.image-dup-course::before {
    content: "";
    position: absolute;
    background-image: url('img/dots.svg');
    background-repeat: no-repeat;
    width: 100px;
    height: 91px;
    top: -30px;
    right: -50px;
    z-index: -1;
}

.image-dup-podcast::before {
    content: "";
    position: absolute;
    background-image: url('img/wave-podcast-2.svg');
    width: 218px;
    height: 78px;
    top: 40px;
    right: -109px;
    z-index: -1;
}

.about-us .image-dup::after {
    content: "";
    position: absolute;
    background-image: url('img/wave-podcast.svg');
    width: 162px;
    height: 84px;
    bottom: 40px;
    left: -100px;
    z-index: -1;
}

.image-dup-course::after {
    content: "";
    position: absolute;
    background-image: url('img/dots.svg');
    background-repeat: no-repeat;
    width: 100px;
    height: 91px;
    bottom: -30px;
    left: -28px;
    z-index: -1;
}

.image-dup-podcast::after {
    content: "";
    position: absolute;
    background-image: url('img/wave-podcast-2.svg');
    width: 218px;
    height: 78px;
    bottom: 40px;
    left: -109px;
    z-index: -1;
}

.member .achievment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 80%;
}

.counter {
    color: var(--primary-100);
    font-size: 40px;
    line-height: 35px;
    font-weight: bold;
}

.achivement-title {
    font-size: 20px;
    color: var(--black-100);
}

aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 10px;
}

aside .search input {
    border-radius: 5px;
}

.archive-contet>div {
    margin-bottom: 20px;
}

.price-old {
    text-decoration: line-through;
    text-decoration-color: var(--Secondary-50);
    display: flex;
    align-items: center;
}

.price-old span:first-child {
    font-size: 15px;
    font-weight: bold;
    line-height: 30px;
    color: var(--Secondary-50);
}

.price-old span:last-child {
    font-size: 10px;
    font-weight: normal;
    line-height: 30px;
    color: var(--Secondary-50);
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.price span:first-child {
    font-size: 26px;
    font-weight: bold;
    line-height: 45px;
    color: var(--primary-100);
}

.price span:last-child {
    font-size: 14px;
    font-weight: normal;
    line-height: 45px;
    color: var(--black-50);
}

.card-wrapper {
    position: relative;
    display: flex;
    width: 100%;
}

.card-wrapper.team img {
    height: 500px;
    /* width: 380px; */
    object-fit: cover;
}

.service-page .card-wrapper.team img {
    height: 400px;
    object-position: top;
}

.video-overlay {
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    opacity: 1;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    border-radius: 5px;
    border: 5px solid var(--primary-10);
}

.card-overlay {
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 134, 102, 0.80) 0%, rgba(255, 255, 255, 0.00) 100%);
    opacity: 1;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    border-radius: 5px;
    border: 5px solid var(--primary-10);
}

.hero-video {
    width: fit-content;
    margin: 10px auto;
    position: relative;
}

.hero-video.card-wrapper>video[poster] {
    height: 590px;
    width: 100%;
    border-radius: 5px;
}

.hero-video>video {
    height: 590px;
    width: 100%;
    border-radius: 5px;

}

.responsive-video {
    display: none;
    margin-bottom: 30px;
}

.responsive-video video {
    border-radius: 6px;
}

.hero-video::before {
    content: "";
    position: absolute;
    top: -35px;
    right: -35px;
    background-color: var(--primary-100);
    height: 200px;
    width: 100px;
    z-index: -1;
}

.hero-video::after {
    content: url(img/bg/dot.svg);
    position: absolute;
    bottom: -30px;
    left: -50px;
    height: 100px;
    width: 100px;
    z-index: -1;
}

.video-detail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-10);
    transition: 0.3s;
    width: 100%;
    padding: 0 15px;
}

.video-title {
    font-size: 16px !important;
    margin-top: 10px;
}

.video-detail .playVideo {
    cursor: pointer;
    font-size: 70px;
    display: flex;
}

.video-detail:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.video-detail span {
    font-size: 20px;
    font-weight: 900;
}

.boxes {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.course-description {
    padding: 30px 20px;
    background-color: var(--primary-10);
    border-radius: 5px;
    border: 1px solid var(--primary-10);
    text-align: center;
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.course-description p {
    color: var(--Secondary-100);
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 30px;
}

.course-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.course-price span:first-child {
    color: var(--primary-100);
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
}

.course-price span:last-child {
    font-size: 15px;
    color: var(--Secondary-100);
    line-height: 30px;
}

.course-description .button {
    width: 100%;
}

.course-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: calc(50% - 10px);
}

.box {
    border: 1px solid var(--primary-10);
    border-radius: 5px;
    padding: 10px 20px;
    display: flex;
    gap: 5px;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    width: calc(50% - 10px);
    background-color: var(--white-100);
}

.box i {
    color: var(--primary-100);
    font-size: 40px;
}

.box-title {
    color: var(--primary-100);
    font-size: 25px;
    font-weight: 700;
}

.box-description {
    font-size: 16px;
    color: var(--Secondary-100);
}

.box-description small {
    font-size: 12px;
    color: var(--Secondary-100);
}

.subject-area {
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

.subject {
    width: calc(50% - 10px);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.subject.active {
    width: 100%;
    transition: 0.3s;
    background-color: var(--primary-10);
    border-color: var(--primary-30);
}

.subject>div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.subject-number {
    color: var(--primary-100);
    font-size: 80px;
    font-weight: bold;
}

.subject-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--primary-100);
}

.subject-description {
    font-size: 16px;
    color: var(--Secondary-100);
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    line-clamp: 2;
}

.subject.active .subject-description {
    line-height: 40px;
    text-overflow: unset;
    -webkit-line-clamp: unset;
    -moz-line-clamp: unset;
    line-clamp: unset;
}

.contact-info-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    width: 100%;
}

.contact-info span:first-child {
    color: var(--primary-100);
    font-weight: 900;
    font-size: 20px;
}

.contact-info {
    position: relative;
    width: calc(50% - 10px);
    background-color: var(--primary-5);
    border: 1px solid var(--black-10);
    padding: 15px;
    border-radius: 5px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info>i {
    color: var(--primary-100);
    font-size: 59px;
}

.contact-info,
.contact-info a {
    color: var(--black-100);
    font-size: 16px;
}

.gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.gallery-carousel.primary .gallery-overlay::before {
    background: linear-gradient(0deg, rgba(0, 134, 102, 0.6) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.gallery-carousel img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
    filter: grayscale(1);
    transition: all 0.3s;
}

.gallery-carousel img:hover {
    filter: grayscale(0);
    transition: all 0.3s;
}

.gallery-title {
    display: block;
    text-align: center;
    color: var(--Secondary-100);
    font-size: 16px;
}

.gallery-overlay {
    position: relative;
    display: flex;
}

.gallery-overlay::before {
    content: "";
    background: linear-gradient(0deg, rgba(0, 31, 134, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    border-radius: 5px;
}


.faq-page .search {
    margin-bottom: 50px;
}

.faq-page .search input {
    border-radius: 5px;
}

.error-404-page {
    margin-top: 200px;
    margin-bottom: 200px !important;
}

.error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.error-404 .title {
    font-size: 200px;
    font-weight: 900;
    line-height: 200px;
    color: var(--black-100);
}

.error-404 .section-title::before,
.error-404 .section-title::after {
    display: none;
}

.error-404 .section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Accordion */

.accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}


.accordion-header {
    padding: 20px 15px;
    cursor: pointer;
    color: var(--black-80);
    transition: 0.3s;
    font-size: 16px;
    font-weight: bold;
}

.accordion-item {
    border-bottom: 1px solid var(--black-10);
}

.accordion .accordion-item:last-child {
    border-bottom: none;
}

.accordion-content {
    display: none;
    padding: 12px 15px;
    color: var(--black-80);
    font-size: 14px;
    line-height: 25px;
}

.accordion-content p {
    margin: 0;
}

.accordion-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.accordion-item.active .accordion-header-content::after {
    transform: rotate(-90deg);
    color: var(--primary-100);
}

.accordion-header-content::after {
    font-family: Cutino;
    content: "\e905";
    transition: 0.3s;
    font-size: 20px;
    color: var(--black-70);
    font-weight: normal;
}


.accordion-item.active .accordion-header {
    color: var(--primary-100);
    transition: 0.3s;
}

.accordion-content .accordion {
    margin-top: 30px;
}

.accordion-content .accordion .accordion-item {
    border-color: var(--Secondary-20);
    background-color: var(--white-100)
}

.accordion-content .accordion .accordion-item.active {
    background-color: var(--white-100)
}

.accordion-content .accordion .accordion-item.active .accordion-header {
    color: var(--primary-100);
}

.accordion-content .accordion .accordion-header {
    color: var(--Secondary-100);
}

.accordion-content .accordion .accordion-header-content::after {
    color: var(--Secondary-70);
    transform: rotate(0deg);
}

.accordion-content .accordion .accordion-item.active .accordion-header-content::after {
    transform: rotate(-90deg);
    color: var(--primary-100);
}

.cart-item-area {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-left: 50px;
    gap: 20px;
}


.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    width: 100%;
    background-color: var(--primary-5);
    border-radius: 5px;
}

.cart-item img {
    border-radius: 5px;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.cart-detail {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item-detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--black-100);
    color: var(--primary-100);
    transition: 0.3s;
}

.item-title:hover {
    color: var(--primary-50);
    transition: 0.3s;
}

.item-description {
    font-size: 16px;
    color: var(--black-100);
}

.item-detail-2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: end;
}

.item-price {
    color: var(--primary-100);
    font-size: 10px;
}

.item-price span {
    font-weight: bold;
    font-size: 16px;
}

.remove-item {
    cursor: pointer;
    transition: 0.3s;
    color: var(--black-50);
}

.remove-item:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.remove-discount {
    cursor: pointer;
    transition: 0.3s;
    padding-right: 6px;
    margin-right: 6px;
    border-right: 1px dashed #dbac20;
}

.remove-discount:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.discount-form {
    margin-bottom: -10px;
    position: relative;
}

.discount-form input {
    height: 40px;
    width: 100%;
}

.discount-form button {
    height: 28px;
    width: 28px !important;
    border-radius: 2.5px;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translate(0, -50%);
}

.discount-form button i {
    font-size: 15px;
}

.pay {
    width: 100%;
    height: 45px;
    border-radius: 5px;
}

.cart-margin {
    margin-bottom: 300px !important;
}

.cart-summary {
    background-color: var(--white-100);
    border-radius: 5px;
    border: 1px solid var(--black-5);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 10px;
}

.cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-row-title {
    display: flex;
    font-size: 16px;
    color: var(--black-50);
    gap: 5px;
    align-items: center;
}

.discount-label {
    background-color: #F7C737;
    color: var(--black-100);
    font-size: 10px;
    display: flex;
    align-items: center;
    padding: 2px 6px;
    border-radius: 5px;
}

.cart-summary hr {
    width: 100%;
    margin: 0;
    border-style: none;
    border: 1px solid var(--primary-5);

}

.item-price.empty,
.item-price.empty span {
    font-size: 16px;
    color: var(--black-50);
    font-weight: normal;
}

.cart-row-title.bold {
    font-weight: bold;
    color: var(--primary-100);
}

.purchase {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.purchase>i {
    font-size: 50px;
    margin-bottom: 20px;
}

.purchase.success i,
.purchase.success .purchase-notif {
    color: var(--primary-100);
}

.purchase.fail i,
.purchase.fail .purchase-notif {
    color: var(--alert);
}

.purchase.fail .button {
    background-color: var(--alert);
}

.purchase.fail .button i {
    color: var(--alert);
}

.purchase-notif {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.purchase-description {
    font-size: 16px;
    color: var(--black-100);
    margin-bottom: 20px;
    text-align: center;
}

.testimonial video {
    border-radius: 5px;
}

.responsive-sidebar-btn {
    display: none;
}

.book-page .search {
    margin-bottom: 30px;
}

.book-page .search input {
    border-color: var(--primary-50);
    transition: 0.3s;
}

.book-page .search input:is(:hover, :active, :focus) {
    border-color: var(--primary-100);
    transition: 0.3s;
}

.book-page .search input:is(:hover, :active, :focus)~label {
    color: var(--primary-100);
}

.book-page .search label {
    color: var(--primary-50);
}

.book-page .accordion {
    gap: 10px;
}

.book-page .accordion-item {
    border: 1px solid var(--primary-10);
    border-radius: 5px;
}

.book-page .accordion-item.active {
    background-color: var(--primary-5);
}

.color-area {
    padding: 50px 0;
}

.color-area::before {
    content: "";
    background-color: var(--primary-5);
    width: 100%;
    height: 350px;
    position: absolute;
    left: 0;
    z-index: -1;
}

.color-area.secondary::before {
    content: "";
    background-color: var(--Secondary-10);
    width: 100%;
    height: 350px;
    position: absolute;
    left: 0;
    z-index: -1;
}

.color-area .owl-carousel .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    transition: 0.3s;
}

.color-area .owl-carousel .item img {
    height: 90px;
    width: auto;

}

.color-area .owl-carousel .item a:hover {
    filter: grayscale(0);
    transition: 0.3s;
}

.list-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-check i {
    font-size: 35px;
    color: var(--primary-100);
}

.list-check span {
    color: var(--black-90);
    font-size: 20px;
    font-weight: 700;
    line-height: 35px;
}

.button-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.button-area button {
    font-size: 24px;
    color: var(--black-100);
    width: 50px !important;
    background-color: var(--primary-10);
}

.button-area .button {
    width: fit-content;
}

.hero-img {
    border-radius: 5px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.special-swiper .swiper-slide {
    filter: grayscale(1) blur(1px);
    transition: 0.3s;
    transform: scale(0.6);
}

.special-swiper .swiper-slide.swiper-slide-active {
    transition: 0.3s;
    transform: scale(1);
    filter: grayscale(0);
    z-index: 2;
}

.special-swiper .swiper-slide.swiper-slide-prev,
.special-swiper .swiper-slide.swiper-slide-next {
    z-index: 1;
    transform: scale(0.8);
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-100);
}

.secondary .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--Secondary-100);
}

.contact-form form {
    background-color: var(--white-100);
    border: 1px solid var(--black-10);
    border-radius: 5px;
    padding: 25px 20px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.address {
    margin-top: 30px;
    margin-bottom: 40px;
}

.resume-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resume-item {
    display: flex;
    gap: 10px;
}

.resume-item i {
    font-size: 30px;
    color: var(--primary-100);
}

.resume-item span {
    color: var(--black-90);
    font-size: 16px;
}

.testimonial-card {
    background-color: var(--primary-5);
    border-radius: 5px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.testimonial-header i {
    font-size: 80px;
    color: var(--primary-100);
    transform: scale(-1);
}

.testimonial-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-title span:first-child {
    font-size: 18px;
    color: var(--black-100);
    font-weight: 700;
}

.testimonial-title span:last-child {
    font-size: 12px;
    color: var(--black-100);
    font-weight: 500;
}

.product-slider {
    height: 80%;
    width: 100%;
}

.product-slider .swiper-slide-active img {
    border: 1px solid var(--black-10);
}

.product-slider-thumb {
    height: 20%;
    box-sizing: border-box;
    padding: 20px 0;
}

.product-slider-thumb .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    border-radius: 5px;
    border: 1px solid var(--black-10);
}

.product-slider-thumb .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: rgba(0, 0, 0, 0.2);
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-header h1 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-header .product-english {
    font-size: 18px;
    color: var(--black-40);
    font-weight: 400;
}

.product-header hr {
    margin-top: 20px;
    margin-bottom: 50px;
    opacity: 0.3;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-details-row {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.product-details-row>span:first-child {
    font-size: 20px;
    font-weight: 700;
}

.product-details-row>span:last-child {
    font-size: 16px;
    font-weight: 500;
}

.product-footer>span {
    font-size: 16px;
    color: var(--black-40);
    display: block;
    margin-bottom: 20px;
}

.product-cta {
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: center;
}

.product-cta .product-price {
    display: flex;
    gap: 2px;
    align-items: center;
    font-size: 16px;
    color: var(--black-100);
}

.product-cta .product-price .price {
    color: var(--primary-100);
    font-size: 30px;
    font-weight: 700;
}

.color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    border: 1px solid var(--black-10);
}

.color.red {
    background-color: red;
}

.color.white {
    background-color: white;
}

.color.black {
    background-color: black;
}

.product-details-row form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-color {
    display: flex;
    font-size: 16px;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--black-10);
    border-radius: 5px;
    padding-right: 0;
    padding: 5px 10px;
}

.single-bg::before {
    content: "";
    width: 100%;
    height: 250px;
    position: absolute;
    top: 0;
    z-index: -1;
    background-color: var(--primary-5);
}

.content-card {
    background-color: var(--white-100);
    border-radius: 20px;
    border: 1px solid var(--black-10);
    padding: 40px;
}

.content-sidebar {
    margin-top: 80px;
}

.content-header {
    display: flex;
    gap: 30px;
    align-items: center;
}

.content-header i {
    color: var(--primary-100);
    font-size: 60px;
}

.content-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--black-100);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a {
    color: var(--black-80);
}

.breadcrumb span {
    color: var(--black-30);
}

.content-card hr {
    margin-top: 40px;
    margin-bottom: 30px;
    opacity: 0.4;
}

.content-description img {
    border: 10px solid var(--primary-5);
    border-radius: 5px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 20px;
}

.content-sidebar i {
    font-size: 30px;
    color: var(--black-50);
    transition: 0.3s;
}

.content-sidebar i:hover {
    color: var(--primary-100);
    transition: 0.3s;
}

.content-time {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.content-time span {
    font-size: 10px;
    color: var(--black-50);
}

.comment-icon {
    position: relative;
}

.comment-number {
    position: absolute;
    top: -7px;
    right: -3px;
    font-size: 10px;
    color: var(--primary-100);
    background-color: var(--primary-50);
    border-radius: 100%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-form {
    gap: 20px;
}

.auth-form .sidebar-card {
    padding: 0;
    border: none;
    background-color: transparent;
}

.form-chr label {
    position: relative;
    background-color: transparent;
    right: auto;
    padding: 0 17px 0 5px;
    line-height: 20px;
    top: auto;
    font-size: 14px;
    color: var(--black-100);
    transition: 0.3s;
}

.form-chr.w-100 {
    width: 100%;
    gap: 30px;
}

.auth-form select {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid var(--black-10);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Iransansx;
    font-size: 14px;
    color: var(--black-100);
    transition: 0.3s;

}

.auth-form button {
    margin-top: 30px;
}

.auth-link {
    text-align: center;
}

.auth-link a {
    color: var(--primary-100);
    font-weight: 700;
    transition: 0.3s;
}

.auth-link a:hover {
    opacity: 0.4;
    transition: 0.3s;
}

.auth-link.v2 a {
    color: var(--black-30);
    font-weight: 500;
}
.address-area {
    width: 100%;
    padding: 20px;
    border: 1px solid var(--black-5);
    border-radius: 5px;
    background-color: var(--white-100);
}
.address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.address-header h5 {
    font-size: 20px;
}
.address-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.address-row {
    padding: 20px;
}
.address-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}
.address-title {
    font-size: 18px;
    font-weight: 700;
}
.address-description a {
    color: var(--black-100);
}
.address-row.active {
    background-color: var(--primary-5);
}
.address-row.active .address-title {
    color: var(--primary-100);
}


/* Modal */
.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
    background-color: var(--white-100);
    border-radius: 10px;
    padding: 50px;
    width: 650px;
}

.modal.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.modal .button-area {
    margin-top: 50px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.modal .modal-content>i {
    font-size: 80px;
    color: var(--primary-100);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.modal-notif {
    font-size: 20px;
    font-family: Iransansx;
    color: var(--black-90);
    font-weight: 700;
    text-align: center;
}

.modal-notif span {
    color: var(--primary-100);
}
.modal-description {
    margin-top: 30px;
}
.modal-description button {
    width: fit-content !important;
    margin-top: auto !important;
    font-size: 16px;
}
