* {
    margin: 0;
    padding: 0;
    font-family: "Gandom";
    -webkit-user-select: none;
    -ms-user-select: none; 
    user-select: none;
}

#cursor {
    /*DONT REMOVE THIS VARIABLE*/
    --cursor-width-height: 32px;
    border-radius: 50%;
    backdrop-filter: hue-rotate(280deg);
    pointer-events: none;
    visibility: hidden; 
    position: absolute;
    z-index: 10;
    transition: transform 0.7s;
}

#cursor::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5),
                inset 0 0 15px rgba(255, 255, 255, 0.5);
}

.idle-cursor{
    animation: idle-cursor 2s linear infinite alternate;
}

@keyframes idle-cursor{
    to{
        box-shadow: 0 0 20px rgba(255, 255, 255, 1),
                    0 0 30px rgba(255, 255, 255, 1);
    }
}

.idle-cursor-end{
    animation: idle-cursor-end 1s linear forwards;
}

@keyframes idle-cursor-end{
    0%{
        box-shadow: 0 0 20px rgba(255, 255, 255, 1),
                    0 0 30px rgba(255, 255, 255, 1);
    }
    100%{
        box-shadow: none;
    }
}

.cursor-hover{
    transform: scale(1.2);
}

.cursor-click{
    transform: scale(0.8);
}

html {
    scroll-behavior: smooth;
    background: black;
}

body{
    overflow-x: hidden;
}

::-webkit-scrollbar {
    background: #4b0099;
}

::-webkit-scrollbar-thumb {
    background: #37ecfd;
}

.header {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    position: absolute;
    transform: translateY(-97%);
    visibility: hidden;
    z-index: 2;
}

@keyframes animation-header {
    100% {
        transform: translateY(0);
        visibility: visible;
    }
}

#header-nav {
    display: flex;
    position: absolute;
    right: 5%;
    gap: 16px;
}

.slogan{
    position: absolute;
    padding: 12px 48px;
    background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-size-adjust: none;
    white-space: nowrap;
    font-weight: 600;
    opacity: 0;
}

.slogan.show{
    animation: slogan-show 0.4s forwards linear 1s, shine 4s linear infinite;
}

@keyframes slogan-show{
    to{
        opacity: 1;
    }
}

@keyframes shine{
    0% {
        background-position-x: 0;
      }
    60% {
        background-position-x: -315px;
    }
    100% {
        background-position-x: -315px;
    }
}

.btn {
    color: #fff;
    border: none;
    text-decoration: none;
    opacity: 0;
    transition: 0.5s;
}

.btn:hover, .service-ul li:hover, #table-page3-exit:hover{
    text-shadow: 0 0 2px #fff,
                 0 0 3px #fff,
                 0 0 8px #fff,
                 0 0 10px #fff,
                 0 0 15px #fff,
                 0 0 25px #fff,
                 0 0 35px #fff,
                 0 0 45px #fff,
                 0 0 65px #fff,
                 0 0 85px #fff,
                 0 0 95px #fff;
}

@keyframes btn-animation {
    100% {
        opacity: 1;
    }
}

/*BERGER START(FULL)*/
.berger-btn{
    display: flex;
    flex-direction: column;
    direction: rtl;
    position: absolute;
    height: 34%;
    background: transparent;
    border: none;
    right: 4%;
    aspect-ratio: 1/0.9;
    z-index: 10;
}

.berger-btn span{
    position: absolute;
    display: block;
    height: 18%;
    right: 0;
    border-radius: 10vh;
    background: whitesmoke;
    opacity: 0.7;
    transition: 0.5s ease-in-out;
}

.berger-btn span:nth-child(1){
    width: 82%;
    top: 11.5%;
}

.berger-btn span:nth-child(2){
    width: 42%;
    top: 41%;
}

.berger-btn span:nth-child(3){
    width: 64%;
    top: 70.5%;
}

.berger-btn span:nth-child(1).berger-stack-move{
    right: 18%;
}

.berger-btn span:nth-child(2).berger-stack-move{
    right: 58%;
}

.berger-btn span:nth-child(3).berger-stack-move{
    right: 36%;
}

.berger-menu{
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(7px);
    transform: translateX(100%);
    transition: 0.6s;
    z-index: 10;
}

.berger-show{
    transform: translateX(0);
}

#berger-nav{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
    align-items: center;
}
/*BERGER END*/

.logo {
    position: absolute;
    left: 4%;
    height: 70%;
    opacity: 0;
    aspect-ratio: 3/2;
}

@keyframes logo-animation {
    100% {
        opacity: 1;
    }
}

.pages {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    transform: scale(0.8);
    opacity: 0;
    overflow-x: hidden;
}

.pages.show{
    animation: animation-pages 0.5s forwards, blue-shadow-around 8s linear infinite;
}

@keyframes animation-pages {
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/*PAGE 1, CHAT*/
.chat {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-between;
}

.yours, .mine{
    display: flex;
    flex-direction: column;
}

.message {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    direction: rtl;
    visibility: hidden;
}

.forwardl-1.show {
    animation: message-show 1s forwards 1.5s;
}

.forwardl-2.show {
    animation: message-show 1s forwards 1.7s;
}

.forwardl-3.show {
    animation: message-show 1s forwards 1.9s;
}

.forwardr-1.show {
    animation: message-show 1s forwards 1.5s;
}

.forwardr-2.show {
    animation: message-show 1s forwards 1.7s;
}

.forwardr-3.show {
    animation: message-show 1s forwards 1.9s;
}

@keyframes message-show {
    100% {
        transform: translatex(0);
    }
}
/*PAGE 1, CHAT (END)*/

/*PAGE 1, SCROLL ICON*/
#scroll-icon{
    position: absolute;
    aspect-ratio: 1/1.5;
}

#scroll-icon span{
    position: absolute;
    width: 100%;
    height: 45%;
    clip-path: polygon(0 0, 0 43%, 50% 100%, 100% 43%, 100% 0, 50% 57%);
    background: rgba(255, 255, 255, 0.7);
    top: 0;
    opacity: 0;
}

@keyframes scroll-icon-arrow{
    0%{
        transform: scale(0.2);
        opacity: 0; 
        top: 0;
    }
    20%{
        transform: scale(1);
        opacity: 1;
        top: 35%;
    }
    33%{
        transform: scale(1);
        opacity: 1;
        top: 35%;
    }
    53%{
        transform: scale(1);
        opacity: 1;
        top: 58%;
    }
    63%{
        transform: scale(1);
        opacity: 1;
        top: 58%;
    }
    86%{
        transform: scale(0.5);
        opacity: 0;
        top: 88%;
    }
    100%{
        transform: scale(0.5);
        opacity: 0;
        top: 88%;
    }
}
/*PAGE 1, SCROLL ICON(END)*/

.content-of-pages {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    direction: rtl;
    text-align: justify;
    opacity: 0;
}

@keyframes content-of-pages-animation-opacity {
    100% {
        opacity: 1;
    }
}

#page2 .content-of-pages p, #page4 .content-of-pages p{
    margin-top: 4%;
}

#page2 .content-of-pages p:first-child, #page4 .content-of-pages p:first-child{
    margin-top: 0;
}

/*PAGE 3, CONTENT OF PAGES*/
#page3 .content-of-pages{
    display: flex;
    flex-direction: column;
}

.page3-static-p{
    transition: 0.4s;
    opacity: 0;
}

#table-page3, #table-page3-mobile{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    margin: 1% 0 1% 0;
    border: #fff solid 2px;
    opacity: 0;
    transition: 0.4s;
    display: none;
}

#page3 .content-of-pages p:first-child.show, #table-page3.show, #table-page3-mobile.show, #page3 .content-of-pages p:last-child.show{
    opacity: 1;
}

#table-page3 header, #table-page3 main, #table-page3-mobile header, #table-page3-mobile main{
    display: flex;
    width: 100%;
}

#table-page3 header, #table-page3-mobile header{
    height: 10%;
    border-bottom: 2px solid #fff;
}

#table-page3 header div, #table-page3 main div, #table-page3-mobile header div, #table-page3-mobile main div{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#table-page3-mobile main{
    position: relative;
    overflow: hidden;
}

#table-page3-mobile main div:first-child{
    height: 200%;
    overflow-y: scroll;
    transition: transform 1s;
}

.table-page3-mobile-scroll-down{
    transform: translateY(-50%);
}

#table-page3-mobile-scroll-bar, #table-page3-mobile-scroll-thumb{
    position: absolute;
    width: 2px;
    right: 9px;
    top: 5%;
}

#table-page3-mobile-scroll-bar{
    height: 90%;
    background: #4b0099;
}

#table-page3-mobile-scroll-thumb{
    height: 45%;
    background: #37ecfd;
    transition: transform 1s;
}

.table-page3-mobile-ST-move{
    transform: translateY(100%);
}

#table-page3 header div:last-child{
    flex-shrink: 2;
    border-right: 2px solid #fff;
}

#table-page3-mobile header div:last-child{
    border-right: 2px solid #fff;
}

#table-page3 main, #table-page3-mobile main{
    height: calc(90% - 2px);
}

#table-page3 main div, #table-page3-mobile main div{
    border-right: 2px solid #fff;
}

#table-page3 main div:first-child, #table-page3-mobile main div:first-child{
    border-right: none;
}

.service-ul, .service-ul-mobile{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-ul li, .service-ul-mobile li{
    display: flex;
    width: fit-content;
    height: 100%;
    align-items: center;
    list-style: none;
    z-index: 10;
}

.service-ul li{
    padding-inline: 10px;
    transition: text-shadow 0.5s;
}

.service-ul-mobile li{
    height: 200%;
}

#service-details-frame{
    display: flex;
    flex-direction: column;
    position: absolute;
}

.service-details{
    width: 100%;
    height: fit-content;
    margin-top: 4%;
    opacity: 0;
    transition: 0.4s;
}

.service-details:first-child{
    margin-top: 0;
}

.service-details:last-child{
    margin-top: 4%;
}

.service-details-show{
    opacity: 1;
}

#table-page3-exit, .table-page3-box-price{
    position: absolute;
    color: #fff;
    background: none;
    border: #fff solid 2px;
    transition: 0.4s;
    z-index: -1;
}

.table-page3-box-price{
    background: rgba(0, 0, 0, 0.7);
}

.table-page3-exit-hidden, .table-page3-box-price-hidden{
    opacity: 0;
}

.page3-static-p p:last-child{
    margin-top: 0;
}

/*PAGE 4 HAS OVER SCROLL BECUASE OF FOOTER, WITH THIS THE PROBLEM WILL SOLVE*/
#page4{
    overflow-y: hidden;
}

/*PAGE 4, PARAGRAPH SHOWING*/
#page4 .content-of-pages p{
    transform: translateY(-15%);
    opacity: 0;
}
/*PAGE 4, PARAGRAPH SHOWING (END)*/

@keyframes page4-p{
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-go-to-top {
    position: absolute;
    z-index: 3;
    opacity: 0;
    transition: 0.4s 0.4s linear;
}

.up-down {
    top: 6%;
    left: 6.25%;
    position: absolute;
    opacity: 0;
}

.up-down.show {
    animation: up-down-animation 6s ease-in-out infinite alternate 0.7s,
               up-down-animation-opacity 1s forwards 0.5s;
}

@keyframes up-down-animation-opacity {
    100% {
        opacity: 1;
    }
}

@keyframes up-down-animation {
    0%{
        filter: drop-shadow(0 0 15px #1c39bb);
    }
    94%{
        filter: blur(0) drop-shadow(0 0 15px #1c39bb);
    }
    95%{
        filter: blur(3px);
    }
    100%{
        transform: translateY(20%) perspective(375px) rotateY(45deg);
        filter: blur(0) drop-shadow(0 0 15px #1c39bb);
    }
}

.footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    transform: translateY(97%);
    z-index: 2;
}

@keyframes animation-footer {
    100% {
        transform: translateY(0);
    }
}

.icon {
    position: absolute;
    display: flex;
    right: 13.5%;
    bottom: 20%;
    aspect-ratio: 5.5/1;
    opacity: 0;
}

.icon.show {
    animation: animation-icon 0.8s forwards 0.4s;
}

@keyframes animation-icon {
    100% {
        opacity: 1;
    }
}

.icons {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.5s;
}

@keyframes icons-page4-show {
    60% {
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
    }
}

@keyframes icons-page4-opacity{
    100%{
        opacity: 1;
    }
}

.icons:hover.icons:after{
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.icons:after{
    content: "";
    position: absolute;
    width: 136%;
    height: 136%;
    top: -18%;
    left: -18%;
    transition: 0.4s;
}

/*space for between pages*/
.space {
    width: 100%;
    height: 10px;
    background: #000;
}

/*mobile*/
@media (min-width : 319px) {
    *{
        cursor: default;
        font-size: calc(1.7dvh + 2px);
    }

    ::-webkit-scrollbar {
        width: 1px;
    }

    .header {
        height: 11%;
        box-shadow: 0 0 10px 2px #000;
    }

    .header.show {
        animation: animation-header 0.7s ease-in forwards 1.7s;
    }

    .slogan{
        font-size: 16px;
        left: calc(42% - 96px);
    }

    #page2 .header.show, #page3 .header.show{
        animation: animation-header 0.65s ease-in forwards 0.4s;
    }

    .logo.show {
        animation: logo-animation 0.4s linear forwards 0.4s;
    }

    #header-nav{
        display: none;
    }

    .delete {
        display: flex;
    }

    @keyframes blue-shadow-around{
        0%{
            box-shadow: inset 0 0 15px 15px rgba(6, 25, 218, 0.7);
        }
        25%{
            box-shadow: inset 0 0 15px 8px rgba(6, 25, 218, 0.7);
        }
        50%{
            box-shadow: inset 0 0 15px 15px rgba(6, 25, 218, 0.7);
        }
        75%{
            box-shadow: inset 0 0 15px 5px rgba(6, 25, 218, 0.7);
        }
        100%{
            box-shadow: inset 0 0 15px 15px rgba(6, 25, 218, 0.7);
        }
    }

    .berger-menu{
        top: 11dvh;
        left: 75dvw;
        width: 25dvw;
        border-bottom-left-radius: 22px;
        aspect-ratio: 1/1.6;
    }

    .btn.show {
        animation: btn-animation 0.5s forwards 0.15s;
    }

    #page1 {
        background: url(images/mobile/M2_1.webp) 0% 0% / cover no-repeat;
    }

    .chat {
        height: 80%;
        flex-direction: column;
        top: 10%;
    }

    .yours, .mine {
        margin-inline: auto;
        height: 40%;
        justify-content: center;
    }

    .message {
        width: 74vw;
        height: 10%;
        border-radius: 10vh;
        padding: 8px 16px;
        box-shadow: 0 0 10px 2px #000;
    }

    .yours .message{
        margin-top: 5%;
    }

    .mine .message{
        margin-bottom: 5%;
    }

    .hide-l-u:nth-child(1) {
        transform: translateY(-391%);
    }

    .hide-l-u:nth-child(2) {
        transform: translateY(-531%);
    }

    .hide-l-u:nth-child(3) {
        transform: translateY(-672%);
    }

    .forwardl-1.show {
        animation: up-to-down 0.93s ease-in forwards 1.3s;
    }

    .forwardl-2.show {
        animation: up-to-down 0.93s ease-in forwards 0.9s;
    }

    .forwardl-3.show {
        animation: up-to-down 0.93s ease-in forwards 0.5s;
    }

    @keyframes up-to-down {
        75% {
            transform: translateY(15%);
        }
        100% {
            transform: translateY(0);
            visibility: visible;
        }
    }

    .hide-r-b:nth-child(1) {
        transform: translateY(672%);
    }

    .hide-r-b:nth-child(2) {
        transform: translateY(531%);
    }

    .hide-r-b:nth-child(3) {
        transform: translateY(391%);
    }

    .forwardr-1.show {
        animation: down-to-up 0.93s ease-out forwards 0.5s;
    }

    .forwardr-2.show {
        animation: down-to-up 0.93s ease-out forwards 0.9s;
    }

    .forwardr-3.show {
        animation: down-to-up 0.93s ease-out forwards 1.3s;
    }

    @keyframes down-to-up {
        75% {
            transform: translateY(-15%);
        }
        100% {
            transform: translateY(0);
            visibility: visible;
        }
    }

    #m2 {
        background: url(images/mobile/M2_1.webp) 0% 0% / cover no-repeat;
        font: 900 22dvh "arial";
    }

    #m2.show {
        animation: animation-m2 2s ease forwards 3.3s;
    }

    @keyframes animation-m2 {
        100%{
            filter: drop-shadow(0 0 9px #000);
        }
    }

    #scroll-icon{
        width: 50px;
        left: calc(50% - 25px);
        bottom: 5%;
    }

    #scroll-icon span:nth-child(1).show{
        animation: scroll-icon-arrow 3s infinite linear 2.5s;
    }
    
    #scroll-icon span:nth-child(2).show{
        animation: scroll-icon-arrow 3s infinite linear 3.5s;
    }
    
    #scroll-icon span:nth-child(3).show{
        animation: scroll-icon-arrow 3s infinite linear 4.5s;
    }

    #page2 {
        background: url(images/mobile/M2_2.webp) 0% 0% / cover no-repeat;
    }

    .up-down {
        display: none;
    }

    .content-of-pages {
        width: calc(81.7%);
        height: calc(83% - 20px);
        margin: 14dvh auto 0 auto;
        padding: 10px 12px;
        border-radius: 15px;
        box-shadow: 0 0 10px 2px #000;
    }

    .content-of-pages.show{
        animation: content-of-pages-animation-opacity 0.9s linear forwards 0.6s;
    }

    .btn-go-to-top{
        width: 30px;
        height: 24px;
        right: 10px;
        bottom: 14px;
    }

    .btn-go-to-top.show{
        opacity: 1;
    }

    #page3 {
        background: url(images/mobile/M2_3.webp) 0% 0% / cover no-repeat;
    }

    #table-page3{
        display: none;
    }

    #table-page3-mobile{
        border-radius: 15px;
        display: block;
    }

    #table-page3-mobile.show{
        transition: 1.3s 1.3s linear;
    }

    #page3 .content-of-pages p:first-child.show{
        transition: 0.8s 0.8s linear;
    }

    .service-ul-mobile li{
        padding-inline: 20px;
    }

    #page3 .content-of-pages p:last-child.show{
        transition: 0.8s 1.6s linear;
    }

    #service-details-frame{
        width: calc(81.7%);
        height: calc(83% - 20px);
    }

    #table-page3-exit, .table-page3-box-price{
        font-size: calc(2dvh + 2px);
        padding: 4px 24px;
        top: 86%;
        border-radius: 7px;
    }

    #table-page3-exit{
        right: 11%;
    }

    .table-page3-box-price{
        top: 80%;
        left: 11%;
    }

    #page4 {
        background: url(images/mobile/M2_4.webp) 0% 0% / cover no-repeat;
    }

    #page4 .content-of-pages {
        margin: 3dvh auto 0 auto;
    }

    #page4 .content-of-pages.show{
        animation: content-of-pages-animation-opacity 0.9s linear forwards 0.9s;
    }

    #page4 .content-of-pages p:nth-child(1).show{
        animation: page4-p 1s forwards 1s;
    }
    
    #page4 .content-of-pages p:nth-child(2).show{
        animation: page4-p 1s forwards 1.4s;
    }
    
    #page4 .content-of-pages p:nth-child(3).show{
        animation: page4-p 1s forwards 1.8s;
    }

    .footer {
        height: 11%;
        box-shadow: 0 0 10px 2px #000;
    }

    .footer.show {
        animation: animation-footer 0.65s ease-out forwards 0.4s;
    }

    .icon {
        height: 31%;
        gap: 10px;
    }

    .icons:nth-child(1).show {
        animation: icons-page4-show 0.9s linear 1.2s, icons-page4-opacity 0.7s ease-in 1.1s forwards;
    }
    
    .icons:nth-child(2).show {
        animation: icons-page4-show 0.9s linear 1.4s, icons-page4-opacity 0.7s ease-in 1.3s forwards;
    }
    
    .icons:nth-child(3).show {
        animation: icons-page4-show 0.9s linear 1.6s, icons-page4-opacity 0.7s ease-in 1.5s forwards;
    }
    
    .icons:nth-child(4).show {
        animation: icons-page4-show 0.9s linear 1.8s, icons-page4-opacity 0.7s ease-in 1.7s forwards;
    }
}

@media (min-height : 700px){
    *{
        font-size: calc(1.6dvh + 2px);
    }
}

@media (min-width : 318px) and (max-height : 660px) {
    *{
        font-size: calc(1.62dvh + 2px);
    }

    .hide-l-u:nth-child(1) {
        transform: translateY(-313%);
    }

    .hide-l-u:nth-child(2) {
        transform: translateY(-460%);
    }

    .hide-l-u:nth-child(3) {
        transform: translateY(-611%);
    }

    .hide-r-b:nth-child(1) {
        transform: translateY(611%);
    }

    .hide-r-b:nth-child(2) {
        transform: translateY(460%);
    }

    .hide-r-b:nth-child(3) {
        transform: translateY(313%);
    }

    #scroll-icon{
        width: 34px;
        left: calc(50% - 17px);
        bottom: 3%;
    }

    .btn-go-to-top{
        width: 23px;
        height: 17px;
        right: 10px;
        bottom: 10px;
    }

    #table-page3-exit, .table-page3-box-price{
        font-size: calc(1.9dvh + 2px);
        padding: 4px 18px;
        top: 88%;
        border-radius: 7px;
    }

    #table-page3-exit{
        right: 9%;
    }

    .table-page3-box-price{
        left: 9%;
    }
}

/*media tablet*/
@media (min-width : 700px) and (min-height : 900px) {
    *{
        font-size: calc(2.1dvh + 2px);
    }

    ::-webkit-scrollbar {
        width: 2px;
    }

    .header {
        height: 14.5%;
        box-shadow: 0 0 30px 7px #000;
    }

    .slogan{
        font-size: 30px;
        left: calc(35% - 160px);
        padding: 12px 96px;
    }

    @keyframes shine{
        0% {
            background-position-x: 0;
          }
        60% {
            background-position-x: -600px;
        }
        100% {
            background-position-x: -600px;
        }
    }

    @keyframes blue-shadow-around{
        0%{
            box-shadow: inset 0 0 30px 30px rgba(6, 25, 218, 0.7);
        }
        25%{
            box-shadow: inset 0 0 30px 15px rgba(6, 25, 218, 0.7);
        }
        50%{
            box-shadow: inset 0 0 30px 30px rgba(6, 25, 218, 0.7);
        }
        75%{
            box-shadow: inset 0 0 30px 10px rgba(6, 25, 218, 0.7);
        }
        100%{
            box-shadow: inset 0 0 30px 30px rgba(6, 25, 218, 0.7);
        }
    }

    .berger-menu{
        top: 14.5dvh;
        border-bottom-left-radius: 28px;
    }

    #page1 {
        background: url(images/tablet/M2_1.webp) 0% 0% / cover no-repeat;
    }

    #m2 {
        background: url(images/tablet/M2_1.webp) 0% 0% / cover no-repeat;
        font: 900 21dvh "arial";
    }

    @keyframes animation-m2 {
        100%{
            filter: drop-shadow(0 0 20px #000);
        }
    }

    .chat {
        height: 71%;
        top: 15%;
    }

    .yours, .mine {
        margin-inline: auto;
        height: 36%;
        justify-content: center;
    }

    .message {
        width: 64vw;
        height: 14%;
        padding: 13px 26px;
        box-shadow: 0 0 30px 7px #000;
    }

    .yours .message{
        margin-top: 6%;
    }

    .mine .message{
        margin-bottom: 6%;
    }

    .hide-l-u:nth-child(1) {
        transform: translateY(-370%);
    }

    .hide-l-u:nth-child(2) {
        transform: translateY(-520%);
    }

    .hide-l-u:nth-child(3) {
        transform: translateY(-670%);
    }

    @keyframes up-to-down {
        75% {
            transform: translateY(5px);
        }
        100% {
            transform: translateY(0);
            visibility: visible;
        }
    }

    .hide-r-b:nth-child(1) {
        transform: translateY(660%);
    }

    .hide-r-b:nth-child(2) {
        transform: translateY(510%);
    }

    .hide-r-b:nth-child(3) {
        transform: translateY(360%);
    }

    @keyframes down-to-up {
        75% {
            transform: translateY(-5px);
        }
        100% {
            transform: translateY(0);
            visibility: visible;
        }
    }

    #page2 {
        background: url(images/tablet/M2_2.webp) 0% 0% / cover no-repeat;
    }

    .content-of-pages {
        width: calc(88% - 48px);
        height: calc(76dvh - 40px);
        margin: 17.5dvh auto 0 auto;
        padding: 20px 24px;
        border-radius: 30px;
        box-shadow: 0 0 30px 7px #000;
    }

    .btn-go-to-top{
        width: 40px;
        height: 30px;
        right: 18px;
        bottom: 22px;
    }

    #page3 {
        background: url(images/tablet/M2_3.webp) 0% 0% / cover no-repeat;
    }

    #table-page3{
        border-radius: 30px;
        display: block;
    }

    #table-page3.show{
        transition: 1.3s 1.3s linear;
    }

    #table-page3-mobile{
        display: none;
    }

    #service-details-frame{
        width: calc(88% - 48px);
        height: calc(76dvh - 40px);
    }

    #table-page3-exit, .table-page3-box-price{
        font-size: calc(2.3dvh + 2px);
        padding: 4px 24px;
        top: 88%;
        border-radius: 10px;
    }

    #table-page3-exit{
        right: 10%;
    }

    .table-page3-box-price{
        left: 10%;
    }

    .service-ul li{
        font-size: 20px;
        z-index: 50;
    }

    #page4 {
        background: url(images/tablet/M2_4.webp) 0% 0% / cover no-repeat;
    }

    #page4 .content-of-pages {
        margin: 6dvh auto 0 auto;
    }

    .footer {
        height: 14.5%;
        box-shadow: 0 0 30px 7px #000;
    }

    .icon {
        height: 26%;
        right: 9%;
        gap: 20px;
    }
}

/*media desktop*/
@media (min-width : 1050px) {
    *{
        cursor: none;
        font-size: calc(2dvh + 2px);
    }

    ::-webkit-scrollbar {
        width: 2px;
    }

    #cursor {
        --cursor-width-height: 32px;
        width: var(--cursor-width-height);
        height: var(--cursor-width-height);
        visibility: visible;
    }

    .header {
        height: 18%;
        box-shadow: 0 0 30px 7px #000;
    }

    .header.show {
        animation: animation-header 0.7s ease-in forwards 0.2s;
    }

    .slogan{
        font-size: 17px;
        left: calc(15% - 48px);
        padding: 12px 55px;
    }

    @keyframes shine{
        0% {
            background-position-x: 0;
          }
        60% {
            background-position-x: -380px;
        }
        100% {
            background-position-x: -380px;
        }
    }

    #header-nav {
        display: flex;
    }

    .btn{
        padding: 10px 16px;
    }

    .berger-btn{
        display: none;
    }

    .btn.show {
        animation: btn-animation 0.4s linear forwards 0.4s;
    }

    @keyframes blue-shadow-around{
        0%{
            box-shadow: inset 0 0 30px 30px rgba(6, 25, 218, 0.7);
        }
        25%{
            box-shadow: inset 0 0 30px 15px rgba(6, 25, 218, 0.7);
        }
        50%{
            box-shadow: inset 0 0 30px 30px rgba(6, 25, 218, 0.7);
        }
        75%{
            box-shadow: inset 0 0 30px 10px rgba(6, 25, 218, 0.7);
        }
        100%{
            box-shadow: inset 0 0 30px 30px rgba(6, 25, 218, 0.7);
        }
    }

    .delete {
        display: none;
    }

    .chat {
        height: 50%;
        top: 27%;
        direction: rtl;
        flex-direction: row;
        align-items: center;
    }

    .yours, .mine {
        width: 40%;
        height: 100%;
        margin: 0;
        justify-content: space-around;
        align-items: center;
    }

    .message {
        width: 70%;
        height: 8%;
        padding: 14px 24px;
        border-radius: 30px;
        box-shadow: 0 0 30px 7px #000;
    }

    .yours .message, .mine .message{
        margin: 0;
    }

    .hide-l-u:nth-child(1) {
        transform: translateX(110%);
    }

    .hide-l-u:nth-child(2) {
        transform: translateX(110%);
    }

    .hide-l-u:nth-child(3) {
        transform: translateX(110%);
    }

    .forwardl-1.show {
        animation: to-place 0.8s ease-out forwards 0.9s;
    }

    .forwardl-2.show {
        animation: to-place 0.8s ease-out forwards 1.1s;
    }

    .forwardl-3.show {
        animation: to-place 0.8s ease-out forwards 1.3s;
    }

    .hide-r-b:nth-child(1) {
        transform: translateX(-110%);
    }

    .hide-r-b:nth-child(2) {
        transform: translateX(-110%);
    }

    .hide-r-b:nth-child(3) {
        transform: translateX(-110%);
    }

    .forwardr-1.show {
        animation: to-place 0.8s ease-out forwards 0.9s;
    }

    .forwardr-2.show {
        animation: to-place 0.8s ease-out forwards 1.1s;
    }

    .forwardr-3.show {
        animation: to-place 0.8s ease-out forwards 1.3s;
    }

    @keyframes to-place {
        100% {
            transform: translateY(0);
            visibility: visible;
        }
    }

    #scroll-icon{
        bottom: 7%;
    }

    #scroll-icon span:nth-child(1).show{
        animation: scroll-icon-arrow 3s infinite linear 2s;
    }
    
    #scroll-icon span:nth-child(2).show{
        animation: scroll-icon-arrow 3s infinite linear 3s;
    }
    
    #scroll-icon span:nth-child(3).show{
        animation: scroll-icon-arrow 3s infinite linear 4s;
    }

    #page1 {
        background: url(images/desktop/M2_1.webp) 0% 0% / cover no-repeat;
    }

    #m2 {
        background: url(images/desktop/M2_1.webp) 0% 0% / cover no-repeat;
        font: 900 37dvh "arial";
    }

    #m2.show {
        animation: animation-m2 2s ease forwards 2.8s;
    }

    @keyframes animation-m2 {
        100%{
            filter: drop-shadow(0 0 18px #000);
        }
    }

    .btn-go-to-top{
        width: 32px;
        height: 22px;
        right: 20px;
        bottom: 20px;
    }

    #page2 {
        background: url(images/desktop/M2_2.webp) 0% 0% / cover no-repeat;
    }

    .up-down {
        width: 19%;
        aspect-ratio: 3/2;
        display: block;
    }

    .content-of-pages {
        width: calc(65% - 48px);
        height: calc(85% - 28px);
        margin: 0;
        padding: 14px 24px;
        position: absolute;
        top: 7.5%;
        right: 3.5%;
        border-radius: 30px;
        box-shadow: 0 0 30px 7px #000;
    }

    .content-of-pages.show{
        animation: content-of-pages-animation-opacity 0.7s linear forwards 0.35s;
    }

    #page3 {
        background: url(images/desktop/M2_3.webp) 0% 0% / cover no-repeat;
    }

    #table-page3{
        border-radius: 30px;
        display: block;
    }

    #table-page3.show{
        transition: 1.3s 1.3s linear;
    }

    #table-page3-mobile{
        display: none;
    }

    #service-details-frame{
        width: calc(100% - 48px);
        height: calc(100% - 28px);
    }

    #table-page3-exit, .table-page3-box-price{
        font-size: calc(2.5dvh + 2px);
        padding: 8px 36px;
        top: 65%;
        border-radius: 10px;
    }

    #table-page3-exit{
        right: 3%;
    }

    .table-page3-box-price{
        left: 3%;
    }

    #page4 {
        background: url(images/desktop/M2_4.webp) 0% 0% / cover no-repeat;
    }

    #page4 .content-of-pages {
        height: calc(70% - 28px);
        top: 6.5%;
        margin: 0;
    }

    #page4 .content-of-pages.show{
        animation: content-of-pages-animation-opacity 0.7s linear forwards 0.85s;
    }

    #page4 .content-of-pages p:nth-child(1).show{
        animation: page4-p 1s forwards 1.4s;
    }
    
    #page4 .content-of-pages p:nth-child(2).show{
        animation: page4-p 1s forwards 1.8s;
    }
    
    #page4 .content-of-pages p:nth-child(3).show{
        animation: page4-p 1s forwards 2.2s;
    }

    .footer {
        height: 18%;
        box-shadow: 0 0 30px 7px #000;
    }

    .footer.show {
        animation: animation-footer 0.5s ease-out forwards 0.4s;
    }

    .icon {
        height: 25%;
        right: 7.5%;
        gap: 10%;
    }

    .icons:nth-child(1).show {
        animation: icons-page4-show 0.9s linear 1.5s, icons-page4-opacity 0.7s ease-in 1.3s forwards;
    }
    
    .icons:nth-child(2).show {
        animation: icons-page4-show 0.9s linear 1.7s, icons-page4-opacity 0.7s ease-in 1.5s forwards;
    }
    
    .icons:nth-child(3).show {
        animation: icons-page4-show 0.9s linear 1.9s, icons-page4-opacity 0.7s ease-in 1.7s forwards;
    }
    
    .icons:nth-child(4).show {
        animation: icons-page4-show 0.9s linear 2.1s, icons-page4-opacity 0.7s ease-in 1.9s forwards;
    }
}

@media (min-width : 1860px) {
    *{
        font-size: calc(2.5dvh + 2px);
    }

    #cursor {
        --cursor-width-height: 48px;
        width: var(--cursor-width-height);
        height: var(--cursor-width-height);
    }

    @keyframes blue-shadow-around{
        0%{
            box-shadow: inset 0 0 40px 40px rgba(6, 25, 218, 0.7);
        }
        25%{
            box-shadow: inset 0 0 40px 20px rgba(6, 25, 218, 0.7);
        }
        50%{
            box-shadow: inset 0 0 40px 40px rgba(6, 25, 218, 0.7);
        }
        75%{
            box-shadow: inset 0 0 40px 13px rgba(6, 25, 218, 0.7);
        }
        100%{
            box-shadow: inset 0 0 40px 40px rgba(6, 25, 218, 0.7);
        }
    }
}

/*TV*/
@media (min-width : 2560px) {
    *{
        font-size: calc(2.6vh + 2px);
        line-height: 5dvh;
    }

    #cursor {
        --cursor-width-height: 64px;
        width: var(--cursor-width-height);
        height: var(--cursor-width-height);
    }

    ::-webkit-scrollbar {
        width: 6px;
    }

    .header {
        height: 18%;
        box-shadow: 0 0 45px 10px #000;
    }

    @keyframes blue-shadow-around{
        0%{
            box-shadow: inset 0 0 50px 50px rgba(6, 25, 218, 0.7);
        }
        25%{
            box-shadow: inset 0 0 50px 25px rgba(6, 25, 218, 0.7);
        }
        50%{
            box-shadow: inset 0 0 50px 50px rgba(6, 25, 218, 0.7);
        }
        75%{
            box-shadow: inset 0 0 50px 17px rgba(6, 25, 218, 0.7);
        }
        100%{
            box-shadow: inset 0 0 50px 50px rgba(6, 25, 218, 0.7);
        }
    }

    .yours, .mine {
        width: 38%;
        height: 100%;
        margin: 0;
        justify-content: space-around;
        align-items: center;
    }

    .yours .message,.mine .message{
        margin: 0;
    }

    .message {
        width: 72%;
        height: 12%;
        border-radius: 150px;
        padding: 30px 40px;
        box-shadow: 0 0 45px 10px #000;
    }

    #page1 {
        background: url(images/TV1/M2_1.webp) 0% 0% / cover no-repeat;
    }

    #m2 {
        background: url(images/TV1/M2_1.webp) 0% 0% / cover no-repeat;
        font: 900 33dvh "arial";
    }

    #page2 {
        background: url(images/TV1/M2_2.webp) 0% 0% / cover no-repeat;
    }

    .content-of-pages {
        border-radius: 45px;
        box-shadow: 0 0 45px 10px #000;
    }

    #page3 {
        background: url(images/TV1/M2_3.webp) 0% 0% / cover no-repeat;
    }

    #table-page3{
        border-radius: 45px;
    }

    #page4 {
        background: url(images/TV1/M2_4.webp) 0% 0% / cover no-repeat;
    }

    .footer {
        height: 18%;
        box-shadow: 0 0 45px 10px #000;
    }
}

@media (min-width : 3840px) {
    #cursor {
        --cursor-width-height: 96px;
        width: var(--cursor-width-height);
        height: var(--cursor-width-height);
    }

    ::-webkit-scrollbar {
        width: 8px;
    }

    .header {
        box-shadow: 0 0 65px 15px #000;
    }

    @keyframes blue-shadow-around{
        0%{
            box-shadow: inset 0 0 70px 70px rgba(6, 25, 218, 0.7);
        }
        25%{
            box-shadow: inset 0 0 70px 35px rgba(6, 25, 218, 0.7);
        }
        50%{
            box-shadow: inset 0 0 70px 70px rgba(6, 25, 218, 0.7);
        }
        75%{
            box-shadow: inset 0 0 70px 23px rgba(6, 25, 218, 0.7);
        }
        100%{
            box-shadow: inset 0 0 70px 70px rgba(6, 25, 218, 0.7);
        }
    }

    .message {
        box-shadow: 0 0 65px 15px #000;
    }

    #page1 {
        background: url(images/TV2/M2_1.webp) 0% 0% / cover no-repeat;
    }

    #m2 {
        background: url(images/TV2/M2_1.webp) 0% 0% / cover no-repeat;
    }

    #page2 {
        background: url(images/TV2/M2_2.webp) 0% 0% / cover no-repeat;
    }

    .content-of-pages {
        border-radius: 55px;
        box-shadow: 0 0 65px 15px #000;
    }

    #page3 {
        background: url(images/TV2/M2_3.webp) 0% 0% / cover no-repeat;
    }

    #table-page3{
        border-radius: 55px;
    }

    #page4 {
        background: url(images/TV2/M2_4.webp) 0% 0% / cover no-repeat;
    }

    .footer {
        box-shadow: 0 0 65px 15px #000;
    }
}

@media (min-width : 5120px) {
    #cursor {
        --cursor-width-height: 144px;
        width: var(--cursor-width-height);
        height: var(--cursor-width-height);
    }

    ::-webkit-scrollbar {
        width: 10px;
    }

    .header {
        box-shadow: 0 0 80px 18px #000;
    }

    @keyframes blue-shadow-around{
        0%{
            box-shadow: inset 0 0 90px 90px rgba(6, 25, 218, 0.7);
        }
        25%{
            box-shadow: inset 0 0 90px 45px rgba(6, 25, 218, 0.7);
        }
        50%{
            box-shadow: inset 0 0 90px 90px rgba(6, 25, 218, 0.7);
        }
        75%{
            box-shadow: inset 0 0 90px 30px rgba(6, 25, 218, 0.7);
        }
        100%{
            box-shadow: inset 0 0 90px 90px rgba(6, 25, 218, 0.7);
        }
    }

    .message {
        box-shadow: 0 0 80px 18px #000;
    }

    #page1 {
        background: url(images/TV3/M2_1.webp) 0% 0% / cover no-repeat;
    }

    #m2 {
        background: url(images/TV3/M2_1.webp) 0% 0% / cover no-repeat;
    }

    #page2 {
        background: url(images/TV3/M2_2.webp) 0% 0% / cover no-repeat;
    }

    .content-of-pages {
        border-radius: 65px;
        box-shadow: 0 0 80px 18px #000;
    }

    #page3 {
        background: url(images/TV3/M2_3.webp) 0% 0% / cover no-repeat;
    }

    #table-page3{
        border-radius: 65px;
    }

    #page4 {
        background: url(images/TV3/M2_4.webp) 0% 0% / cover no-repeat;
    }

    .footer {
        box-shadow: 0 0 80px 18px #000;
    }
}

@media (min-width : 7680px) {
    #cursor {
        --cursor-width-height: 192px;
        width: var(--cursor-width-height);
        height: var(--cursor-width-height);
    }

    ::-webkit-scrollbar {
        width: 12px;
    }

    .header {
        box-shadow: 0 0 100px 23px #000;
    }

    @keyframes blue-shadow-around{
        0%{
            box-shadow: inset 0 0 150px 150px rgba(6, 25, 218, 0.7);
        }
        25%{
            box-shadow: inset 0 0 150px 75px rgba(6, 25, 218, 0.7);
        }
        50%{
            box-shadow: inset 0 0 150px 150px rgba(6, 25, 218, 0.7);
        }
        75%{
            box-shadow: inset 0 0 150px 50px rgba(6, 25, 218, 0.7);
        }
        100%{
            box-shadow: inset 0 0 150px 150px rgba(6, 25, 218, 0.7);
        }
    }

    .message {
        border-radius: 100px;
        box-shadow: 0 0 100px 23px #000;
    }

    #page1 {
        background: url(images/TV4/M2_1.webp) 0% 0% / cover no-repeat;
    }

    #m2 {
        background: url(images/TV4/M2_1.webp) 0% 0% / cover no-repeat;
    }

    #page2 {
        background: url(images/TV4/M2_2.webp) 0% 0% / cover no-repeat;
    }

    .content-of-pages {
        border-radius: 100px;
        box-shadow: 0 0 100px 23px #000;
    }

    #page3 {
        background: url(images/TV4/M2_3.webp) 0% 0% / cover no-repeat;
    }

    #table-page3{
        border-radius: 100px;
    }

    #page4 {
        background: url(images/TV4/M2_4.webp) 0% 0% / cover no-repeat;
    }

    .footer {
        box-shadow: 0 0 100px 23px #000;
    }
}

#m2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}