@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* ***************************
********* global css *********
******************************/
*::selection {
    background-color: var(--main-color);
    color: var(--black-100);
}
html::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}
html::-webkit-scrollbar {
    width: 10px;
}
html::-webkit-scrollbar-track {
    background-color: rgb(82, 65, 65);
}
/* custom cursor */
/* cursor-dot
cursor-outline */
.cursor-dot {
    width: 5px;
    height: 5px;
    background-color: var(--black-900);
}
.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid var(--black-500);
}
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 100000000000;
    pointer-events: none;
}
:root {
    --main-color: #7857fe;
    --color-1: #e91e63;
    --color-2: #f5ae10;
    --color-3: #09d69c;
    --bg-dark: #2b2c2f;
    --main-to-dark-color: var(--main-color);
    --dark-to-main-color: var(--bg-dark);
    --shadow-black-100: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-black-300: 0 5px 15px rgba(0, 0, 0, 0.3);
    --black-900: #000000;
    --black-500: #555555;
    --black-100: #f7f7f7;
    --black-000: #ffffff;
    --black-alpha-100: rgba(0, 0, 0, 0.05);
}
* {
    margin: 0;
    padding: 0;
    outline: none !important;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
ul {
    list-style: none;
}
body {
    font-family: "Cairo", sans-serif;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    background-color: white;
    line-height: 1.5;
}
body.dark {
    background-color: var(--bg-dark);
    --black-100: var(--bg-dark);
    --black-000: var(--bg-dark);
    --main-to-dark-color: var(--bg-dark);
    --dark-to-main-color: var(--main-color);
    --shadow-black-100: var(--shadow-black-300);
    --black-alpha-100: rgba(255, 255, 255, 0.05);
    --black-900: #ffffff;
    --black-500: #bbbbbb;
}
.btn-1 {
    background-color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    color: var(--main-color);
    font-size: 16px;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-black-300);
    font-weight: 500;
}
.btn-1:focus {
    box-shadow: var(--shadow-black-300);
}
.btn-1:hover {
    color: white;
    background-color: var(--main-color);
}
.btn-2 {
    background-color: var(--main-color);
    padding: 12px 50px;
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-black-100);
    font-weight: 500;
}
.btn-2:focus {
    box-shadow: var(--shadow-black-100);
}
.btn-2:hover {
    color: var(--main-color);
    background-color: white;
}
.effect-wrap .effect {
    position: absolute;
    z-index: -1;
}
.effect-wrap .effect-1 {
    left: 20%;
    top: 20%;
    font-size: 20px;
    color: var(--color-2);
    animation: spin_01 5s linear infinite;
}
.effect-wrap .effect-2 {
    right: 5%;
    top: 10%;
    font-size: 25px;
    color: var(--color-3);
    animation: bounceTop_01 4s linear infinite;
}
.effect-wrap .effect-3 {
    right: 35%;
    bottom: 10%;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.5);
    animation: bounceTop_01 3s linear infinite;
}
.section-padding {
    padding: 80px 0;
}
.section-title {
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 40px;
    color: var(--black-900);
    font-weight: 700;
    text-align: center;
}
.section-title h2 span {
    color: var(--main-color);
}
.helper-section{
    background-color: var(--main-to-dark-color);
    height: 130px;
}
.swal-button {
    background-color: var(--main-color) !important;
}
.swal-icon--success__ring {
    border: 4px solid var(--main-color) !important;
}
.swal-icon--success {
    border-color: var(--main-color) !important;
}
.swal-icon--success__line {
    background-color: var(--main-color);
}
/* ***************************
*********   preloader   *********
******************************/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2100;
    background-color: var(--main-to-dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader span {
    display: block;
    height: 60px;
    width: 60px;
    background-color: var(--dark-to-main-color);
    border-radius: 50%;
    animation: zoomInOut_01 1s ease infinite;
}
@keyframes zoomInOut_01 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
/* ***************************
*********   navbar   *********
******************************/
.navbar {
    background-color: transparent;
    padding: 20px 0;
    transition: all 0.5s ease;
}
.navbar.navbar-shrink {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--main-color);
    padding: 10px 0;
}
.navbar > .container {
    padding: 0 15px;
}
.navbar-brand {
    position: relative;
    font-size: 30px;
    color: var(--main-color);
    -webkit-text-stroke: .05vw var(--black-100);
    font-weight: 900;
}
.navbar-brand:hover {
    color: var(--color-3);
}
.navbar .nav-item {
    margin-right: 40px;
}
.navbar .nav-link {
    color: white;
    font-size: 16px;
    padding: 5px 0;
    font-weight: 400;
    position: relative;
}
.navbar .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: white;
    transition: all 0.5s ease;
    transform: scale(0);
}
.navbar .nav-link:hover:before,
.navbar .nav-link.active:before {
    transform: scale(1);
}
.navbar .nav-link.active {
    color: white;
}
/* *****************************
********* hero section *********
********************************/
.hero {
    min-height: 100vh;
    padding: 150px 0;
    background-color: var(--main-to-dark-color);
    /* border-radius: 0 0 0 150px; */
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}
.hero-text h1 {
    font-size: 45px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px;
}
.hero-text p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    color: white;
    margin: 0;
}
.hero-img img {
    max-width: 350px;
    width: 100%;
    opacity: 0.7;
    border-radius: 30px;
    box-shadow: var(--shadow-black-100);
    animation: bounceTop_01 3s ease infinite;
}
@keyframes bounceTop_01 {
    0%,
    100% {
        transform: translateY(-30px);
    }
    50% {
        transform: translateY(30px);
    }
}
.hero-img {
    position: relative;
}
.hero-img .circle {
    position: absolute;
    z-index: 1;
    height: 400px;
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-img .circle::before {
    /* content: '\F2C6'; */
    content: "\f3bd";
    font-family: "FontAwesome";
    /* font-family: "bootstrap-icons"; */
    position: absolute;
    height: 60px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    left: 30px;
    top: 30px;
    transform-origin: 170px 170px;
    animation: spin_01 10s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
}
@keyframes spin_01 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.hero .btn-video {
    margin-left: 20px;
    transform: rotate(180deg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    animation: pulse_01 2s ease infinite;
}
.hero .btn-video:hover {
    animation: none;
    box-shadow: var(--shadow-black-300);
}
.hero .btn-video i {
    font-size: 16px !important;
    transform: rotate(180deg);
}
@keyframes pulse_01 {
    0% {
        transform: scale(0.94);
        transform: rotate(180deg);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        transform: rotate(180deg);
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.94);
        transform: rotate(180deg);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
/* popup */
.video-popup {
    padding: 30px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1999;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}
.video-popup.open {
    opacity: 1;
    visibility: visible;
}
.popup-inner {
    width: 100%;
    max-width: 900px;
    position: relative;
}
.video-popup .iframe-box {
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}
.video-popup #player-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-popup .video-popup-close {
    position: absolute;
    right: 0;
    top: -30px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    color: white;
}
/* *********************************
********* features section *********
************************************/
.features .feature-item {
    box-shadow: var(--shadow-black-100);
    margin: 15px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    min-height: 250px !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.features .feature-item::after,
.features .feature-item::before {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    transition: all 0.5s ease;
    opacity: 0;
}
.features .feature-item::before {
    height: 20px;
    width: 20px;
    background-color: var(--color-1);
    left: -20px;
    top: 40%;
}
.features .feature-item:hover:before {
    left: 10px;
    opacity: 0.5;
}
.features .feature-item:hover:after {
    right: -15px;
    opacity: 0.5;
}
.features .feature-item::after {
    height: 30px;
    width: 30px;
    background-color: var(--color-2);
    right: -30px;
    top: 80%;
}
.features .feature-item .icon {
    height: 60px;
    width: 60px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 30px;
    color: var(--main-color);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}
.features .feature-item .icon::before {
    content: "";
    position: absolute;
    left: 100%;
    height: 300%;
    width: 300%;
    top: 0;
    background-color: var(--main-color);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}
.features .feature-item:hover .icon {
    color: white;
    font-size: 25px;
}
.features .feature-item:hover .icon::before {
    left: 0;
    border-radius: 50%;
    opacity: 1;
    height: 100%;
    width: 100%;
}
.features .feature-item .icon i {
    line-height: 60px;
}
.features .feature-item p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: var(--black-500);
    margin: 0 0 15px;
}
.features .feature-item h3 {
    font-size: 22px;
    margin: 0 0 20px;
    color: var(--black-900);
    font-weight: 500;
    margin: 0;
}
.owl-carousel .owl-dots {
    padding: 0 15px;
    text-align: center;
    margin-top: 20px;
}
@media only screen and (max-width: 768px) {
    .owl-carousel .owl-dots {
        display: none;
    }
}
.owl-carousel button.owl-dot {
    height: 5px;
    width: 24px;
    background-color: transparent;
    display: inline-block;
    margin: 0 14px;
    border-radius: 5px;
    position: relative;
}
.owl-carousel button.owl-dot::after {
    content: "\f3bd";
    position: absolute;
    font-family: "FontAwesome";
    border: 1px solid var(--black-500);
    left: 0;
    top: 0;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 50%;
    color: var(--black-500);
    transition: all 0.5s ease;
}
.owl-carousel button.owl-dot.active::after {
    border-color: var(--main-color);
    color: var(--main-color);
    transform: scale(1.5);
}
/* ******************************
********* about section *********
*********************************/
.about {
    background-color: var(--black-100);
}
.about-img img {
    max-width: 350px;
    width: 100%;
    border-radius: 50%;
    box-shadow: var(--shadow-black-100);
    animation: bounceTop_01 3s ease infinite;
}
.about .section-title h2 {
    text-align: left;
    margin-bottom: -30px !important;
}
.about .about-text p {
    font-size: 16px;
    line-height: 26px;
    color: var(--black-500);
    margin: 0 0 15px;
    font-weight: 300;
}
.about-item {
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-black-100);
    border-radius: 10px;
    margin-top: 20px;
}
.about-item h3 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin: 0 0 5px;
}
.about-item span {
    font-size: 16px;
    text-wrap: 300px;
    margin: 0;
    line-height: 26px;
    color: white;
    display: block;
}
.about-item.style-1 {
    background-color: var(--color-1);
}
.about-item.style-2 {
    background-color: var(--color-2);
}
.about-item.style-3 {
    background-color: var(--color-3);
}
.about-item.style-4 {
    background-color: var(--main-color);
}
/* ********************************
********* gallery section *********
***********************************/
.gallery .gallery-item {
    padding: 20px 10px;
    box-shadow: var(--shadow-black-300);
    margin: 10px;
    text-align: left;
}
.gallery .gallery-item img {
    width: 100%;
    border: 1px solid var(--main-color);
    margin-bottom: 20px;
}
.gallery .gallery-item p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: var(--black-500);
    margin: 0 0 15px;
}
.gallery .gallery-item h3 {
    font-size: 22px;
    margin: 0 0 20px;
    color: var(--black-900);
    font-weight: 500;
    margin: 0;
}
.gallery .owl-carousel button.owl-dot {
    height: 5px;
    width: 24px;
    background-color: transparent;
    display: inline-block;
    margin: 0 14px;
    border-radius: 5px;
    position: relative;
}
.gallery .owl-carousel button.owl-dot::after {
    content: "\f013";
    position: absolute;
    font-family: "FontAwesome";
    left: 0;
    top: 0;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 50%;
    transition: all 0.5s ease;
}
.gallery .owl-carousel button.owl-dot.active::after {
    background-color: var(--main-color);
    color: white;
    transform: scale(1.5);
}
/* ******************************
********* services section *********
*********************************/
.services {
    background-color: var(--black-100);
}
.service-item * {
    text-decoration: none;
}
.services .service-item {
    background-color: var(--black-000);
    padding: 30px;
    text-align: center;
    /* border-radius: 10px; */
    box-shadow: var(--shadow-black-300);
    transition: all 0.3s ease;
}
.services .service-item:hover {
    box-shadow: none;
    transform: translateY(5px);
    background-color: var(--black-100);
}
.services .service-item i {
    font-size: 30px;
    color: var(--main-color);
    display: inline-block;
}
.services .service-item h3 {
    font-size: 22px;
    color: var(--black-900);
    margin: 20px 0;
    font-weight: 500;
}
.services .service-item p {
    font-size: 16px;
    color: var(--black-500);
    font-weight: 300;
    margin: 0 0 30px;
    line-height: 26px;
}
/* *****************************
********* work section *********
********************************/
.work-item {
    background-color: var(--black-000);
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.work-item.line-left::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    right: 50%;
    top: 60px;
    background-color: var(--main-color);
    z-index: -1;
}
.work-item h3 {
    font-size: 22px;
    color: var(--black-900);
    margin: 20px 0;
    font-weight: 500;
}
.work-item p {
    font-size: 16px;
    color: var(--black-500);
    font-weight: 300;
    margin: 0 0 30px;
    line-height: 26px;
}
.work-item .step {
    display: inline-block;
    height: 60px;
    width: 60px;
    background: var(--main-color);
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    color: white;
    font-weight: 500;
    margin: 0 0 15px;
}
/* *************************************
********* testimonials section *********
****************************************/
.testimonials {
    background-color: var(--black-100);
}
.testimonials .testimonial-item {
    box-shadow: var(--shadow-black-100);
    margin: 15px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}
.testimonial-item .img-box {
    height: 100px;
    width: 100px;
    display: inline-block;
    margin-bottom: 20px;
    border: 4px solid var(--main-color);
    border-radius: 50%;
    position: relative;
}
.testimonial-item .img-box img {
    border-radius: 50%;
    width: 100%;
}
.testimonial-item .img-box i {
    position: absolute;
    height: 30px;
    width: 30px;
    background-color: var(--main-color);
    border-radius: 50%;
    color: white;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    left: calc(100% - 15px);
    top: calc(50% - 15px);
}
.testimonial-item p {
    font-size: 16px;
    color: var(--black-500);
    font-weight: 300;
    margin: 0 0 20px;
    line-height: 26px;
}
.testimonial-item h3 {
    font-size: 18px;
    color: var(--black-900);
    margin-bottom: 5px;
    font-weight: 500;
}
.testimonial-item span {
    display: block;
    font-size: 16px;
    color: var(--black-500);
    font-weight: 300;
    font-style: italic;
}
.testimonial-item .rating {
    margin-top: 10px;
}
.testimonial-item .rating i {
    display: inline-block;
    font-size: 16px;
    color: var(--color-2);
}
/* ****************************
********* faq section *********
*******************************/
.faq .accordion-item:not(:last-child) {
    margin-bottom: 20px;
    border-bottom: none;
}
.faq .accordion-header button:not(.collapsed) {
    background-color: var(--main-color);
    color: white;
    transition: all 0.5s ease;
    border-bottom: none;
}
.faq .accordion-header button:not(.collapsed)::before {
    position: absolute;
    content: "\f068";
    font-weight: 900;
    font-family: "FontAwesome";
}
.faq .accordion-header button:hover {
    background-color: var(--main-color);
    color: white;
}
.faq .accordion-header button {
    background-color: var(--black-100);
    border-radius: 5px;
    box-shadow: var(--shadow-black-100);
    padding: 20px 30px !important;
    font-size: 18px;
    font-weight: 500;
    color: var(--black-500);
    margin: 0;
    transition: all 0.5s ease;
    position: relative;
}
.accordion-button::after {
    display: none;
}
.faq .accordion-header button::before {
    position: absolute;
    content: "\f067";
    font-weight: 900;
    font-family: "FontAwesome";
    right: 20px;
}
.faq .accordion-body {
    background-color: var(--black-100);
    font-size: 16px;
    color: var(--black-500);
    font-weight: 300;
    margin: 0 0 20px 0;
    line-height: 26px;
}
/* ********************************
********* contact section *********
***********************************/
.contact {
    background-color: var(--black-100);
}
.contact-info-item {
    position: relative;
    padding-left: 55px;
    margin-bottom: 30px;
}
.contact-info-item i {
    position: absolute;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    text-align: center;
    line-height: 38px;
    top: 0;
    left: 0;
}
.contact-info-item h4 {
    font-size: 18px;
    color: var(--black-900);
    margin-bottom: 5px;
    font-weight: 400;
}
.contact-info h3 {
    font-size: 22px;
    color: var(--black-900);
    margin: 0 0 40px;
    font-weight: 500;
}
.contact-info-item p {
    font-size: 16px;
    color: var(--black-500);
    font-weight: 300;
    margin: 0;
    line-height: 26px;
}
.contact-form .form-control::placeholder {
    color: var(--black-900);
}
.contact-form .form-control {
    height: 52px;
    border: 1px solid transparent;
    box-shadow: var(--shadow-black-100);
    padding: 0 24px;
    color: var(--black-900);
    background-color: var(--black-000);
    transition: all 0.3s ease-in-out;
}
.contact-form textarea.form-control {
    height: 140px;
    padding-top: 12px;
    resize: none;
}
.contact-form .form-control:focus {
    border-color: var(--main-color);
}
.contact-form .btn {
    border-radius: 5px;
}
/* *******************************
********* footer section *********
**********************************/
.footer {
    background-color: var(--main-color);
    padding: 50px 0 0;
}
.footer h3 {
    font-size: 18px;
    color: white;
    margin: 0 0 25px;
    font-weight: 500;
}
.footer p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 0;
    line-height: 26px;
}
.footer ul {
    margin: 0;
    padding: 0;
}
.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    display: block;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
.footer-col ul li a:hover {
    padding-left: 5px;
    letter-spacing: 1px;
}
.footer .copy {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    padding: 10px 0 20px;
}
/* *******************************
********* * responsive * *********
**********************************/
@media (max-width: 991px) {
    .navbar-nav {
        background-color: var(--dark-to-main-color);
        box-shadow: var(--shadow-black-300);
    }
    .navbar .nav-item {
        margin: 0;
        padding: 10px 15px;
    }
    .navbar.navbar-shrink .navbar-toggler,
    .navbar.navbar-shrink .navbar-nav {
        background-color: var(--main-color);
    }
    .hero-img .circle {
        height: 300px;
        width: 300px;
    }
    .about-img img {
        max-width: 300px;
    }
    .hero-img .circle::before {
        left: 5px;
        top: 5px;
        transform-origin: 142px 142px;
    }
    .hero-text h1 {
        font-size: 40px;
    }
    .work-item.line-left::before {
        content: none;
    }
    .footer-col {
        margin-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 32px;
    }
    .hero-text {
        margin-bottom: 100px;
        text-align: center;
    }
    .effect-wrap .effect-1 {
        right: 20%;
        top: 15%;
    }
    .effect-wrap .effect-2 {
        left: 5%;
        top: 10%;
    }
    .effect-wrap .effect-3 {
        right: 15%;
        bottom: 4%;
    }
    .about-img {
        margin-bottom: 50px;
    }
}
@media (max-width: 575px) {
    .about-text {
        text-align: center;
    }
    .about .section-title h2 {
        text-align: center !important;
    }
}
/* ***********************************
********* light & dark mode  *********
**************************************/
.toggle-theme {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: fixed;
    left: 20px;
    bottom: 20px;
    background-color: var(--dark-to-main-color);
    z-index: 1220;
    color: white;
    height: 40px;
    width: 40px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-black-300);
}
/* ***********************************
********* light & dark mode  *********
**************************************/
.go-top {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: var(--dark-to-main-color);
    z-index: 1220;
    color: white;
    height: 40px;
    width: 40px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-black-300);
}
.status {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: fixed;
    right: 20px;
    top: 20px;
    background-color: var(--dark-to-main-color);
    z-index: 1220;
    color: white;
    height: 40px;
    width: 40px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-black-300);
}
/* details page */
/* rating */
.rating-css div {
    color: #FEA116;
    font-size: 30px;
    font-family: sans-serif;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0;
}
.rating-css input {
    display: none;
}
.rating-css input + label {
    font-size: 30px;
    text-shadow: 1px 1px 0 #8f8420;
    cursor: pointer;
}
.rating-css input:checked + label ~ label {
    color: #b4afaf;
}
.rating-css label:active {
    transform: scale(0.8);
    transition: 0.3s ease;
}
