:root {
    --baig-color: #FFF4E4;
    --section-background-color: rgba(255, 244, 228, 0.72);
    --black-color: #000000;
    --orange-color: #ffa74f;
    --navbar-color: #ffa74f54;
    --red-color: #960202;
    --background-color: rgba(150, 2, 2, 0.53);
    --hero-section-black: rgba(255, 244, 228, 0.72);
}

@font-face {
    font-family: "font-light";
    src: url("/fonts/light.TTF");
}

@font-face {
    font-family: "font-medium";
    src: url("/fonts/medium.TTF");
}

@font-face {
    font-family: "font-bold";
    src: url("/fonts/bold.TTF");
}

body {
    margin: 0;
    font-family: font-light;
    background: rgba(255, 244, 228, 255);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main {
    display: block;
}

main {
    flex: 1;
}

[hidden] {
    display: none;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

html {
    background: #F9FCFF;
    color: #333;
    font-size: 10px;
    font-family: Open Sans, sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

a:hover,
a {
    text-decoration: none !important;
}

.btn-orange {
    color: white;
    background-color: var(--orange-color);
    font-size: 1.7rem;
}

.btn-orange:hover {
    opacity: 0.8;
}

.description-text p {
    text-align: justify;
    direction: rtl;
}

.service-image:hover {
    opacity: 0.8;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    /*background: red;*/
    width: 10%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*padding-top: 2rem;*/
    z-index: 99;
}

.menu-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    height: 3rem;
}

.menu-link {
    position: relative;
    z-index: 3;
    bottom: 20px;
}

.menu-link:hover {
    cursor: pointer;
}

.menu-link img {
    width: 43px;
}

.menu-title {
    color: var(--orange-color);
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 1px 1px #aba2a2;
}

.menu-icon {
    font-size: 30px;
    color: var(--orange-color);
}

.side-vertical-line {
    width: 1px;
    height: 40%;
    background: var(--orange-color);
}

.sidebar-social-icons {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
}

.sidebar-social-icons .social-circle {
    text-align: center;
    border: 2px solid;
    border-color: var(--orange-color);
    border-radius: 2rem;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    margin-top: 8px;
    background-color: var(--baig-color);
}

.sidebar-social-icons .social-circle .social-icon {
    color: var(--orange-color);
}

.menu-link:hover {
    opacity: 0.7;
}

.sidebar-social-icons .social-circle:hover {
    border-color: var(--red-color);
}

.sidebar-social-icons .social-circle:hover .social-icon:hover {}

.sidebar-burger-menu {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--orange-color);
    width: 17%;
    height: 100%;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    flex-direction: column;
    /*padding-top: 2rem;*/
    z-index: 999999999;
    padding: 1rem;
}

.sidebar-burger-menu a {
    text-align: right;
    width: 100%;
}

.sidebar-burger-menu a .close-menu {
    font-size: 2rem;
    color: var(--red-color);
}

.close-menu:hover {
    cursor: pointer;
}

.sidebar-burger-menu .sidebar-logo {
    width: 100%;
    margin-top: 10px;
}

.sidebar-burger-menu .sidebar-logo .img-sidebar-logo {
    width: 100px;
}

.sidebar-burger-menu .sidebar-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    height: 100%;
}

.sidebar-burger-menu .sidebar-menu-list .menu-item {
    color: white;
    font-size: 2.2rem;
    margin-top: 1.5rem;
}

.sidebar-burger-menu .sidebar-menu-list .menu-item a {
    color: white;
}


/* Navbar */

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: unset !important;
    margin-right: 1rem;
    margin-left: 0 !important;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar {
    z-index: 9999;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.first_navbar {
    position: fixed;
    top: 5rem;
    right: 7rem;
    z-index: 1;
    width: 100%;
}

.navbar-toggler {
    color: white !important;
}

.active {
    color: var(--red-color) !important;
}

.dark {
    background: #ffa74ff2 !important;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.second-navbar-container {
    background: rgb(255 167 79 / 30%);
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.nav-link {
    padding: 0 1rem !important;
}

.second-navbar .navbar-nav .nav-link {
    color: var(--red-color);
    font-size: 1.8rem;
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
    color: var(--red-color) !important;
}

.nav-item.active .nav-link::after {
    width: 100% !important;
    background: var(--red-color) !important;
    color: white !important;
}

.navbar-nav .active>.nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .show>.nav-link {
    color: var(--red-color);
}

.first_navbar .navbar-nav .nav-link {
    color: var(--red-color);
    font-size: 1.8rem;
}


/* header */

header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    height: 100vh;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    /* justify-content: center; */
    overflow: hidden;
    position: relative;
    text-align: center;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 100px;
    perspective: 100px;
}

header:before {
    -webkit-animation: fade-slide-down 2s .5s cubic-bezier(0, 0.5, 0, 1) forwards;
    animation: fade-slide-down 2s .5s cubic-bezier(0, 0.5, 0, 1) forwards;
    background: -webkit-linear-gradient(245deg, rgb(255 244 228 / 0%) 0%, rgb(255 244 228 / 84%) 85%), url(/img/images/background.jpg) no-repeat bottom;
    /* background: linear-gradient(to bottom, rgb(255 244 228 / 0%), rgb(255 244 228 / 8%)), url(/img/images/background.jpg) no-repeat bottom; */
    background: rgb(255, 244, 228);
    background: linear-gradient(245deg, rgb(255 244 228 / 0%) 0%, rgb(255 244 228 / 84%) 85%), url(/img/images/background.jpg) no-repeat bottom;
    background-size: cover;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.scroll-link {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
}

.scroll-icon {
    width: 50px;
}

.scroll-icon:hover,
.scroll-link:hover {
    opacity: 0.7;
}

.watch-more {
    color: var(--red-color);
    font-size: 2rem;
}


/* Header End */


/* about us */

.aboutus-section {
    background: rgb(255, 239, 227);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 2rem;
    width: 100%;
}

.about-us-title {
    font-size: 6rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--orange-color);
}

.description-text {
    font-size: 2.2rem;
    text-align: right;
    height: 200px;
    padding: 2rem;
    overflow-y: scroll;
    direction: ltr;
}

::-webkit-scrollbar {
    width: 0.3em;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background-color: var(--orange-color);
    outline: 1px solid var(--red-color);
    border-radius: 10px;
}

.vision-goal-section {
    background: var(--red-color);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.circle-about-us {
    border: 3px solid var(--white);
    border-radius: 100%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-item-name {
    color: white;
    font-size: 2rem;
}

.about-item-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    align-items: center;
}

#message,
#vision,
#goal {
    overflow: hidden;
}

#message_details p,
#vision_details p,
#goal_details p {
    font-size: 1.7rem;
}

#message_details,
#vision_details,
#goal_details {
    top: 100%;
    position: absolute;
    transition: all .3s ease-out;
    padding: 1.5rem;
    font-size: 1.3rem;
    /* border-radius: 3rem; */
    color: white;
    height: 100%;
    overflow-y: scroll;
    /* display: none; */
    background: var(--red-color);
}

#message:hover .message-details,
#goal:hover .goal-details,
#vision:hover .vision-details {
    /* opacity: 1;
    display: block;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease; */
    top: 0;
}


/* end about us */

.img-service {
    width: 100%;
    object-fit: cover;
    height: 100%;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.header-arrow {
    height: 100%;
    position: absolute;
    left: 12%;
    z-index: -1;
}

.left-arrow {
    height: 100%;
    position: absolute;
    left: -7.5%;
    z-index: 2;
}

.header-content img {
    max-width: 70%;
}

.slogan .first-part {
    font-weight: bold;
    font-family: font-bold;
    color: var(--red-color);
}

.slogan .second-part {
    color: var(--orange-color);
    font-style: italic;
    /* font-weight: bold; */
    font-family: font-medium;
    margin-right: 10px;
    /*margin-bottom: 1rem;*/
}


/* Branches */

.btn-branch {
    font-size: 4.5rem;
    color: orange;
    text-decoration: none !important;
}

.active_item {
    border-bottom: 2.5px solid;
}

.location-box {
    border: 2px solid var(--orange-color);
    width: 100%;
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.location-counter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.location-number {
    border: 2px solid var(--orange-color);
    border-radius: 20px;
    padding: 1rem;
    width: 35%;
    margin-bottom: 0;
    text-align: center;
}

.location-number span {
    font-size: 3rem;
}

.location-counter-title {
    font-size: 6.5rem;
    font-family: font-light;
    color: var(--orange-color);
}

.loc-text {
    font-size: 2rem;
}

.btn-location {
    color: white;
    background-color: var(--orange-color);
    border-color: var(--orange-color);
    width: 80%;
    margin-right: 10%;
    margin-left: 10%;
    border-radius: 30px;
    font-size: 2rem;
}

.btn-gold:hover {
    opacity: 0.8;
}

.location-image .location-logo {
    width: 50px;
}

.main-location-icon {
    width: 100px;
}

.location-item {
    width: 100%;
    height: 170px;
    position: relative;
    border: 2px solid var(--orange-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.location-item:hover .location-logo {
    opacity: 0.7;
}

.location-item:hover .location-name {
    color: var(--red-color);
}

.shop-section {
    margin-top: 7rem;
}

.location-item:before {
    -webkit-animation: fade-slide-down 2s .5s cubic-bezier(0, 0.5, 0, 1) forwards;
    animation: fade-slide-down 2s .5s cubic-bezier(0, 0.5, 0, 1) forwards;
    background: -webkit-linear-gradient(rgb(236 183 41 / 0%), rgb(185 118 22 / 7%)), url(/img/images/background.jpg) no-repeat bottom;
    background: linear-gradient(rgb(236 183 41 / 0%), rgb(185 118 22 / 7%)), url(/img/images/background.jpg) no-repeat right;
    background-size: cover;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}

.location-name {
    font-size: 1.6rem;
    font-family: 'font-light';
    margin-top: 1rem;
    color: var(--orange-color);
    padding-left: 7px;
}

.btn-link:hover {
    color: var(--red-color);
}


/* End Branches */


/* Animations*/

.animate-pop-in {
    -webkit-animation: pop-in .6s cubic-bezier(0, 0.9, 0.3, 1.2) forwards;
    animation: pop-in .6s cubic-bezier(0, 0.9, 0.3, 1.2) forwards;
    opacity: 0;
}

.rocky-dashed {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.slogan {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.slide-left {
    /* -webkit-animation: fade-slide-left 6s 2s cubic-bezier(0, 0.9, 0.3, 1.2) forwards; */
    animation: fade-slide-left 3s 3s cubic-bezier(0, 0.9, 0.3, 1.2) forwards;
    opacity: 0;
}

.slide-right {
    /* -webkit-animation: fade-slide-left 6s 2s cubic-bezier(0, 0.9, 0.3, 1.2) forwards; */
    animation: fade-slide-right 3s 3s cubic-bezier(0, 0.9, 0.3, 1.2) forwards;
    opacity: 0;
}


/* header end*/


/* mobil */

.mobile-title {
    font-size: 6rem;
    color: var(--orange-color);
    margin-top: 1rem;
}

.mobile-desc {
    font-size: 2rem;
    color: var(--red-color);
    margin-top: 1rem;
}

.download-now {
    font-size: 4rem;
    color: var(--orange-color);
    margin-top: 1rem;
}

.download-img {
    width: 180px;
}


/* Service Section */

.home-services-section {
    background: rgba(255, 244, 228, 255);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    /*padding-top: 0rem;*/
    /*padding-bottom: 5rem;*/
    width: 100%;
}

.service-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bg-red-70 {
    background-color: #9602021f;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0px;
    z-index: 1;
}

.service-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--orange-color);
    font-size: 7rem;
}

.service-first-col,
.service-second-col,
.service-third-col,
.service-fourth-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-third-col,
.service-fourth-col {
    padding-top: 1rem;
}


/*.services-section{*/


/*    background: url("/img/images/background.png");*/


/*    background-position: center;*/


/*    background-repeat: no-repeat;*/


/*    background-size: cover;*/


/*    position: relative;*/


/*    width: 100%;*/


/*}*/

.service-section {
    background: rgba(255, 244, 228, 255);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
}

.services-section::before {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9615196420365021) 0%, rgb(206 208 208 / 83%) 45%) !important;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
}

.services-page {
    background: url("/img/images/background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
}

.services-page::before {
    background-color: rgba(255, 255, 255, 0.83);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
}

.service-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    align-items: center;
}

.service-crcl {
    border: 3px solid var(--red-color);
    border-radius: 100%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image img {
    width: 44px;
    height: auto;
    /*border-radius: 43%;*/
    object-fit: cover;
}

.service-image img:hover {
    opacity: 0.8;
}

.service-name {
    /*margin-top: 0.5rem;*/
    font-size: 2rem;
    color: var(--red-color);
    padding-left: 16px;
    font-family: font-light;
}

.service-name a:hover {
    color: white;
}


/* End Services */


/* Jobs Section */

.jobs-section,
.mobile-section {
    background: rgba(255, 244, 228, 255);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
}

.job-card {
    border: 2px solid var(--orange-color);
}

.job-icon {
    width: 100px;
    margin-top: 1rem;
}

.job-title,
.job__location {
    font-size: 1.5rem;
    color: var(--orange-color);
    font-family: font-bold;
    margin-top: 1rem;
}

.job__location {
    font-size: 1.5rem;
    color: var(--orange-color);
    font-family: font-light;
    margin-top: 1rem;
}

.job-location-icon {
    width: 12px;
}

.page-title {
    font-size: 5.5rem;
    font-family: font-light;
    color: var(--orange-color);
}


/* Footer */

footer {
    display: flex;
}

.links-container {
    background: var(--red-color);
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    background: var(--orange-color);
    width: 30%;
}

.footer-link {
    font-size: 2rem;
    color: white;
}

.footer-logo {
    padding: 50px;
}

.footer-second-menu {
    margin-top: 2rem;
}


/* Queries */

@media (min-width: 992px) {
    .right-side-background {
        position: fixed;
        right: 0;
        top: 0;
        background: var(--background-color);
        ;
        width: 83%;
        height: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        z-index: 9999;
        padding: 1rem;
    }

    .mobile-section {
        height: 78vh;
    }

    .slogan {
        position: relative;
        bottom: 20px;
    }

    .slogan .first-part {
        font-size: 8.2rem;
    }

    .slogan .second-part {
        font-size: 5.7rem;
    }

    .pt-lg {
        padding-top: 12rem;
        /*padding-bottom: 5rem;*/
    }

    .pb-lg {
        padding-bottom: 5rem;
    }

    .service-first-col {
        border-left: 2px solid var(--orange-color);
    }

    /*.service-second-col{*/
    /*    border-bottom: 2px solid var(--orange-color);*/
    /*}*/
    .service-third-col {
        border-left: 2px solid var(--orange-color);
        border-top: 2px solid var(--orange-color);
    }

    .service-fourth-col {
        border-top: 2px solid var(--orange-color);
    }

    .header-content {
        margin-right: 6rem;
    }

    /*.shop-section, .services-section, .category-section, .service-section {*/
    /*    min-height: 100vh;*/
    /*}*/
    .navbar-brand {
        text-align: left;
    }

    .logo {
        margin-right: 9rem;
    }

    /*.navbar-nav .nav-link{*/
    /*    padding-right: 3rem !important;*/
    /*}*/
    .navbar-toggler {
        display: none;
    }

    .second-navbar-container {
        border-bottom-right-radius: 7rem;
        border-bottom-left-radius: 7rem;
        /*padding-top: 1rem;*/
        padding-bottom: 1rem;
    }

    .first_navbar {
        border-bottom-right-radius: 7rem;
        border-bottom-left-radius: 7rem;
        /*padding-top: 1rem;*/
        /*padding-bottom: 1rem;*/
    }

    .second-navbar-container .col-lg-3 {
        text-align: left;
    }

    .logo {
        width: 200px;
    }

    .nav-container .row .col-lg-3 {
        padding-top: 0.5rem;
    }

    .navbar-nav .nav-link:hover::after,
    li>a.active::after {
        width: 100% !important;
        background: var(--orange-color) !important;
        color: white !important;
    }

    .navbar-nav .nav-link::after {
        content: "";
        display: block;
        margin: auto;
        height: 1.5px;
        width: 0;
        top: 5px;
        background: transparent;
        transition: all 0.3s;
    }

    .location-col:nth-child(4) {
        margin-top: 2rem;
    }

    .location-col:nth-child(5) {
        margin-top: 2rem;
    }

    .location-col:nth-child(6) {
        margin-top: 2rem;
    }

    .footer-links-row {
        width: 75%;
    }
}

@media (max-width: 991px) {
    .location-col {
        margin-top: 1rem;
    }

    .sidebar {
        left: 3%;
    }

    .sidebar-burger-menu .sidebar-menu-list .menu-item {
        font-size: 2rem;
    }

    .sidebar-burger-menu {
        right: 0;
        left: 0;
        width: 100% !important;
    }

    footer {
        flex-direction: column;
    }

    .links-container {
        width: 100%;
    }

    .footer-logo {
        width: 100%;
        flex-direction: column;
    }

    .pt-lg {
        margin-top: 5rem;
    }

    .slogan .first-part {
        font-size: 5.2rem;
    }

    .slogan .second-part {
        font-size: 3.7rem;
    }

    .header-arrow,
    .left-arrow {
        display: none;
    }

    .pt-sm-screen {
        margin-top: 2rem;
    }

    .product-box {
        margin-top: 2rem;
    }

    .header-logo {
        max-width: 100%
    }

    .second-navbar-container {
        border-bottom-right-radius: 2rem;
        border-bottom-left-radius: 2rem;
        padding-top: 0.5rem;
        /*padding-bottom: 1rem;*/
    }

    .first_navbar {
        border-bottom-right-radius: 2rem;
        border-bottom-left-radius: 2rem;
    }

    .footer-menu-link {
        margin-top: 1rem;
    }

    .logo {
        width: 150px;
    }

    .navbar-collapse {
        text-align: center;
    }

    .category-image {
        max-width: 100px;
        height: auto;
        /*min-height: 150px;*/
        /*max-height: 150px;*/
    }

    /*.navbar-brand {*/
    /*    float: right;*/
    /*}*/
    .nav-container .row .col-lg-3 {
        margin-top: 1rem;
    }
}

.hide {
    display: none;
}

.show {
    display: flex;
}


/* End Queries */


/* Animations */

@-webkit-keyframes fade-slide-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(80rem);
        transform: translateX(80rem);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fade-slide-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-10rem);
        transform: translateX(-10rem);
    }

    100% {
        opacity: 0.7;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fade-slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-4rem);
        transform: translateY(-4rem);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fade-slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-4rem);
        transform: translateY(-4rem);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes pop-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-4rem) scale(.8);
        transform: translateY(-4rem) scale(.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes pop-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-4rem) scale(.8);
        transform: translateY(-4rem) scale(.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes rotate-up {
    100% {
        -webkit-transform: rotateZ(-4deg);
        transform: rotateZ(-4deg);
    }
}

@keyframes rotate-up {
    100% {
        -webkit-transform: rotateZ(-4deg);
        transform: rotateZ(-4deg);
    }
}


}

}

}

.empty-state-container {
    background-color: white;
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--orange-color);
    margin: 20px auto;
    max-width: 600px;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--orange-color);
    margin-bottom: 20px;
}

.empty-state-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--black-color);
    margin-bottom: 15px;
}

.empty-state-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}