:root {
    --clr-primary: #db9423;
    --clr-white: #fff;
    --clr-black: #000;
    --clr-site: #333333;
    --bg-site: var(--clr-white);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-box: rgb(0 0 0 / 10%) 0px 0px 10px 0px !important;
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-inner: inset 0 2px 12px 4px rgb(0 0 0 / 5%);
    --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s linear;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-site);
    min-width: 350px !important;
    max-width: 2400px !important;
    color: var(--clr-black);
    font-size: 1rem;
    overflow-x: visible;
}

.active-menu {
    color: #3f055b !important;
    color: #800000 !important;
    font-weight: 700;
}

.active-menu-mobile {
    color: #800000 !important;
    font-weight: 700;
}

#preloader-container {
    width: 100%;
    height: 100%;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000000000000000000000000000;
    overflow: hidden;
}

#preloader-container img {
    max-width: 100%;
    margin: 6rem auto;
}

a {
    text-decoration: none;
}

/* Start Scrollbar Style */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: var(--clr-white);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-primary);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

::-webkit-scrollbar-button {
    background-color: var(--clr-primary);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

/* Finish Scrollbar styles */

#header {
    width: 100%;
    height: 10rem;
    background-color: var(--bg-site);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100000;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

#header .notification-bar {
    height: fit-content;
    width: 100%;
    background-color: var(--clr-primary);
    box-shadow: 0 3px 15px #161410;
    direction: rtl;

}


.header-unpin {
     /*display: none; */
    transform: translateY(-200px);
    /*opacity: 0;*/
    
}

.header-pin {
    /*opacity: 1;*/
     /*display: block; */
    transform: translateY(0);
}

#header .notification-bar p {
    font-size: 0.8rem;
    color: var(--bg-site);
}

#header .logo {
    padding-right: 1rem;
    padding-top: 1rem;
}

#header .logo .divider {
    width: 0.1rem;
    height: 3.5rem;
    border-radius: 25px;
    background-color: var(--clr-primary);
    margin-right: 1rem;
    margin-top: 1rem;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    box-shadow: 3px 0 6px var(--clr-primary);
    opacity: 0;
}

.logo img {
    width: 4rem;
}

#header .logo .slogan {
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    opacity: 0;
    padding-top: 1rem;
    padding-right: 1rem;
}

.logo h6 {
    color: var(--clr-primary);
}

#header .responsive-menu {
    padding-right: 1rem;
    padding-top: 2.5rem;
    direction: ltr;
}

.btn-menu-responsive {
    padding-top: 0.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    color: var(--clr-primary);
    font-size: 30px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    border: none;
    background-color: transparent;
}

.btn-menu-responsive:hover {
    border: 0.1px solid var(--clr-primary);
    background-color: var(--clr-black);
}

.header-btn {
    min-width: 10.5rem;
    min-width: fit-content;
}

.btn-main {
    width: 10rem;
    height: 3rem;
    line-height: 1.5rem;
    font-weight: bold;
    border: 1px solid var(--clr-primary);
    color: var(--clr-white);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--dark-shadow);
}

.btn-card-register {
    border-radius: 25px 25px 25px 0;
    -webkit-border-radius: 25px 25px 25px 0;
    -moz-border-radius: 25px 25px 25px 0;
    -ms-border-radius: 25px 25px 25px 0;
    -o-border-radius: 25px 25px 25px 0;
    background-color: #db9423;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.btn-card-register:hover {
    color: var(--clr-black);
    background-color: var(--clr-white);
}

.btn-card-register:hover i {
    color: var(--clr-primary);
}

.btn-card-register i {
    margin-top: 5px !important;
    margin-left: 0.5rem;
}

.btn-sign-in {
    border-radius: 25px 25px 25px 0;
    -webkit-border-radius: 25px 25px 25px 0;
    -moz-border-radius: 25px 25px 25px 0;
    -ms-border-radius: 25px 25px 25px 0;
    -o-border-radius: 25px 25px 25px 0;
    color: var(--clr-black);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.btn-sign-in:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-sign-in:hover > i {
    color: var(--clr-white)
}

.btn-sign-in i {
    color: var(--clr-primary);
    margin-top: 5px !important;
    margin-left: 0.5rem;
}

.badge-font {
    font-family: IRANYekanX !important;
    font-feature-settings: 'ss02';
    -webkit-font-feature-settings: 'ss02';
    -moz-font-feature-settings: 'ss02';
}

.header-top-menu {
    background-color: var(--clr-primary);
    padding: 15px 15px 8px 15px;
    border-radius: 0 50px 50px 50px;
    margin-top: 30px;
    position: sticky;
    top: 0;
    box-shadow: var(--shadow-md);
    margin-right: 1rem;
    margin-left: 1rem;
}

.mega-menu-parent {
    z-index: 100;
}

.header-top-menu-right {
    width: 100%;
    height: 100%;
}

.header-top-menu-right ul {
    width: 100%;
    height: 100%
}

.menu-list {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-bottom: 0.5rem;
    list-style: none;
}

.menu-list li a {
    color: white
}

.phone-number {
    position: relative;
    margin-left: 2rem;
}

.phone-box {
    width: 15rem;
    height: 3rem;
    position: absolute;
    top: 0;
    right: 0;
}

.phone-number p {
    margin: 15px auto;
    color: var(--clr-white);
}

.social-media-box {
    direction: ltr;
    padding-top: 0.6rem;
}

.media-box {
    min-width: 3rem;
    padding-left: 1rem;
}

.media-box i:nth-child(1) {
    color: var(--clr-white)
}

.social-media-box a {
    font-size: 2rem;
    padding-top: 0.5rem;
}

.social-media-phone-box {
    position: absolute;
    top: 8px;
    left: 20px
}

.media-box a i {
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.media1:hover > i {
    color: #0b8502;
}

.media2:hover > i {
    color: #229ED9;
}

.media3:hover > i {
    color: #8134af;
}

.media4:hover > i {
    color: #FF0000;
    color: #2d0d62;
}

.svc-list {
    display: none;
    width: 12rem;
    box-shadow: 5px 7px 15px #333;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    background-color: rgba(227, 213, 213, 1);
    position: sticky;
    overflow: visible;
    height: 0;
    right: 7rem;
    z-index: 100;
}

.svc-box-box {
    width: 12rem;
    box-shadow: 5px 7px 15px #333;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    background-color: rgba(227, 213, 213, 1);
}

.svc-list ul {
    width: 100%;
    text-align: center;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    padding-right: 0 !important;
}

.svc-list ul li {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.svc-list ul li a {
    padding: 0.25rem 1rem;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    color: var(--clr-black);
    font-weight: bold;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.svc-list ul li a:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

#main {
    max-width: 100%;
}

/* NavBar Menu Responsive */
.navbar-mobile {
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--clr-site);
    background-color: #f5f3f4;
    z-index: 2222200;
    height: 100%;
    width: 100%;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}


.navbar-toggle {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.navbar-close {
    text-align: left;
}

.nav-close {
    font-size: 2.5rem;
    color: #f29c9c;
    cursor: pointer;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.nav-close:hover {
    color: #bb2525;
}

.navbar-header {
    margin-bottom: 2rem;
}

.navbar-header button {
    width: 50%;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 0.0003rem solid #0b090a;
    background-color: transparent;

}

.navbar-header button:nth-child(1) {
    background-color: #e5383b;
    background-color: var(--clr-primary);
}

.navbar-header #category {
    border-right: 1px solid black;
}


.navbar-list-box ul,
li {
    list-style: none;
    padding-right: 0 !important;
}

.navbar-link {
    padding: 0.5rem 1rem;
    display: block;
    font-size: 1.1rem;
    color: var(--clr-black);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.navbar-link i {
    font-size: 1.4rem;
    margin-left: 0.9rem;
    vertical-align: middle;
}

.navbar-link:hover {
    background-color: var(--clr-primary);
    border-right: 0.25rem solid #8134af;
    border-right: 0.25rem solid #af3a34;
    border-right: 0.25rem solid #89580a;
    border-radius: 7px;
    padding-right: 1.5rem;
    color: var(--clr-white);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

#category-items {
    display: none;
}

/* End NavBar Menu Responsive */

/* Start Swiper Slider Styles */

#swiper-slide1 {
    width: 100%;
    height: auto;
    /*border-radius: 25px;*/
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

#swiper-slide1::before {
    width: 100%;
    /*border-radius: 25px;*/
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    /*-webkit-border-radius: 25px;*/
    /*-moz-border-radius: 25px;*/
    /*-ms-border-radius: 25px;*/
    /*-o-border-radius: 25px;*/
}

#swiper-slide1 img {
    width: 100%;
    height: 450px;
    /*border-radius: 25px;*/
    /*-webkit-border-radius: 25px;*/
    /*-moz-border-radius: 25px;*/
    /*-ms-border-radius: 25px;*/
    /*-o-border-radius: 25px;*/
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.05);
}

.slider-description {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.title-slider {
    color: var(--clr-primary);
    color: #ffad2a;
    font-weight: bolder;
    text-align: center;
    font-size: 37px;
    padding: 0.6rem 0;
    margin-bottom: 2rem;
    font-weight: bold;
    text-shadow: 0px 7px 5px #000000;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.para-slider {
    color: var(--clr-white);
    text-shadow: 0px 0px 4px rgba(255, 0, 0, 0.98);
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 2rem;
    padding: 0.6rem 1rem;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    animation: des-img 2s linear;
    -webkit-animation: des-img 2s ease-in-out;
}

/* Finish Swiper Slider Styles */

#index-title-services-top {
    text-align: center;
    font-size: 24px;
    font-weight: bolder;
    color: var(--clr-primary);
}

/* Start Services Box Styles */

.discount-box-notif-div {
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.discount-notif-box {
    background-color: #dc3545;
    padding: 0.5rem 2rem;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    color: var(--clr-white);
}

.section-main {
    max-width: 100%;
    margin-top: 1rem;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    column-gap: 2rem;
}

.section-main .services {
    width: 100%;
    box-shadow: 2px 3px 15px #333;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-bottom: 1px;
}


.section-main .services .services-title {
    text-align: center;
    position: relative;
}

.section-main .services .services-title h3 {
    color: var(--clr-primary);
    font-weight: bolder;
    text-shadow: 0px 7px 5px #000000;
    padding-top: 2rem;
}

.section-main .services .services-title img {
    width: 12rem;
    display: inline-block;
    /*margin-bottom: rem;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -0%);
    -webkit-transform: translate(-50%, -0%);
    -moz-transform: translate(-50%, -0%);
    -ms-transform: translate(-50%, -0%);
    -o-transform: translate(-50%, -0%);
}


.swiper-container1 {
    width: 100%;
    height: 100%;
}


#swiper-slide2 {
    width: 200px;
    height: 300px;
    background-position: center;
    background-size: cover;
}

#swiper-slide2 img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.article-service-description p {
    line-height: 2rem;
    text-align: right;
    color: var(--clr-white);
    font-weight: bolder;
    text-shadow: 0px 7px 5px #000000;
}

.article-service-description h4 {
    color: var(--clr-primary);
    text-shadow: 0px 7px 5px #000000;
}

.article-service-description a {
    padding: 0.6rem 1rem;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: 2px 5px 15px #c41414;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    margin-top: 2rem !important;
    display: inline-block;
    text-align: right;
    font-weight: bold;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.article-service-description a:hover {
    background-color: var(--clr-black);
    color: var(--clr-primary);
}

.article-service-description .time-box {
    pointer-events: none;
    font-size: 0.9rem;
    background-color: transparent;
    color: var(--clr-primary);
    border: 1px dotted var(--clr-primary);
}

.article-service-description .time-box i {
    font-size: 0.8rem;
    padding: 0rem 0.4rem;
}

.Possibilities-items li {
    list-style: disc;
    color: var(--clr-white);
    text-shadow: 0px 0px 4px rgba(255, 0, 0, 0.98);
}

.Possibilities-items li::marker {
    color: var(--clr-primary);
}

/* Finish Services Box Styles */

.footer-header {
    border-bottom: 2px solid #1e1e1e;
}

.footer-header * {
    color: var(--clr-white)
}

.footer-logo1 img {
    width: 100px;
}

.footer-text1 p {
    line-height: 2rem;
    padding-left: 1rem;
    color: var(--clr-white);
}

.social-media-icons-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.social-media-icons-footer i {
    color: var(--clr-white);
}

.footer-link-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 2rem;
    column-gap: 2rem;
    margin: 20px auto;
}

.footer-link-buttons a {
    padding: 0.2rem 0.8rem;
    border: 1px solid var(--bg-site);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    color: var(--clr-white);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    text-align: center;
    /*font-weight: bold;*/
}

.footer-link-buttons a:hover {
    background-color: #c41414;
    color: var(--clr-white);
}

.social-media-icons-footer a i:hover {
    color: var(--clr-black);
}

.social-media-icons-footer a i {
    font-size: 1.52rem;
    font-weight: bold;
}

.footer-logo1 {
    display: flex;
    justify-content: center;
}

.footer-copy-right {
    border-top: 2px solid var(--clr-site);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.e-logo img {
    width: 120px;
}

.footer-copy-right * {
    font-size: 0.8rem;
}

.social-media-icons-footer1 a {
    padding: 1rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 3px dotted var(--clr-white);
}

.footer-footer * {
    color: var(--clr-primary);
}

.mobile-footer {
    width: 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background-color: #151414;
    background-color: transparent;
}

.mobile-footer .parent {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: var(--clr-primary);
    overflow: hidden;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    height: 6rem;
}

.mobile-footer .parent .box {
    width: 20%;
    text-align: center;
    line-height: 6rem;
}

.mobile-footer .parent .box a i {
    text-align: center;
    font-size: 2rem;
    color: var(--clr-white);
}

.help-footer-menu-mobile div {
    opacity: 0;
}

.box3 a {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: red;
    background-color: #8134af;
    background-color: rgb(91, 91, 229);
    padding: 1.8rem 1.3rem;
    padding: 1.5rem 1.5rem;
    padding: 1.6rem 1.3rem;
}

.box3 a i {
    color: var(--clr-black);
}

/* whatsapp btn fix in footer */
.whatsapp-btn-mobile {
    position: fixed;
    bottom: 100px;
    left: 7px;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #0b8502;
    z-index: 1000000;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 106, 13, 0.775);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


.whatsapp-btn-mobile a {
    font-size: 2rem;
    color: #fff;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: block;
    text-decoration: none;
    float: right;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    transition: transform .1s linear 0ms;
    transform: scale(1);
    animation: pulse 1s infinite;
    transition: 0.3s all ease-in-out;
    animation-delay: 10s;
    box-shadow: 0 4px 17px 0 rgba(0, 0, 0, .14), 0 1px 32px 0 rgba(0, 0, 0, .12), 0 2px 9px -1px rgba(0, 0, 0, .2);
    -webkit-animation: pulse 1s infinite;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

.whatsapp-btn-mobile a i {
    color: var(--clr-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/* end whatsapp btn fix in footer */

/* Start Services Page styles */
/* ------------------------------------------------------------------------------------------------------- */
.header-img-service-box {
    width: 100%;
    height: 30rem;
}

.header-img-service-box img {
    width: 100%;
    height: 30rem;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.header-img-service-box::before {
    position: absolute;
    border-radius: 25px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 30rem;
    content: '';
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.img-content-services {
    z-index: 2;
    width: 100%;
}

.img-content-services h1 {
    color: #ffaf2e;
    text-shadow: 0 7px 5px #000000;
    font-weight: bold;
    font-size: 37px;
    padding: 0.6rem 1rem;
    line-height: 2rem;
    animation: title-img 2s ease-in-out;
    -webkit-animation: title-img 2s ease-in-out;
}

.img-content-services h2 {
    color: var(--clr-white);
    padding: 0.6rem 1rem;
    line-height: 2rem;
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 0 0px 4px rgba(255, 0, 0, 0.98);
    animation: des-img 2s linear;
    -webkit-animation: des-img 2s ease-in-out;
    margin-top: 1rem;
}

@keyframes title-img {
    0% {
        transform: translateY(-200%);
        -webkit-transform: translateY(-200%);
        -moz-transform: translateY(-200%);
        -ms-transform: translateY(-200%);
        -o-transform: translateY(-200%);
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

@keyframes des-img {
    0% {
        transform: translateY(400%);
        -webkit-transform: translateY(400%);
        -moz-transform: translateY(400%);
        -ms-transform: translateY(400%);
        -o-transform: translateY(400%);
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

.divider-svc {
    text-align: center;
}

.divider-svc img {
    width: 15rem;
}


.title-svc-items {
    font-size: 1.2rem;
    color: var(--clr-primary);
    text-align: center;
}

.svc-items {
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.svc-items:hover {
    background-color: var(--clr-primary);
}

.svc-items:hover > h2 {
    color: var(--clr-white);
}

.svc-items h2 {
    font-size: 0.9rem;
    font-weight: bolder;
    padding: 0.9rem 0.5rem 0.5rem 0.5rem;
    color: #333;
}

.img-service-ico {
    text-align: center;
}

.title-svc-box {
    color: var(--clr-primary);
    font-size: 1.2rem;
}

.font-style {
    font-size: 1.2rem !important;
    padding: 0.5rem 5rem;
    border-radius: 25px;
    background-color: rgba(197, 30, 123, 0.5);
    background-color: rgba(13, 110, 253, 0.8);
    background-color: rgba(43, 125, 246, 0.8);
}

.font-des-style {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 2rem;
}

.img-service-ico img {
    width: 10rem;
}

.services-card {
    box-shadow: 2px 5px 15px #333;
}

.services-card h5 {
    font-size: 0.9rem;
}

.services-card p {
    font-size: 0.8rem;
}

.star-container i {
    color: #ffa500;
}

.title-table h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.table-price-box {
    /* overflow-x: auto; */

}

.main-table th {
    font-size: 0.8rem;
}

.main-table td {
    font-size: 0.7rem;
}

.input-buy-num {
    font-size: 0.9rem !important;
}

input[type="number"] {
    width: 50px;
    height: 2.5rem;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

td button {
    padding: 0 1rem;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    font-size: 1.5rem;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

td button:hover {
    background-color: var(--clr-primary);
    color: var(--bg-site);
}

.services-gallery-container-slider {
    width: 100%;
    height: 40rem;
    text-align: center;
}

.services-gallery-container-slider::before {
    content: '';
    width: 100%;
    height: 40rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.services-gallery-container-slider img {
    width: 100%;
    height: 40rem;
}

.header-title-slider {
    width: 100%;
    position: absolute;
    top: 10%;
    z-index: 4;
}

.header-title-slider i {
    font-size: 2rem;
    color: var(--clr-primary);
}

.header-title-slider p {
    color: var(--clr-primary);
}

.slider-gallery {
    width: 100%;
    height: 30rem;
    background-color: transparent;
    position: absolute;
    top: 15%;
}

.swiper-container2 {
    z-index: 5;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

#swiper-slide3 {
    background-position: center;
    background-size: cover;
    width: 340px;
    height: 300px;
}

#swiper-slide3 img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

/* End Services Page styles */
/* ----------------------------------------------------------------------------------------------------- */
/* Start Contact-us styles */

.contact-1 img {
    width: 100%;
    height: 200px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.des-contact * {
    text-align: center;
}

.des-contact h2 {
    font-size: 1.3rem;
    font-weight: bold;
}

.des-contact h4 {
    font-weight: bold;
}

.des-contact div img {
    width: 200px;
}

input {
    direction: rtl;
}

#edit-font td {
    font-size: 0.9rem;
    font-weight: bold;
}

.btn-form {
    background-color: var(--clr-primary);
    padding: 0.5rem 2rem;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: var(--clr-white);
    border: none;
}

.map {
    margin-top: 2rem;
}

.map .map-container iframe {
    width: 100%;
    height: 20rem;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

/* End Contact-us styles */

/* Start About Us Styles */

.managers {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.profile-description h5 {
    font-size: 1rem;
    font-weight: 800;
}

.profile-description h6 {
    font-size: 0.8rem;
    font-weight: 800;
}

.profile-description p {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5rem;
}

.managers h3 {
    color: var(--clr-primary);
    font-size: 1.5rem;
}

.managers img {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 10px auto;
    text-align: center;
}

.card-text-text {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5rem;
}

.img-content-services p {
    color: var(--clr-white);
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 2px 3px 5px #f60a11;
    animation: title-img 1s ease-in-out;
    -webkit-animation: title-img 1s ease-in-out;
}

.aparat-video-title p {
    font-size: 1.2rem;
    font-weight: bold;
}

.aparat-video-title img {
    width: 20rem;
}

.video-wrapper {
    width: 100%;
    margin: 10px auto 50px auto;
}

.video-aparat {
    position: relative;
    padding-bottom: 56.25%;
}

.video-aparat iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.logo-img img {
    width: 10rem;
}

/* End About Us Styles */

/* Start Price List Styles */

.price-item-list-section {
    margin-top: 2rem;
    margin-right: 1rem;
    margin-bottom: 2rem;
}

.title-price {
    font-size: 0.9rem;
    color: #333;
}

.price-item-list-container {
    width: 90%;
    height: 100%;
    box-shadow: 2px 3px 15px #333;
    padding: 0.25rem 0.5rem;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

.price-item-list-container p {
    font-size: 0.9rem;
    color: #333;
    font-weight: bold;
}

.price-item-list-container i {
    color: #ffa500;
}

.price-item-list-container a {
    font-size: 0.9rem;
    color: var(--clr-primary);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.price-item-list-container a:hover {
    text-decoration: underline;
    color: #8134af;
}

.instruction-buy-package-section {
    min-height: 46rem;
}

#instruction-box p {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    text-shadow: 0px 0px 4px rgba(255, 170, 0, 0.98);
    line-height: 1.5rem;
}

#instruction-box h2 {
    font-size: 1.2rem;
    color: #333;
    color: var(--clr-primary)
}

.input-persian-num input {
    font-feature-settings: 'ss02';
    -webkit-font-feature-settings: 'ss02';
    -moz-font-feature-settings: 'ss02';
    font-weight: bold;
}

/* End Price List Styles */

/* Start SignUp Styles */

.client-form-rotate {
    width: 300px;
    height: 515px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    -webkit-transform: translate(-50%, -50%) rotate(-5deg);
    -moz-transform: translate(-50%, -50%) rotate(-5deg);
    -ms-transform: translate(-50%, -50%) rotate(-5deg);
    -o-transform: translate(-50%, -50%) rotate(-5deg);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    box-shadow: 2px 3px 15px #333;
    background-color: #ede6e9;
    z-index: -2;
}

.signup-form {
    width: 300px;
    min-height: 515px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    box-shadow: 2px 3px 15px #333;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    background-color: #ede6e9;
}

.header-sign-up p {
    font-size: 0.9rem;
    font-weight: bold;
}

.logo-form {
    text-align: center;
}

.logo-form img {
    width: 6rem;
}

.input-style {
    width: 100%;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    border: 1px solid #333;
}

.signup-btn {
    padding: 0.25rem 1rem;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    margin-bottom: 2rem;
    border: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.signup-btn:hover {
    background-color: var(--clr-site);
}

.name-alert-form,
.lname-alert-form,
.phone-alert-form {
    font-size: 0.7rem;
    color: red;
    display: none;
}

.name-label,
.lname-label,
.mob-label {
    font-size: 0.8rem;
}

#phoneNum1 {
    font-feature-settings: 'ss02';
    -webkit-font-feature-settings: 'ss02';
    -moz-font-feature-settings: 'ss02';
}

.main-login-btns a {
    font-size: 0.8rem;
    color: var(--clr-site);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.main-login-btns a i {
    font-size: 1rem;
}

.main-login-btns #login:hover {
    font-weight: bold;
}

.main-login-btns #main2:hover {
    font-weight: bold;
}

/* End SignUp Styles */

/* Start signIn Styles */

.client-form-rotate-signin {
    width: 300px;
    height: 377px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    -webkit-transform: translate(-50%, -50%) rotate(-5deg);
    -moz-transform: translate(-50%, -50%) rotate(-5deg);
    -ms-transform: translate(-50%, -50%) rotate(-5deg);
    -o-transform: translate(-50%, -50%) rotate(-5deg);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    box-shadow: 2px 3px 15px #333;
    background-color: #ede6e9;
    z-index: -2;
}

.signin-form {
    width: 300px;
    height: 377px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    box-shadow: 2px 3px 15px #333;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    background-color: #ede6e9;
}

/* End signIn Styles */

/* Start Activate Acc Styles */

/* Chrome, Safari, Edge, Opera */
.num-form::-webkit-outer-spin-button,
.num-form::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.num-form[type=number] {
    -moz-appearance: textfield;
}

.input-nums {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
}

.num-form {
    margin-top: 1rem;
    width: 3rem;
    height: 2.5rem;
    padding: 1rem;
    font-feature-settings: 'ss02';
    -webkit-font-feature-settings: 'ss02';
    -moz-font-feature-settings: 'ss02';
    border: 1px solid #333;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    direction: ltr;
}

.client-form-rotate-activate {
    width: 300px;
    height: 388px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    -webkit-transform: translate(-50%, -50%) rotate(-5deg);
    -moz-transform: translate(-50%, -50%) rotate(-5deg);
    -ms-transform: translate(-50%, -50%) rotate(-5deg);
    -o-transform: translate(-50%, -50%) rotate(-5deg);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    box-shadow: 2px 3px 15px #333;
    background-color: #ede6e9;
    z-index: -2;
}

.activate-form {
    width: 300px;
    height: 388px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    box-shadow: 2px 3px 15px #333;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    background-color: #ede6e9;
}

/* End Activate Acc Styles */

/* Start User Panel Styles */

.panel-navbar-laptop {
    margin-right: 1rem;
}

.panel-nav-logo img {
    width: 8rem;
}

.navbar-panel {
    background-color: var(--clr-primary);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-nav-panel {
    width: 80%;
    height: 80%;
    margin: 20px 0 0 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.navbar-panel ul {
    padding-right: 0 !important;
}

.navbar-panel .nav-nav-panel ul li {
    margin-top: 8px;
}

.navbar-panel .nav-nav-panel ul li a {
    color: var(--clr-white);
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    padding-right: 0.9rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.navbar-panel .nav-nav-panel ul li a:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
}

.navbar-panel .nav-nav-panel ul li a i {
    padding-left: 0.5rem;
    font-size: 1.5rem;
    vertical-align: middle;
}

.line-divider {
    width: 100%;
    height: 3px;
    background-color: var(--clr-white);
    margin: 2px auto;
}

.active {
    background-color: var(--clr-white);
    color: var(--clr-primary) !important;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

.main-profile-content {
    padding-left: 2rem;
    padding-right: 1rem;
}

.panel-header {
    box-shadow: 2px 3px 5px #998c8c;
    border: 1px dotted #998c8c;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.panel-header p {
    font-weight: bold;
    font-size: 0.9rem;
}

.line-design-mobile {
    width: 5rem;
    height: 5px;
    background-color: var(--clr-primary);
    margin: auto;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.line-design-tablet-laptop {
    width: 5px;
    height: 5rem;
    background-color: var(--clr-primary);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.name-profile-notif {
    height: 100%;
    gap: 2rem
}


.panel-header a {
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    font-size: 1.2rem;
}

.panel-header a:hover {
    color: var(--clr-primary);
}

.img-profile {
    width: 8rem;
    height: 8rem;
    background-color: #8134af;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 10px auto;
}

.img-profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    object-fit: cover;
}

.notif-bell-box a {
    font-size: 2rem;
    color: var(--clr-black);
}

.bell-link span {
    vertical-align: text-top;
    font-size: 1rem;
}

.bell-link:hover {
    color: #fd3300 !important;
}

.fast-access-box1 {
    padding: 0.5rem 0;
}

.fast-access-box2 {
    padding: 0.5rem 0;
}

.fast-access-box3 {
    padding: 0.5rem 0;
}

.fast-access-box4 {
    padding: 0.5rem 0;
}

.fast-link {
    box-shadow: 2px 2px 5px #998c8c;
    background-color: #fffcfc;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url('../images/nama-building/Untitled.png') center/cover no-repeat;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: block;
    padding: 1rem;
    padding: 0.5rem 1rem;
    column-gap: 2rem !important;
    row-gap: 1rem !important;
}

.fast-link p {
    color: var(--clr-black);
    color: var(--clr-white);
    font-weight: bold;
    font-size: 1rem;
    margin-top: 1rem;
}

.fast-link p:last-child {
    font-weight: 900;
    font-size: 1.5rem;
    color: rgb(175, 38, 38);
    color: rgb(21, 255, 0);
}

.green-box {
    background-color: #198754;
    padding: 1.3rem 1.8rem;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.green-box i {
    color: var(--clr-white);
    font-size: 2rem;
}

.paid-table {
    border: 1px solid #198754;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

#user-bakset {
    border: 1px solid #dc3545 !important;
}

#user-bakset thead th {
    background-color: #dc3545 !important;
}

.user-basket::-webkit-scrollbar-thumb {
    background: #dc3545 !important;
}

#user-bakset a i {
    font-size: 1rem;
    color: #dc3545;
}

#user-bakset input {
    max-width: 5rem;
    direction: ltr;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.invoice {
    background-color: #ffffff;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    padding-bottom: 0 !important;
}

.invoice ul {
    margin-top: 1rem;
    /*width: 100%;*/
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-right: 1rem !important;
}

.invoice ul li {
    background-color: #666363;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    opacity: 0.8;
    padding: 1.7rem 0 1rem 0;
}

.invoice ul li a {
    color: #035148;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem !important;
    border: 1px solid wheat;
    padding: 0.25rem 4rem;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    background-color: #fbf9f9;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.invoice ul li a:hover {
    background-color: var(--clr-primary);
    border: none;
    color: var(--clr-white);
}

.invoice ul li p {
    font-size: 0.9rem;
    color: #ffffff;
}

.cursor-pointer {
    cursor: pointer;
}

#increase, #decrease {
    border: 1px solid #dc3545;
    font-size: 1.3rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: block;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    cursor: pointer;
}

#increase:hover {
    background-color: #dc3545;
}

#increase:hover > i {
    color: var(--clr-white)
}

#decrease:hover {
    background-color: #dc3545;
}

#decrease:hover > i {
    color: var(--clr-white)
}

/* Chrome, Safari, Edge, Opera */
.input-buy-num::-webkit-outer-spin-button,
.input-buy-num::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.input-buy-num[type=number] {
    -moz-appearance: textfield;
}

#user-bakset input {
    font-feature-settings: 'ss02';
    -webkit-font-feature-settings: 'ss02';
    -moz-font-feature-settings: 'ss02';
}

#remove-order-detail {
    cursor: pointer;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

#remove-order-detail:hover > i {
    color: var(--clr-black);
}


#scores {
    max-width: 5rem;
    font-feature-settings: 'ss02';
    -webkit-font-feature-settings: 'ss02';
    -moz-font-feature-settings: 'ss02';
}

.paid-table::-webkit-scrollbar {
    height: 8px !important;
    margin-bottom: 2rem !important;
}

.paid-table::-webkit-scrollbar-track {
    background: var(--clr-white);
}

.paid-table::-webkit-scrollbar-thumb {
    background: #198754;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.paid-table::-webkit-scrollbar-button {
    padding-top: 2rem;
    display: none;
}

.table-paid {
    width: 100%;
}

.table-paid thead th {
    padding: 1rem 2rem;
    min-width: 100px;
}

.table-shop thead th {
    background-color: #222523 !important;
}

.shop-table {
    border: 1px solid #222523 !important;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.shop-table::-webkit-scrollbar-thumb {
    background: #222523 !important;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.table-paid thead tr th {
    font-size: 0.7rem !important;
    color: var(--clr-white);
}

.table-paid thead th:first-child {
    border-top-right-radius: 25px;
}

.table-paid thead th {
    background-color: #198754;
}

.table-paid thead th:last-child {
    border-top-left-radius: 25px;
}

.table-paid thead,
tbody th:first-child {
    font-weight: bold;
}

.table-paid td {
    font-size: 0.8rem;
    min-width: 3rem;
}

.table-paid td a {
    font-size: 0.7rem;
}

.pagination {
    display: flex;
    gap: 0.5rem
}

.pagination a {
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--clr-black);
    color: var(--clr-black);
    border-radius: 9px;
}

.active-link {
    background-color: #198754;
    border: none !important;
    color: var(--clr-white) !important;
}

.active-link-link {
    background-color: #0d6efd;
    border: none !important;
    color: var(--clr-white) !important;
}

.english {
    font-feature-settings: 'none';
    -webkit-font-feature-settings: 'none';
    -moz-font-feature-settings: 'none';
    color: #dc3545;
    font-weight: 900;
}


#fix-overflow {
    overflow-x: hidden;
}

.table-paid th,
td {
    padding: 1rem 0;
}

.table-paid tbody tr:not(:last-child) {
    border-bottom: 1px solid #ccc;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.table-paid tbody tr:last-child {
    border-bottom: 3px solid #dc3545;
}

#last-paid tbody tr:last-child {
    border-bottom: 1px solid #198754;
    border-bottom: none;
}

.menu-panel-dashboard {
    width: 4rem;
    height: 4rem;
    position: fixed;
    right: 0.5rem;
    bottom: 6.4rem;
    z-index: 100;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    padding-top: 0.6rem;
}

.offcanvas {
    z-index: 1231231231 !important;
}

.offcanvas-body::-webkit-scrollbar-button {
    display: none !important;
}

.menu-panel-dashboard i {
    font-size: 2rem;
    margin-bottom: 0 !important;
}

.header-paid {
    font-size: 1rem;
    margin-top: 3rem !important;
}

#notif-container {
    min-height: 3rem;
}

.scores {
    font-size: 3rem;
    color: var(--clr-white);
}

.score-box {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    box-shadow: 2px 5px 15px #0d6efd;
}

.score-box h6 {
    text-shadow: 2px 5px 15px #0d6efd;
    box-shadow: 2px 5px 15px #0d6efd;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    padding: 1rem 1rem;
}

.ticket-box {
    padding: 2rem 2rem;
    box-shadow: 2px 5px 15px #e5383b;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.notif-panel-box {
    padding: 2rem 7rem;
    box-shadow: 2px 5px 5px rgba(13, 110, 253, 0.6);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border: 1px solid #0d6efd;
}

#color-btn {
    background-color: #e5383b;
}

#discount-box {
    margin-bottom: 1rem;
    min-height: 7rem !important;
}

#discount-box p {
    color: #e5383b;
    font-weight: bold;
}

/* End User Panel Styles */

/* Start 404 html styles */

#box-404 img {
    width: 300px;
}

#box-404 p {
    padding: 1rem 1rem;
    font-weight: bold;
}

/* End 404 html styles */

@media screen and (min-width: 768px) {
    .navbar-mobile {
        width: 30vw;
        max-width: 20rem;
    }

    .contact-box {
        height: 15rem;
    }

    .map .map-container iframe {
        height: 31.5rem;
    }

    .instruction-buy-package-section {
        min-height: 25rem;
    }

    #instruction-buy-package-section {
        min-height: 30rem;
    }

    .main-table th {
        font-size: 0.9rem;
    }

    .main-table td {
        font-size: 0.9rem;
    }

    .services-card {
        min-height: 16rem;
    }

    .services-card p {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .edit-img-name-box {
        display: flex;
        align-items: center;
        justify-content: space-around;
        column-gap: 0.5rem;
        height: 7rem;
        max-width: 20rem;
    }

    .name-prof {
        margin-top: 0.9rem;
        margin-left: 0.5rem;
    }

    .img-profile {
        width: 5rem;
        height: 5rem;
        background-color: #8134af;
    }

    .img-profile img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        object-fit: cover;
    }

    .notif-bell-box a {
        line-height: 7rem;
    }

    .fast-access-box1 {
        padding: 0 0 1rem 1rem;
    }

    .fast-access-box2 {
        padding: 0 0 0 0;
    }

    .fast-access-box3 {
        padding: 0 0 0 1rem;
    }

    .fast-access-box4 {
        padding: 0 0 0 0;
    }
}


@media screen and (min-width: 576px) and (max-width: 768px) {
    #swiper-slide2 {
        height: 380px;
    }
}


@media screen and (min-width: 768px) and (max-width: 992px) {
    #header .logo .divider {
        opacity: 1;
    }

    #header .logo .slogan {
        opacity: 1;
    }

    #swiper-slide2 {
        height: 400px;
    }
}

@media screen and (min-width: 992px) {
    .fast-link {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url('../images/nama-building/Untitled.png') center/cover no-repeat fixed;
    }
    
    #header {
        height: 20rem;
        position: static;
    }
    
    .header-unpin {
        /*display: block; */
        transform: translateY(0);
        /*opacity: 1;*/
    }

    .header-pin {
        /*opacity: 1;*/
        /*display: block; */
        transform: translateY(0);
    }

    #header .notification-bar {
        display: none;
    }

    #header .logo {
        padding-right: 2rem;
        padding-top: 1rem;
    }

    #header .logo img {
        width: 90px;
    }

    .btn-menu-responsive {
        display: none;
    }

    #header .logo .divider {
        opacity: 1;
        height: 4rem;
        margin-top: 2rem;
    }

    #header .logo .slogan {
        opacity: 1;
        margin-top: -0.3rem;
    }

    #header .logo .slogan h2 {
        line-height: 3.8rem
    }

    .header-panel-box {
        width: 30rem;
        height: 10rem;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .swiper-container {
        padding: 0 1rem;
    }

    #swiper-slide1 {
        width: 100%;
        height: 600px;
    }

    #swiper-slide1 img {
        width: 100%;
        height: 600px;
    }

    .title-slider {
        text-align: center;
        font-size: 3rem;
        padding: 0.6rem 0;
        margin-bottom: 2rem;
        font-weight: 900;
    }

    .para-slider {
        color: var(--clr-white);
        text-align: center;
        font-size: 1.5rem;
        line-height: 3.5rem;
    }

    #swiper-slide2 {
        height: 500px;
    }

    #section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .social-media-icons-footer1 a {
        padding: 1rem;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

    .whatsapp-btn-mobile {
        bottom: 10px;
    }

    #swiper-slide3 {
        background-position: center;
        background-size: cover;
        width: 700px;
        height: 400px;
    }

    .video-wrapper {
        width: 77%;
    }

    .aparat-video-title p {
        font-size: 1.3rem;
    }

    .price-title-list {
        text-align: right;
        font-size: 1.7rem;
    }

    .header-img-service-box {
        height: 33rem;
    }

    .header-img-service-box img {
        height: 33rem;
    }

    .header-img-service-box::before {
        height: 33rem;
    }

    .instruction-buy-package-section {
        min-height: 20rem;
    }

    #box-404 img {
        width: 400px;
    }

    .main-profile-content {
        margin-top: 1.5rem;
    }

    .managers h3 {
        color: var(--clr-primary);
        font-size: 1.5rem;
    }

    .font-style {
        font-size: 1.4rem !important;
    }
    
    .font-des-style {
        font-size: 1rem;
        font-weight: 600;
    }
}

@media screen and (min-width: 1188px) {
    .phone-number p {
        font-size: 1rem;
    }

    .phone-number p i {
        margin-right: 3px;
    }
}


@media screen and (min-width: 992px) and (max-width: 1119px) {
    .underline1 {
        width: 0;
        height: 0.1rem;
        background-color: var(--clr-white);
    }

    .underline2 {
        width: 0;
        height: 0.1rem;
        background-color: var(--clr-white);
    }

    .underline3 {
        width: 0;
        height: 0.1rem;
        background-color: var(--clr-white);
    }

    .underline4 {
        width: 0;
        height: 0.1rem;
        background-color: var(--clr-white);
    }

    .underline5 {
        width: 0;
        height: 0.1rem;
        background-color: var(--clr-white);
    }

    #home:hover ~ .underline1 {
        width: 4.4rem;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    #services:hover ~ .underline2 {
        width: 2.6rem;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    #prices:hover ~ .underline3 {
        width: 5.6rem;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    #contact:hover ~ .underline4 {
        width: 3.7rem;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    #about:hover ~ .underline5 {
        width: 2.8rem;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }
}


@media screen and (min-width: 1120px) {
    .underline1 {
        width: 0;
        height: 0.1rem;
        background-color: var(--clr-white);
    }

    .underline2 {
        width: 0;
        height: 0.1rem;
        background-color: var(--clr-white);
    }

    .underline3 {
        width: 0;
        height: 0.1rem;
        background-color: var(--clr-white);
    }

    .underline4 {
        width: 0;
        height: 0.1rem;
        background-color: var(--clr-white);
    }

    .underline5 {
        width: 0;
        height: 0.1rem;
        background-color: var(--clr-white);
    }

    #home:hover ~ .underline1 {
        width: 4.9rem;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    #services:hover ~ .underline2 {
        width: 2.9rem;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    #prices:hover ~ .underline3 {
        width: 6.2rem;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    #contact:hover ~ .underline4 {
        width: 4.2rem;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    #about:hover ~ .underline5 {
        width: 3.1rem;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }
}


@media screen and (max-width: 1120px) {
    .phone-number {
        font-size: small;
        font-size: 0.9rem;
    }

    .menu-list li a {
        font-size: 0.9rem;
    }

    .header-btn a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1066px) {
    .phone-number {
        opacity: 0;
    }
}

@media screen and (min-width: 992px) {
    #header {
        height: auto;
        box-shadow: none;
    }
}