@charset "utf-8";

:root {
    --primary: 198, 40, 40;
    --secondary: 245, 235, 235;
    --accent1: 239, 83, 80;
    --accent2: 183, 28, 28;
    --text: 51, 51, 51;
    --active: 229, 57, 53;
    --hover: 183, 28, 28;
    --button: 198, 40, 40;
    --white: 255, 255, 255;
}

@font-face {
    font-family: yekan;
    src: url(assets/fonts/Yekan.woff);
}

@keyframes color-change {
    0% {
      background-color: rgb(var(--accent1));
    }
    30% {
      background-color: rgb(255, 81, 188);
    }
    60% {
        background-color: rgb(var(--accent2));
    }
    100% {
      background-color: rgb(67, 0, 0);
    }
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: 0;
    list-style: none;
    transition: 0.3s ease-in all;
    font-style: none;
    text-decoration: none;
}

body {
    background-color: rgb(var(--text));
    font-family: "yekan", 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    overflow-x: hidden;
    direction: rtl;
}

body main #main #mobile-header p {
    font-size: 13px;
    font-weight: 800;
    color: rgb(var(--accent1));
    text-align: center;
}

nav {
    width: clamp(150px, 20vw, 300px);
    height: 100vh;
    direction: rtl;
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(var(--white));
    z-index: 2;
}

#hamburger {
    display: none;
}

nav section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 1vh 0;
    width: 100%;
}

nav hr {
    width: 80%;
    height: 1px;
    background-color: rgb(var(--white));
    opacity: 0.9;
    margin: 0 auto;
}

nav section img {
    width: clamp(120px, 8vw, 150px);
}

nav section h1 {
    font-weight: 800;
    font-size: clamp(16px, 1.2vw, 20px);
}

nav section ul {
    width: 70%;
}

nav section ul li {
    font-size: 12px;
    width: 100%;
    height: 4.5vh;
    font-weight: 100;
    padding: 0.7vh 0px 0.7vh 0px;
    margin: 2.6vh 0 2.6vh 0;
    background-color: rgba(var(--white), 0.1);
    border-radius: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
    cursor: pointer;
    transition: 0.6s ease all;
}

nav section ul li:hover {
    scale: 1.05;
}

nav section ul li span {
    font-weight: 100;
    font-size: clamp(12px, 1.2vw, 12px);
}

nav section ul li svg {
    fill: rgb(var(--accent1));
    width: 2vw;
    height: auto;
}

nav section ul li#active {
    background-color: rgb(var(--active));
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

nav section ul li#active svg {
    fill: rgb(var(--white));
}

nav section ul li#signIn {
    background-color: rgb(var(--accent1));
}

nav section ul li#signIn svg {
    fill: rgb(var(--white));
}

nav section ul li#signUp {
    background-color: rgb(var(--hover));
}

nav section ul li#signUp svg {
    fill: rgb(var(--white));
}

main {
    width: 78vw;
    height: 95vh;
    background-color: rgb(var(--secondary));
    border-radius: 30px;
    position: fixed;
    top: 50%;
    transform: translate(0, -50%);
    left: 2vw;
    overflow-y: scroll;
    overflow-x: hidden;
    direction: ltr;
    z-index: 3;
}

#main {
    margin-top: 0px;
    padding: 50px 30px;
    height: 4300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 3fr 1fr 2fr 5fr 1fr 5fr 1fr 1fr 3fr 1fr 2fr;
    gap: 50px;
    width: calc(100%-60px);
    direction: rtl;
}

#mobile-header {
    display: none;
}



#main .container {
    border-radius: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    color: rgb(var(--secondary));
}

#main #slideshow-container {
    grid-column-start: 1;
    grid-column-end: 3;
    position: relative;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
}

/* ---------- حالت اصلی ----------*/
.gallery-item {
    background-color: rgb(var(--secondary));
    height: 100%;
    position: absolute;
    transition: 1s cubic-bezier(.75, -0.51, .25, 1.45) all;
    width: 100%;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.glass-item {
    position: absolute;
    color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    background-color: #b71c1c99;
    height: 37%;
    width: 60%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    border: 2px solid #ef5350;
    z-index: 10000;
    box-shadow: 0px 0px 20px #000;
    bottom: 5px;
}

.gallery-item img {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: auto;
    z-index: 0;
}

.glass-item h2 {
    font-weight: bold;
    font-size: 22px;
}

.glass-item p {
    padding: 0px 30px;
}

.glass-item .icon-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 35%;
    height: 30%;
}

.glass-item .icon-container p {
    color: white;
    font-size: 20px;
}

.glass-item .icon-container .icon {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 17%;
    cursor: pointer;
    aspect-ratio: 1;
    border: 3px solid white;
}




/* ---------- حالت اول ----------*/

/* .gallery-item {
    background-color: rgb(var(--secondary));
    height: 100%;
    position: absolute;
    transition: 1s cubic-bezier(.75, -0.51, .25, 1.45) all;
    width: 100%;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-item img {
    position: absolute;
    width: 70%;
    height: 100%;
    z-index: 0;
    left: 0;
}

.glass-item {
    color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    background-color: #b71c1c;
    height: 100%;
    width: 30%;
    z-index: 10000;
}

.glass-item h2 {
    font-weight: bold;
    font-size: 28px;
}

.glass-item p {
    padding: 0px 30px;
}

.glass-item .icon-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 80%;
    height: 30%;
}

.glass-item .icon-container p {
    color: white;
    font-size: 15px;
}

.glass-item .icon-container .icon {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 17%;
    cursor: pointer;
    aspect-ratio: 1;
    border: 3px solid white;
} */


/* ----------  حالت دوم  ----------*/

/* .gallery-item {
    background-color: rgb(var(--secondary));
    height: 100%;
    position: absolute;
    transition: 1s cubic-bezier(.75, -0.51, .25, 1.45) all;
    width: 100%;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.glass-item {
    color: #fff;
    transition: 0.3s ease all;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    background-color: #b71c1c99;
    height: 15%;
    width: 60%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    border: 2px solid #ef5350;
    z-index: 10000;
    box-shadow: 0px 0px 20px #000;
}

.gallery-item img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.glass-item h2 {
    font-weight: bold;
    font-size: 32px;
}

.glass-item p {
    display: none;
    transition: 0.3s ease all;
    padding: 0px 30px;
}

.glass-item .icon-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 35%;
    height: 30%;
}

.glass-item .icon-container p {
    color: white;
    font-size: 20px;
}

.glass-item .icon-container .icon {
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    width: 17%;
    cursor: pointer;
    aspect-ratio: 1;
    border: 3px solid white;
}

.glass-item:hover {
    height: 100%;
}

.glass-item:hover p {
    display: block;
}

.glass-item:hover .icon-container .icon{
    display: flex;
} */


.gallery {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
}

.gallery-container {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    width: 100%;
    position: relative;
}





.gallery-item-1 {
    left: -200%;
    z-index: 0;
}

.gallery-item-2 {
    left: -100%;
    z-index: 1;
}

.gallery-item-3 {
    left: 0;
    z-index: 2;
}

.gallery-item-4 {
    left: 100%;
    z-index: 1;
}

.gallery-item-5 {
    left: 200%;
    z-index: 0;
}

.gallery-controls {
    position: absolute;
    display: flex;
    justify-content: center;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
}

.gallery-controls button {
    background-color: transparent;
    border: 0;
    padding: 10px;
    cursor: pointer;
    font-size: 30px;
    height: 48px;
    width: 24px;
    text-transform: capitalize;
    background-color: rgba(var(--secondary), 0.6);
}

.gallery-controls-previous:focus {
    outline: none;
}

.gallery-controls-previous {
    position: absolute;
    border-radius: 0 5px 5px 0;
    left: 0;
}

.gallery-controls-previous::before {
    border: solid rgb(var(--primary));
    border-width: 0 5px 5px 0;
    content: '';
    display: inline-block;
    height: 8px;
    left: 16px;
    padding: 2px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    transition: left .15s ease;
    width: 8px;
}

.gallery-controls-previous:hover::before {
    left: 60%;
}

.gallery-controls-next {
    position: absolute;
    border-radius: 5px 0 0 5px;
    right: 0%;
}

.gallery-controls-next::before {
    border: solid rgb(var(--primary));
    border-width: 0 5px 5px 0;
    content: '';
    display: inline-block;
    height: 8px;
    padding: 2px;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
    transition: right .15s ease;
    width: 8px;
}

.gallery-controls-next:hover::before {
    right: 5px;
}

.gallery-nav {
    bottom: -15px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    position: absolute;
    width: 100%;
}

.gallery-nav li {
    background: rgb(var(--text));
    border-radius: 50%;
    height: 10px;
    margin: 0 16px;
    width: 10px;
}

.gallery-nav li.gallery-item-selected {
    background: rgb(var(--text));
}

#main #female {
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: rgb(var(--accent1));
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
    transition: 0.6s ease all;
}

#main #female .info {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    color: rgb(var(--secondary));
    width: 80%;
}


#main #female h2 {
    font-size: clamp(30px, 3vw, 50px);
    font-weight: thick;
    color: rgba(var(--secondary), 1);
    position: relative;
    z-index: 1;
    margin-right: 10vw;
}

#main #female img {
    position: absolute;
    z-index: 0;
    height: 100%;
    bottom: 0px;
    right: 0%;
}

#main #female .cover p {
    width: 50%;
    float: left;
    text-align: center;
    margin-left: 20px;
}

#main #male {
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: rgb(var(--accent2));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
    transition: 0.6s ease all;
}



#main #male h2 {
    font-size: clamp(30px, 3vw, 50px);
    font-weight: thick;
    color: rgba(var(--secondary), 1);
    position: relative;
    z-index: 1;
    margin-left: 10vw;
}

#main #male p {
    width: 50%;
    float: right;
    text-align: center;
    margin-right: 20px;
}

#main #male img {
    position: absolute;
    z-index: 0;
    height: 90%;
    bottom: 0px;
    left: -5%;
}

#main #beach {
    grid-column: span 2;
    animation-name: color-change;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-image: url(assets/images/beach.png);
    background-size: cover;
}

#main #beach a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

#main #beach h2 {
    margin: 0 55px;
}

#main #beach i {
    font-size: 35px;
}

#main .features {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#main .features svg {
    width: 4vw;
    height: auto;
    fill: rgb(var(--text));
}

#main #feature1 svg {
    fill: rgb(var(--accent1));
}

#main #feature4 svg {
    fill: rgb(var(--accent1));
}

#main .features h3 {
    font-size: clamp(20px, 2vw, 35px);
}

#main #feature1 {
    margin: 0 0 -10px 0;
    background-color: rgb(var(--text));
}

#main #feature2 {
    margin: 0 0 -10px 0;
    background-color: rgb(var(--accent1));
}

#main #feature3 {
    margin: -10px 0 0 0;
    background-color: rgb(var(--accent1));
}

#main #feature4 {
    margin: -10px 0 0 0;
    background-color: rgb(var(--text));
}

#main #insurance {
    background-color: rgb(var(--accent1));
    cursor: pointer;
}

#main #insurance svg {
    fill: rgb(var(--text));
}

#main #insurance:hover {
    scale: 1.05;
    box-shadow: 0 0 10px 2px rgba(var(--text), 0.4);
}

#main #guidance {
    background-color: rgb(var(--text));
    cursor: pointer;
}

#main #guidance svg {
    fill: rgb(var(--accent1));
}

#main #guidance:hover {
    scale: 1.05;
    box-shadow: 0 0 10px 2px rgba(var(--text), 0.4);
}

#main .features a {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
}

#main #about {
    background-color: transparent;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(var(--text));
}

#main #about h2 {
    font-size: clamp(26px, 2.5vw, 50px);
    font-weight: 800;
}

#main #about p {
    font-weight: 100;
    font-size: clamp(10px, 1vw, 20px);
    padding: 10px 40px;
    text-align: justify;
}

#main #bmi {
    flex-direction: column;
    background-color: rgb(var(--button));
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
}

#main #bmi h2 {
    font-size: clamp(25px, 3vw, 40px);
}

#main #bmi input {
    background: rgb(var(--secondary));
    width: 60%;
    height: 60px;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: yekan, 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border-radius: 15px;
    font-size: clamp(8px, 2vw, 20px);
}

#main #bmi #bmi-output {
    cursor: default;
}

#main #blog {
    background-color: rgb(var(--accent1));
    grid-column-start: 1;
    grid-column-end: 3;
    flex-direction: column;
    overflow: visible;
    align-items: center;
    justify-content: space-evenly;
}

#main #blog h2 {
    font-size: clamp(32px, 3.5vw, 52px);
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
}

#main #blog p {
    font-size: clamp(11px, 1.5vw, 17px);
    font-weight: 100;
    max-width: 80%;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

#main #blog .blog-post {
    width: 85%;
    background-color: rgb(var(--secondary));
    color: rgb(var(--text));
    height: 225px;
    margin: 10px 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 1fr 3fr;
    direction: rtl;
    grid-template-rows: 1fr 4fr;
    grid-gap: 20px;
    position: relative;
    cursor: pointer;
}

#main #blog .blog-post img {
    height: 225px;
    width: 28vw;
    object-fit: cover;
    grid-row-start: 1;
    grid-row-end: 6;
    position: relative;
    z-index: 0;
}

#main #blog .blog-post .overlay {
    position: absolute;
    width: 35vw;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(var(--secondary), 1) 20%, rgba(var(--secondary), 0) 90%);
    opacity: 1;
    z-index: 1;
}

#main #blog .blog-post h4 {
    text-align: right;
    position: relative;
    z-index: 2;
    font-size: clamp(14px, 3vw, 25px);
    padding-right: 10px;
    padding-top: 10px;
    font-weight: 800;
}

#main #blog .blog-post p {
    text-align: justify;
    width: 37vw;
    font-size: clamp(9px, 2vw, 15px);
    font-weight: 100;
    margin-top: -15px;
    grid-column-start: 2;
    grid-column-end: 5;
}

#main #blog button {
    border-radius: 30px;
    height: 45px;
    width: 35vw;
    background: rgb(var(--text));
    color: rgb(var(--secondary));
    font-family: yekan;
    font-size: clamp(12px, 1vw, 16px);
    position: absolute;
    bottom: 0%;
    transform: translate(0, 50%);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

#main #blog button:hover {
    background: rgb(var(--accent2));
}

#main #prices {
    background-color: rgb(var(--text));
    grid-column-start: 1;
    grid-column-end: 3;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

#main #prices h2 {
    grid-column-start: 1;
    grid-column-end: 13;
    font-size: clamp(16px, 3vw, 40px);
}

#main #prices p {
    grid-column-start: 1;
    grid-column-end: 13;
    padding: 0 10px;
    margin-bottom: 20px;
}

#main #prices #plans {
    width: auto;
    display: grid;
    gap: 20px;
    padding: 0 20px;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

#main #prices .product {
    display: grid;
    cursor: pointer;
    padding: 25px 10px;
    justify-items: center;
    position: relative;
    gap: 25px;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: 5fr 3fr 1fr 1fr;
    height: 340px;
    color: black;
    background-color: #FFFAFA;
    border-radius: 10px;
    box-shadow: 0px 0px 5px #000;
}

#main #prices .product .cart {
    position: absolute;
    right: -10px;
    top: -10px;
    box-shadow: 0px 0px 20px #000;
    border-radius: 50%;
    width: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    background-color: rgb(223, 31, 31);
}

#main #prices .product .cart i:nth-of-type(1) {
    color: rgb(255, 255, 255);
    font-size: 25px;
}

#main #prices .product img {
    width: 80%;
    grid-column: span 3;
    height: 150px;
    border-radius: 8px;
}

#main #prices .product h3 {
    color: rgb(0, 0, 0);
    grid-column: span 3;
    padding: 0px 10px;
}

#main #prices .product i:nth-of-type(1) {
    color: gold;
    font-size: 20px;
    grid-column: span 1;
}

.score-container {
    grid-column: span 2;
    width: 215px;
    height: 20px;
    background-color: #7a7878;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    color: black;
    overflow: hidden;
}

.score-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background-color: gold;
    border-radius: 20px;
    z-index: 0;
}

.score-text {
    top: 10px;
    right: 20px;
    position: relative;
    z-index: 1;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#main #prices .product i:nth-of-type(2) {
    color: rgb(0, 0, 0);
    font-size: 20px;
    grid-column: span 1;
}

#main #prices .product p {
    color: rgb(0, 0, 0);
    margin-top: -5px;
    grid-column: span 2;
    font-size: 20px;
}

#main #prices button {
    padding: 15px 30px;
    font-family: yekan;
    background-color: rgb(var(--accent1));
    color: rgb(var(--white));
    border: none;
    outline: none;
    border-radius: 15px;
    cursor: pointer;
}

#main #sponsers {
    grid-column: span 2;
}

#main #sponsers ul {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#main #sponsers ul li {
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

#main #sponsers ul li img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

#main footer {
    grid-column-start: 1;
    grid-column-end: 3;
    background: linear-gradient(to right, rgb(30, 30, 30), rgb(70, 70, 70));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

#main footer div {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
}

#main footer div.address {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#main footer a {
    color: rgb(var(--secondary));
}

#main footer svg {
    position: absolute;
    right: -4vw;
    opacity: 0.6;
    z-index: 0;
    filter: blur(5px);
}

#main footer #short-desc {
    text-align: right;
    height: 80%;
    justify-content: space-between;
}

#main footer #short-desc p {
    text-align: center;
    padding: 0px 20px;
    margin-bottom: 45px;
}

#main footer #social .mohz #phone {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    direction: ltr;

}

#main footer #social .mohz .address p {
    font-size: 12px;
}

#main footer #social .mohz #phone svg {
    position: relative;
    right: 0;
    width: auto;
    height: 20px;
    fill: rgb(var(--accent1));
    opacity: 1;
    z-index: 1;
    filter: blur(0px);
}

#main footer #social .mohz #phone h2 {
    margin: 0;
}

#main footer #links {
    justify-content: space-between;
    height: 80%;
}

#main footer #links ul {
    margin-bottom: 35px;
}

#main footer #links ul li {
    margin: 10px 0;
    text-align: right;
    font-size: 12px;
}

#main footer #links ul li:hover a {
    color: rgb(var(--accent1));
    cursor: pointer;
}

.insta-tel-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.insta {
    margin-bottom: 15px;
}

.telegram {
    margin-bottom: 15px;
}

.insta p {
    font-size: 15px;
}

.telegram p {
    font-size: 14px;
}

#main footer #social .mohz {
    display: flex;
    flex-direction: column;

    align-items: center;
    height: 65%;
    justify-content: space-evenly;
}

#main footer #social .mohz div {
    width: 90%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

#main footer #social .mohz h5 {
    font-weight: 900;
    font-size: 15px;
}

#main footer #social .mohz svg {
    position: relative;
    right: 0;
    width: 30px;
    height: auto;
    fill: rgb(var(--accent1));
    opacity: 1;
    z-index: 1;
    filter: blur(0px);
    margin: 0 0 0 20px;
}

#main footer #social .mohz div:nth-child(4) {
    font-size: 12px;
    text-align: right;
}

#main footer #social .mohz p {
    cursor: pointer;
}

#main footer #social .mohz #phone h2 {
    font-size: 16px;
}

#main footer #blink {
    position: absolute;
    width: 100%;
    height: 12%;
    margin-top: 20px;
    background-color: rgb(var(--accent1));
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;

}

#main footer #blink h4 {
    font-size: 1rem;
}

::-webkit-scrollbar {
    width: 30px;
    background: none;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px 10px rgba(var(--text), 0.8);
    border: solid 13px transparent;
    border-radius: 30px;
    margin: 20px;
}

::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 10px 10px rgb(var(--accent1));
    border-radius: 30px;
    border: solid 11px transparent;
}

@media only screen and (max-width: 600px) {
    nav {
        justify-content: flex-start;
        align-items: flex-start;
        width: 100vw;
        opacity: 1;
        background-color: rgba(var(--text), 0.95);
        z-index: 900;
        display: none;
    }

    nav section img {
        width: 67px;
        aspect-ratio: 1;
    }

    #hamburger {
        box-shadow: 0px 0px 8px #000,
            0px 4px 12px #000;
        background-color: rgb(var(--accent2));
        margin-top: 10px;
        margin-right: 10px;
        position: fixed;
        border-radius: 50%;
        left: 0;
        right: 0;
        z-index: 901;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #hamburger svg {
        fill: white;
        width: 60%;
        height: 60%;
    }

    #hamburger svg:nth-child(2) {
        display: none;
    }

    nav hr {
        width: 100%;
        margin: 0 auto;
    }

    nav h1 {
        font-size: 5vw;
    }

    nav section ul li svg {
        width: 30px;
    }

    main {
        width: 100vw;
        height: 100vh;
        left: 0;
    }

    #main {
        padding: 40px 15px 80px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 4fr 2fr 4fr 4fr 16fr 1fr 1fr 8fr 1fr 1fr 1fr 1fr 4fr 5fr 4fr 10fr;
        height: 7000px;
        gap: 40px;
    }
    
    #main #prices .product {
        width: 85%;
    }
    
    #main #prices .product .cart {
        width: 12vw;
    }

    #main #prices {
        grid-template-columns: 1fr;
    }
    /* -------حالت اول ------- */

    /* .gallery-item img {
        width: auto;
        height: 40%;
    }

    .glass-item {
        height: 40%;
        background-color: #b71c1c;
        width: 40%;
    }

    .glass-item h2 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .glass-item p {
        padding: 5px;
        font-size: 11px;
    }

    .glass-item .icon-container .icon {
        width: 17%;
    }

    .glass-item .icon-container .icon i {
        font-size: 10px;
    } */

    /* --------حالت اصلی ------- */
    .gallery-item img {
        width: auto;
        height: 100%;
    }

    .glass-item {
        height: 40%;
        background-color: #b71c1c77;
        width: 80%;
    }

    .glass-item h2 {
        font-size: 20px;
    }

    .glass-item p {
        font-size: 12px;
    }

    .glass-item .icon-container {
        justify-content: space-around;
        width: 100%;
    }

    .glass-item .icon-container .icon {
        width: 13%;
    }

    #mobile-header {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 1vh 0;
        width: 100%;
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #mobile-header img {
        width: clamp(120px, 8vw, 150px);
    }

    #mobile-header h1 {
        font-weight: 800;
        font-size: clamp(22px, 2vw, 28px);
    }

    #main #female {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #main #female .cover img {
        right: 0px;
        right: -15px;
        height: 80%;
    }

    #main #female .cover h2 {
        margin-right: 162px;
    }

    #main #male {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #main #male .cover img {
        left: -40px;
        height: 80%;
    }

    #main #male .cover h2 {
        margin-left: 173px;
    }

    #main #female .cover p {
        width: 45%;
        float: left;
        text-align: center;
        font-size: 11px;
        margin-left: 0px;
    }

    #main #male p {
        width: 45%;
        float: right;
        font-size: 11px;
        text-align: center;
        margin-right: 0px;
    }
    
    #main #beach {
        font-size: 12px;
        padding: 0 20px;
    }
    
    #main #beach a h2 {
        margin: 0 10px;
    }

    #main #prices h2 {
        font-size: 34px;
    }

    #main #prices #plans {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        width: 100%;
    }

    #main #prices #plans article {
        width: 70%;
        height: auto;
        margin: 30px 0px;
    }

    #main #prices #plans article div {
        position: static;
        left: auto;
        transform: none;
    }

    #main #prices button {
        width: 70%;
        font-size: 13px;
        padding: 10px 0px;
        margin: 10px 0px 20px 0px;
    }

    #main #insurance svg {
        width: 40px;
    }

    #main #insurance {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #main #guidance {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #main .features {
        grid-column-start: 1;
        grid-column-end: 3;
        margin: 0 !important;
    }

    #main .features svg {
        width: 35px;
    }

    #main .features:nth-child(odd) {
        background-color: rgb(var(--accent1)) !important;
    }

    #main .features:nth-child(odd) svg {
        fill: rgb(var(--text)) !important;
    }

    #main .features:nth-child(even) {
        background-color: rgb(var(--text)) !important;
    }

    #main .features:nth-child(even) svg {
        fill: rgb(var(--accent1)) !important;
    }

    #main #about {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #main #bmi {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #main #sponsers {
        height: auto !important;
    }

    #main #sponsers ul {
        width: 100%;
        height: auto !important;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }

    #main #sponsers ul li {
        width: 100%;
        object-fit: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 15px 0;
    }

    #main #sponsers ul li img {
        height: 70px;
    }

    #main #sponsers ul li:nth-child(5) {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #main footer {
        
        min-height: 500px;
        flex-direction: column;
    }

    #main footer div {
        margin: 15px;
        flex-direction: column;
    }

    #main footer #links {
        font-size: 16px;
        height: 60%;
    }

    #main footer #social .mohz div {
        height: auto;
    }

    #main footer #short-desc {
        font-size: 16px;
        height: 60%;
        text-align: center;
    }

    #main footer #social {
        font-size: 16px;
    }

    #main footer p {
        font-size: 10px;
        padding: 0px 10px;
    }

    #main footer #blink {
        height: 5%;
        bottom: -17px;
    }

    #main footer #blink h4 {
        font-size: .75rem;
    }

    ::-webkit-scrollbar {
        width: 0px;
        display: none;
    }

    ::-webkit-scrollbar-track {
        display: none;
    }

    ::-webkit-scrollbar-thumb {
        display: none;
    }
}